From a8008dc1e59d675fedd73d3c7ff16e79d9ba842a Mon Sep 17 00:00:00 2001 From: Rodrigo Moya Date: Tue, 8 Apr 2008 12:04:49 +0000 Subject: [PATCH] Updated NEWS from 2.22 branch svn path=/trunk/; revision=8638 --- NEWS | 52 + capplets/appearance/Makefile.am | 2 + .../appearance/appearance-desktop-effects.c | 137 ++ .../appearance/appearance-desktop-effects.h | 22 + capplets/appearance/appearance-main.c | 5 +- capplets/appearance/appearance.h | 4 + capplets/appearance/data/appearance.glade | 1877 ++++++++--------- 7 files changed, 1075 insertions(+), 1024 deletions(-) create mode 100644 capplets/appearance/appearance-desktop-effects.c create mode 100644 capplets/appearance/appearance-desktop-effects.h diff --git a/NEWS b/NEWS index 61ace77f8..3e43d6247 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,55 @@ +gnome-control-center 2.22.1 + +appearance: +- Don't resize the font samples vertically when the window is resized + (Jens Granseuer) (#521823) +- Fix warning when trying to drag an unselected item (Jens Granseuer) + (#523347) +- Don't try to unref URIs if the theme package is invalid (Jens Granseuer) + (#524567) + +common: +- Fix a crash when schemas are not properly installed (Jens Granseuer) + (#520744) +- Fix error handling in the thumbnailer (Jens Granseuer) (#521009) +- Actually check the cursor size before changing it in GConf (Jens Granseuer) + +keybindings: +- Remove debugging output (Jens Granseuer) +- Stop widget accelerators from activating while the user is entering + a new shortcut (Jens Granseuer) (#313228) +- Fix category headers not appearing properly in the treeview when using + a non-UTF-8 locale (Bastien Nocera) (#513988) + +keyboard: +- Don't crash when called for a drag with no selected items (Jens Granseuer) + (#523379) +- Don't show the typing break tab if the typing monitor is not available + (Jens Granseuer) (#524034) + +sound: +- Use new tango icon (Jaap A. Haitsma) (#523916) +- Don't show modems in the device chooser (Jens Granseuer) (#523888) + +themus: +- Handle failed thumbnailing attempts properly (Jens Granseuer) + +typing-break: +- New Tango-style icons (David Prieto) (#523965) +- Replace custom stop icon with gtk-stop stock icon (Jens Granseuer) + +updated translations: +- en_GB (Philip Withnall) +- et (Priit Laes) +- he (Yair Hershkovitz) +- hu (Gabor Kelemen) +- it (Luca Ferretti) +- ja (Takeshi AIHANA) +- ru (Yuri Kozlov) +- te (Sunil Mohan Adapa) +- tr (Baris Cicek) +- vi (Nguyen Thaii Ngoc Duy) +------------------------------------------------------------------------------ gnome-control-center 2.22.0 about-me: diff --git a/capplets/appearance/Makefile.am b/capplets/appearance/Makefile.am index 118400b9a..ba6472ae2 100644 --- a/capplets/appearance/Makefile.am +++ b/capplets/appearance/Makefile.am @@ -9,6 +9,8 @@ gnome_appearance_properties_SOURCES = \ appearance.h \ appearance-desktop.c \ appearance-desktop.h \ + appearance-desktop-effects.c \ + appearance-desktop-effects.h \ appearance-font.c \ appearance-font.h \ appearance-main.c \ diff --git a/capplets/appearance/appearance-desktop-effects.c b/capplets/appearance/appearance-desktop-effects.c new file mode 100644 index 000000000..91286e2b4 --- /dev/null +++ b/capplets/appearance/appearance-desktop-effects.c @@ -0,0 +1,137 @@ +/* + * Copyright (C) 2007 The GNOME Foundation + * Written by Rodrigo Moya + * All Rights Reserved + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +#include "appearance.h" +#include "wm-common.h" + +#include +#include + +static void +display_error (const gchar *message) +{ + GtkWidget *dialog; + + dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_MODAL, + GTK_MESSAGE_ERROR, + GTK_BUTTONS_OK, + message); + + gtk_dialog_run (GTK_DIALOG (dialog)); + gtk_widget_destroy (dialog); +} + +static void +set_busy (GtkWidget *widget, gboolean busy) +{ + GdkCursor *cursor; + + if (busy) + cursor = gdk_cursor_new (GDK_WATCH); + else + cursor = NULL; + + gdk_window_set_cursor (widget->window, cursor); + + if (cursor) + gdk_cursor_unref (cursor); + + gdk_flush (); +} + +static void +enable_desktop_effects_cb (GtkToggleButton *toggle_button, AppearanceData *data) +{ + GError *error = NULL; + gboolean toggled = gtk_toggle_button_get_active (toggle_button); + const gchar *cmd_line = toggled ? "compiz --replace ccp" : "metacity --replace"; + + if (!g_spawn_command_line_async (cmd_line, &error)) { + display_error (error->message); + g_error_free (error); + gtk_toggle_button_set_active (toggle_button, !toggled); + } else { + gchar *wm_name = wm_common_get_current_window_manager (); + + /* disable customize button for metacity */ + if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (data->enable_effects_button)) + && !strcmp (wm_name, "compiz")) + gtk_widget_show (data->customize_effects_button); + else + gtk_widget_hide (data->customize_effects_button); + + g_free (wm_name); + } +} + +static void +customize_desktop_effects_cb (GtkButton *button, AppearanceData *data) +{ + GError *error = NULL; + gchar *wm_name; + + wm_name = wm_common_get_current_window_manager (); + + if (!strcmp (wm_name, "compiz")) { + if (!g_spawn_command_line_async ("ccsm", &error)) { + display_error (error->message); + g_error_free (error); + } + } + + g_free (wm_name); +} + +static void +window_manager_changed_cb (gpointer wm_name, AppearanceData *data) +{ +} + +void +desktop_effects_init (AppearanceData *data) +{ + gchar *wm_name; + + wm_common_register_window_manager_change ((GFunc) window_manager_changed_cb, data); + wm_name = wm_common_get_current_window_manager (); + + /* initialize widgets */ + data->enable_effects_button = glade_xml_get_widget (data->xml, "enable_desktop_effects"); + gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (data->enable_effects_button), + gtk_widget_is_composited (data->enable_effects_button)); + g_signal_connect (G_OBJECT (data->enable_effects_button), "toggled", + (GCallback) enable_desktop_effects_cb, data); + + data->customize_effects_button = glade_xml_get_widget (data->xml, "customize_desktop_effects"); + if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (data->enable_effects_button)) + && !strcmp (wm_name, "compiz")) + gtk_widget_show (data->customize_effects_button); + else + gtk_widget_hide (data->customize_effects_button); + g_signal_connect (G_OBJECT (data->customize_effects_button), "clicked", + (GCallback) customize_desktop_effects_cb, data); + + g_free (wm_name); +} + +void +desktop_effects_shutdown (AppearanceData *data) +{ +} diff --git a/capplets/appearance/appearance-desktop-effects.h b/capplets/appearance/appearance-desktop-effects.h new file mode 100644 index 000000000..037c8d1ed --- /dev/null +++ b/capplets/appearance/appearance-desktop-effects.h @@ -0,0 +1,22 @@ +/* + * Copyright (C) 2008 The GNOME Foundation + * Written by Rodrigo Moya + * All Rights Reserved + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + */ + +void desktop_effects_init (AppearanceData *data); +void desktop_effects_shutdown (AppearanceData *data); diff --git a/capplets/appearance/appearance-main.c b/capplets/appearance/appearance-main.c index 609d071f8..174292835 100644 --- a/capplets/appearance/appearance-main.c +++ b/capplets/appearance/appearance-main.c @@ -20,9 +20,10 @@ #include "appearance.h" #include "appearance-desktop.h" +#include "appearance-desktop-effects.h" #include "appearance-font.h" -#include "appearance-themes.h" #include "appearance-style.h" +#include "appearance-themes.h" #include "appearance-ui.h" #include "theme-installer.h" #include "theme-thumbnail.h" @@ -79,6 +80,7 @@ main_window_response (GtkWidget *widget, themes_shutdown (data); style_shutdown (data); + desktop_effects_shutdown (data); desktop_shutdown (data); font_shutdown (data); @@ -151,6 +153,7 @@ main (int argc, char **argv) themes_init (data); style_init (data); desktop_init (data, (const gchar **) wallpaper_files); + desktop_effects_init (data); g_strfreev (wallpaper_files); font_init (data); ui_init (data); diff --git a/capplets/appearance/appearance.h b/capplets/appearance/appearance.h index 08749875e..ddc67809d 100644 --- a/capplets/appearance/appearance.h +++ b/capplets/appearance/appearance.h @@ -48,6 +48,10 @@ typedef struct { GtkWidget *wp_image; GSList *wp_uris; + /* desktop effects */ + GtkWidget *enable_effects_button; + GtkWidget *customize_effects_button; + /* font */ GtkWidget *font_details; GSList *font_groups; diff --git a/capplets/appearance/data/appearance.glade b/capplets/appearance/data/appearance.glade index 09a0bc763..2b63c5d6c 100644 --- a/capplets/appearance/data/appearance.glade +++ b/capplets/appearance/data/appearance.glade @@ -1,5 +1,6 @@ + 5 @@ -41,35 +42,36 @@ True 6 - - - True - True - 96 50 200 1 10 10 - 1 + + + True + True + 96 50 200 1 10 10 + 1 + + + False + 1 + + + + + True + dots per inch + + + False + False + 2 + + + False False 1 - - - True - dots per inch - - - False - False - 2 - - - - - False - False - - @@ -96,142 +98,136 @@ True - 0.5 - 0.5 - 1 - 1 6 - 0 12 - 0 - - - True - 2 - 2 - 12 - 6 - - - - + True - 3 + 2 + 2 + 12 + 6 - - True - True - _None - True - True - - - False - False - + - + True - 0 + 3 - + True + True + Sub_pixel (LCDs) + True + True + antialias_none_radio + + False + False + + + + + True + + + True + + + + + 1 + - 1 - - - - - GTK_FILL - - - - - True - 3 - - - True - True - Gra_yscale - True - True - antialias_none_radio - - - False - False + 1 + 2 + GTK_FILL - + True - 0 + 3 - + True + True + Gra_yscale + True + True + antialias_none_radio + + False + False + + + + + True + + + True + + + + + 1 + - 1 - - - - - 1 - 2 - GTK_FILL - - - - - True - 3 - - - True - True - Sub_pixel (LCDs) - True - True - antialias_none_radio - - - False - False + 1 + 2 + GTK_FILL - + True - 0 + 3 - + True + True + _None + True + True + + False + False + + + + + True + + + True + + + + + 1 + - 1 + GTK_FILL - - 1 - 2 - GTK_FILL - - - - + + 1 + + 1 @@ -255,178 +251,171 @@ True - 0.5 - 0.5 - 1 - 1 6 - 0 12 - 0 - - - True - 2 - 2 - 12 - 6 - + True - 3 + 2 + 2 + 12 + 6 - + True - True - N_one - True - True - - - False - False - - - - - True - 0 + 3 - + True + True + _Full + True + True + hint_none_radio + + False + False + + + + + True + + + True + + + + + 1 + - 1 - - - - - - - True - 3 - - - True - True - _Slight - True - True - hint_none_radio - - - False - False + 1 + 2 + 1 + 2 + GTK_FILL + GTK_FILL - + True - 0 + 3 - + True + True + _Medium + True + True + hint_none_radio + + False + False + + + + + True + + + True + + + + + 1 + - 1 - - - - - 1 - 2 - GTK_FILL - - - - - True - 3 - - - True - True - _Medium - True - True - hint_none_radio - - - False - False + 1 + 2 + GTK_FILL - + True - 0 + 3 - + True + True + _Slight + True + True + hint_none_radio + + False + False + + + + + True + + + True + + + + + 1 + - 1 - - - - - 1 - 2 - GTK_FILL - - - - - True - 3 - - - True - True - _Full - True - True - hint_none_radio - - - False - False + 1 + 2 + GTK_FILL - + True - 0 + 3 - + True + True + N_one + True + True + + False + False + + + + + True + + + True + + + + + 1 + - - 1 - - - 1 - 2 - 1 - 2 - GTK_FILL - GTK_FILL - - - - + + 1 + + 2 @@ -450,149 +439,142 @@ True - 0.5 - 0.5 - 1 - 1 6 - 0 12 - 0 - - - True - 2 - 2 - 12 - 6 - + True + 2 + 2 + 12 + 6 - + True - True - _RGB - True - True - - - - - True - gtk-missing-image + + + True + True + VB_GR + True + True + subpixel_rgb_radio + + + + + True + gtk-missing-image + + + False + False + 1 + + - False - False - 0 - 1 + 1 + 2 + 1 + 2 + GTK_FILL + GTK_FILL - - - - - True - + True - True - _BGR - True - True - subpixel_rgb_radio - - - - - True - gtk-missing-image + + + True + True + _VRGB + True + True + subpixel_rgb_radio + + + + + True + gtk-missing-image + + + False + False + 1 + + - False - False - 0 - 1 + 1 + 2 + GTK_FILL - - - 1 - 2 - GTK_FILL - - - - - True - + True - True - _VRGB - True - True - subpixel_rgb_radio - - - - - True - gtk-missing-image + + + True + True + _BGR + True + True + subpixel_rgb_radio + + + + + True + gtk-missing-image + + + False + False + 1 + + - False - False - 0 - 1 + 1 + 2 + GTK_FILL - - - 1 - 2 - GTK_FILL - - - - - True - + True - True - VB_GR - True - True - subpixel_rgb_radio + + + True + True + _RGB + True + True + + + + + True + gtk-missing-image + + + False + False + 1 + + - - - True - gtk-missing-image - - - False - False - 0 - 1 - - - - 1 - 2 - 1 - 2 - GTK_FILL - GTK_FILL - - - + + 1 + @@ -666,8 +648,8 @@ True - 6 GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 6 True @@ -678,16 +660,16 @@ GTK_SHADOW_IN + 1 True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK GTK_SELECTION_BROWSE + 138 + 3 18 18 - 3 18 - 1 - 138 @@ -700,38 +682,23 @@ GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 6 GTK_BUTTONBOX_END - - - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - _Install... - True - - - 3 - - True + False True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK gtk-delete True - False - - 0 - True + False True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK Save _As... - False 1 @@ -749,6 +716,18 @@ 2 + + + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + _Install... + True + + + 3 + + False @@ -756,9 +735,6 @@ - - False - @@ -768,7 +744,6 @@ tab - False False @@ -831,15 +806,15 @@ GTK_SHADOW_IN + 1 True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + True 0 GTK_SELECTION_BROWSE 3 3 - 1 - True @@ -1020,7 +995,6 @@ Vertical gradient 1 - False @@ -1032,7 +1006,6 @@ Vertical gradient tab 1 - False False @@ -1049,92 +1022,43 @@ Vertical gradient 12 6 - - True - True - True - - - 1 - 2 - 1 - 2 - GTK_FILL - - - - - + True 0 - _Document font: - True - document_font - - - 1 - 2 - GTK_FILL - - - - - - True - True - True - - - 1 - 2 - 2 - 3 - GTK_FILL - - - - - - True - True - True - - - 1 - 2 - 3 - 4 - GTK_FILL - - - - - - True - True - True - - - 1 - 2 - 4 - 5 - GTK_FILL - - - - - - True - 0 - Des_ktop font: + _Application font: True GTK_JUSTIFY_RIGHT - desktop_font + application_font - 2 - 3 + GTK_FILL + + + + + + True + True + True + + + 1 + 2 + + + + + + True + 0 + _Fixed width font: + True + GTK_JUSTIFY_RIGHT + monospace_font + + + 4 + 5 GTK_FILL @@ -1156,23 +1080,23 @@ Vertical gradient - + True 0 - _Fixed width font: + Des_ktop font: True GTK_JUSTIFY_RIGHT - monospace_font + desktop_font - 4 - 5 + 2 + 3 GTK_FILL - + True True True @@ -1180,19 +1104,68 @@ Vertical gradient 1 2 + 4 + 5 + GTK_FILL - + True - 0 - _Application font: - True - GTK_JUSTIFY_RIGHT - application_font + True + True + 1 + 2 + 3 + 4 + GTK_FILL + + + + + + True + True + True + + + 1 + 2 + 2 + 3 + GTK_FILL + + + + + + True + 0 + _Document font: + True + document_font + + + 1 + 2 + GTK_FILL + + + + + + True + True + True + + + 1 + 2 + 1 + 2 GTK_FILL @@ -1230,14 +1203,47 @@ Vertical gradient 12 6 - + True 6 - + True True - Sub_pixel smoothing (LCDs) + _Monochrome + True + True + + + False + False + + + + + True + + + True + + + + + False + 1 + + + + + + + True + 6 + + + True + True + Best _shapes True True monochrome_radio @@ -1248,25 +1254,23 @@ Vertical gradient - + True - + True - 1 False + 1 1 2 - 1 - 2 @@ -1297,8 +1301,8 @@ Vertical gradient - 1 False + 1 @@ -1308,14 +1312,14 @@ Vertical gradient - + True 6 - + True True - Best _shapes + Sub_pixel smoothing (LCDs) True True monochrome_radio @@ -1326,70 +1330,39 @@ Vertical gradient - + True - + True - 1 False + 1 1 2 + 1 + 2 - - - True - 6 - - - True - True - _Monochrome - True - True - - - False - False - - - - - True - - - True - - - - - 1 - False - - - - - 1 False + 1 - 1 False + 1 @@ -1408,14 +1381,13 @@ Vertical gradient - 2 False + 2 2 - False @@ -1427,7 +1399,6 @@ Vertical gradient tab 2 - False False @@ -1594,90 +1565,6 @@ Text only True _File True - - - - - True - _New - True - - - True - gtk-new - 1 - - - - - - - True - _Open - True - - - True - gtk-open - 1 - - - - - - - True - _Save - True - - - True - gtk-save - 1 - - - - - - - True - - - - - True - _Print - True - - - True - gtk-print - 1 - - - - - - - True - - - - - True - _Quit - True - - - True - gtk-quit - 1 - - - - - - @@ -1685,52 +1572,6 @@ Text only True Edit True - - - - - True - C_ut - True - - - True - gtk-cut - 1 - - - - - - - True - _Copy - True - - - True - gtk-copy - 1 - - - - - - - True - _Paste - True - - - True - gtk-paste - 1 - - - - - - @@ -1749,7 +1590,6 @@ Text only True - GTK_TOOLBAR_BOTH True @@ -1809,7 +1649,6 @@ Text only 3 - False @@ -1821,7 +1660,87 @@ Text only tab 3 - False + False + + + + + True + 6 + + + True + 6 + GTK_SHADOW_NONE + + + True + 12 + + + True + 6 + 1 + 2 + 6 + + + True + _Customize + True + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + _Enable desktop effects + True + True + + + GTK_FILL + GTK_FILL + + + + + + + + + True + <b>Window Manager</b> + True + + + label_item + + + + + False + 6 + + + + + 4 + + + + + True + Desktop effects + + + tab + 4 False @@ -1921,12 +1840,12 @@ Text only True + False True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK gtk-delete True - False @@ -1936,9 +1855,6 @@ Text only - - False - @@ -1948,7 +1864,6 @@ Text only tab - False False @@ -1999,118 +1914,71 @@ Text only 3 12 12 - - - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_MOTION_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - - - 2 - 3 - 4 - 5 - - - - - - - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_MOTION_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - - - 1 - 2 - 4 - 5 - - - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - _Tooltips: - True - tooltip_bg_color - - - 4 - 5 - - - + True - True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + Background + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + Text 2 3 - 3 - 4 - - + GTK_FILL + GTK_FILL - - True - True - - - 2 - 3 - 2 - 3 - - - - - - - True - True - - - 2 - 3 - 1 - 2 - - - - - - + True 0 - _Selected items: + _Windows: True - selected_bg_color + bg_color - 3 - 4 + 1 + 2 - + + True + 0 + _Input boxes: + True + base_color + + + 2 + 3 + + + + True True 1 2 - 3 - 4 + 1 + 2 @@ -2130,13 +1998,40 @@ Text only - + True True 1 2 + 3 + 4 + + + + + + + True + 0 + _Selected items: + True + selected_bg_color + + + 3 + 4 + + + + + True + True + + + 2 + 3 1 2 @@ -2144,55 +2039,75 @@ Text only - + True - 0 - _Input boxes: - True - base_color - - - 2 - 3 - - - - - True - 0 - _Windows: - True - bg_color - - - 1 - 2 - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - Text + True 2 3 - GTK_FILL - GTK_FILL + 2 + 3 + + - + + True + True + + + 2 + 3 + 3 + 4 + + + + + + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - Background + 0 + _Tooltips: + True + tooltip_bg_color + + + 4 + 5 + + + + + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_MOTION_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 1 2 - GTK_FILL - GTK_FILL + 4 + 5 + + + + + + + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_MOTION_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + + + 2 + 3 + 4 + 5 + + @@ -2224,7 +2139,6 @@ Text only 1 - False @@ -2236,7 +2150,6 @@ Text only tab 1 - False False @@ -2274,12 +2187,12 @@ Text only True + False True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK gtk-delete True - False @@ -2291,7 +2204,6 @@ Text only 2 - False @@ -2303,7 +2215,6 @@ Text only tab 2 - False False @@ -2341,12 +2252,12 @@ Text only True + False True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK gtk-delete True - False @@ -2358,7 +2269,6 @@ Text only 3 - False @@ -2370,7 +2280,6 @@ Text only tab 3 - False False @@ -2383,8 +2292,8 @@ Text only GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 6 True + 6 True @@ -2438,10 +2347,10 @@ Text only - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 12 - + _Size: True @@ -2453,8 +2362,8 @@ Text only - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 6 @@ -2473,8 +2382,8 @@ Text only True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 0 100 1 0 0 - False 0 + False 1 @@ -2496,7 +2405,7 @@ Text only 1 - + True @@ -2512,7 +2421,6 @@ Text only GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK gtk-delete True - 0 @@ -2521,15 +2429,14 @@ Text only - - False - 2 - - + + False + 2 + + 4 - False @@ -2541,7 +2448,6 @@ Text only tab 4 - False False @@ -2591,218 +2497,143 @@ Text only 6 Save Theme As... - GTK_WINDOW_TOPLEVEL - GTK_WIN_POS_NONE True - True - False - True - False - False GDK_WINDOW_TYPE_HINT_DIALOG - GDK_GRAVITY_NORTH_WEST - True - False False - True - False 2 - - - - True - GTK_BUTTONBOX_END - - - - True - True - True - gtk-cancel - True - GTK_RELIEF_NORMAL - True - -6 - - - - - - True - True - True - True - gtk-save - True - GTK_RELIEF_NORMAL - True - -5 - - - - - 0 - False - True - GTK_PACK_END - - - - - 6 - True - 3 - 2 - False - 6 - 12 - - - - True - True - True - True - 0 - - True - True - - - 1 - 2 - 0 - 1 - - - - - - - True - _Name: - True - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - save_dialog_entry - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - 1 - 0 - 1 - fill - fill - - - - - - True - True - GTK_POLICY_NEVER - GTK_POLICY_AUTOMATIC - GTK_SHADOW_IN - GTK_CORNER_TOP_LEFT - - - - True - True - True - False - False - GTK_JUSTIFY_LEFT - GTK_WRAP_WORD - True - 0 - 0 - 0 - 0 - 0 - 0 - - - - - - 1 - 2 - 1 - 2 - - - - - - True - _Description: - True - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0 - 0 - 0 - save_dialog_textview - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - 1 - 1 - 2 - fill - fill - - - - - - True - True - Save _background image - True - GTK_RELIEF_NORMAL - True - False - False - True - - - 1 - 2 - 2 - 3 - fill - - - - - - 0 - True - True - + + True + 6 + 3 + 2 + 12 + 6 + + + + + + True + True + Save _background image + True + True + + + 1 + 2 + 2 + 3 + GTK_FILL + + + + + + True + 0 + 0 + _Description: + True + save_dialog_textview + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + True + GTK_POLICY_NEVER + GTK_POLICY_AUTOMATIC + GTK_SHADOW_IN + + + True + True + GTK_WRAP_WORD + False + + + + + 1 + 2 + 1 + 2 + + + + + True + 0 + _Name: + True + save_dialog_entry + + + GTK_FILL + GTK_FILL + + + + + True + True + True + + + 1 + 2 + + + + + + 1 + + + + + True + GTK_BUTTONBOX_END + + + True + True + True + gtk-cancel + True + -6 + + + + + True + True + True + True + gtk-save + True + -5 + + + 1 + + + + + False + GTK_PACK_END +