From bdf68d23a0a9150c8dc3a3fa1c6f96552a584a6c Mon Sep 17 00:00:00 2001 From: Jens Granseuer Date: Tue, 8 Apr 2008 18:56:46 +0000 Subject: [PATCH] remove accidentally committed (and broken) desktop effects changes svn path=/trunk/; revision=8641 --- 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 | 1989 +++++++++-------- 6 files changed, 1080 insertions(+), 1079 deletions(-) diff --git a/capplets/appearance/Makefile.am b/capplets/appearance/Makefile.am index ba6472ae2..118400b9a 100644 --- a/capplets/appearance/Makefile.am +++ b/capplets/appearance/Makefile.am @@ -9,8 +9,6 @@ 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 index 91286e2b4..e69de29bb 100644 --- a/capplets/appearance/appearance-desktop-effects.c +++ b/capplets/appearance/appearance-desktop-effects.c @@ -1,137 +0,0 @@ -/* - * 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 index 037c8d1ed..e69de29bb 100644 --- a/capplets/appearance/appearance-desktop-effects.h +++ b/capplets/appearance/appearance-desktop-effects.h @@ -1,22 +0,0 @@ -/* - * 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 174292835..609d071f8 100644 --- a/capplets/appearance/appearance-main.c +++ b/capplets/appearance/appearance-main.c @@ -20,10 +20,9 @@ #include "appearance.h" #include "appearance-desktop.h" -#include "appearance-desktop-effects.h" #include "appearance-font.h" -#include "appearance-style.h" #include "appearance-themes.h" +#include "appearance-style.h" #include "appearance-ui.h" #include "theme-installer.h" #include "theme-thumbnail.h" @@ -80,7 +79,6 @@ main_window_response (GtkWidget *widget, themes_shutdown (data); style_shutdown (data); - desktop_effects_shutdown (data); desktop_shutdown (data); font_shutdown (data); @@ -153,7 +151,6 @@ 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 ddc67809d..08749875e 100644 --- a/capplets/appearance/appearance.h +++ b/capplets/appearance/appearance.h @@ -48,10 +48,6 @@ 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 2b63c5d6c..09a0bc763 100644 --- a/capplets/appearance/data/appearance.glade +++ b/capplets/appearance/data/appearance.glade @@ -1,6 +1,5 @@ - 5 @@ -42,34 +41,33 @@ True 6 - - - True - True - 96 50 200 1 10 10 - 1 - - - False - 1 - - - - - True - dots per inch - - - False - False - 2 - - + + + True + True + 96 50 200 1 10 10 + 1 + + + False + 1 + + + + + True + dots per inch False False - 1 + 2 + + + + + False + False @@ -98,136 +96,142 @@ True + 0.5 + 0.5 + 1 + 1 6 + 0 12 + 0 + + + True + 2 + 2 + 12 + 6 - + + + + True - 2 - 2 - 12 - 6 + 3 - - - - + True - 3 - - - True - True - Sub_pixel (LCDs) - True - True - antialias_none_radio - - - False - False - - - - - True - - - True - - - - - 1 - - + True + _None + True + True - 1 - 2 - GTK_FILL + False + False - + True - 3 + 0 - + True - True - Gra_yscale - True - True - antialias_none_radio - - False - False - - - - - True - - - True - - - - - 1 - - 1 - 2 - GTK_FILL - - - - - True - 3 - - - True - True - _None - True - True - - - False - False - - - - - True - - - True - - - - - 1 - - - - - GTK_FILL + 1 + + GTK_FILL + + + + + True + 3 + + + True + True + Gra_yscale + True + True + antialias_none_radio + + + False + False + + + + + True + 0 + + + True + + + + + 1 + + + + + 1 + 2 + GTK_FILL + + + + + True + 3 + + + True + True + Sub_pixel (LCDs) + True + True + antialias_none_radio + + + False + False + + + + + True + 0 + + + True + + + + + 1 + + + + + 1 + 2 + GTK_FILL + - - 1 - - + + + 1 @@ -251,171 +255,178 @@ True + 0.5 + 0.5 + 1 + 1 6 + 0 12 + 0 + + + True + 2 + 2 + 12 + 6 - + True - 2 - 2 - 12 - 6 + 3 - + True - 3 - - - True - True - _Full - True - True - hint_none_radio - - - False - False - - - - - True - - - True - - - - - 1 - - + True + N_one + True + True - 1 - 2 - 1 - 2 - GTK_FILL - GTK_FILL + False + False - + True - 3 + 0 - + True - True - _Medium - True - True - hint_none_radio - - False - False - - - - - True - - - True - - - - - 1 - - 1 - 2 - GTK_FILL + 1 - - - True - 3 - - - True - True - _Slight - True - True - hint_none_radio - - - False - False - - - - - True - - - True - - - - - 1 - - - - - 1 - 2 - GTK_FILL - - - - - True - 3 - - - True - True - N_one - True - True - - - False - False - - - - - True - - - True - - - - - 1 - - - - + + + True + 3 + + + True + True + _Slight + True + True + hint_none_radio + + + False + False + + + + + True + 0 + + + True + + + + + 1 + + + + + 1 + 2 + GTK_FILL + + + + + True + 3 + + + True + True + _Medium + True + True + hint_none_radio + + + False + False + + + + + True + 0 + + + True + + + + + 1 + + + + + 1 + 2 + GTK_FILL + + + + + True + 3 + + + True + True + _Full + True + True + hint_none_radio + + + False + False + + + + + True + 0 + + + True + + + + + 1 + + + + + 1 + 2 + 1 + 2 + GTK_FILL + GTK_FILL + + - - 1 - - + + + 2 @@ -439,142 +450,149 @@ True + 0.5 + 0.5 + 1 + 1 6 + 0 12 + 0 + + + True + 2 + 2 + 12 + 6 - + True - 2 - 2 - 12 - 6 - + True - - - True - True - VB_GR - True - True - subpixel_rgb_radio - - - - - True - gtk-missing-image - - - False - False - 1 - - + True + _RGB + True + True - - 1 - 2 - 1 - 2 - GTK_FILL - GTK_FILL - - + True - - - True - True - _VRGB - True - True - subpixel_rgb_radio - - - - - True - gtk-missing-image - - - False - False - 1 - - + gtk-missing-image - 1 - 2 - GTK_FILL + False + False + 0 + 1 - - - True - - - True - True - _BGR - True - True - subpixel_rgb_radio - - - - - True - gtk-missing-image - - - False - False - 1 - - - - - 1 - 2 - GTK_FILL - - - - - True - - - True - True - _RGB - True - True - - - - - True - gtk-missing-image - - - False - False - 1 - - - - + + + True + + + True + True + _BGR + True + True + subpixel_rgb_radio + + + + + True + gtk-missing-image + + + False + False + 0 + 1 + + + + + 1 + 2 + GTK_FILL + + + + + True + + + True + True + _VRGB + True + True + subpixel_rgb_radio + + + + + True + gtk-missing-image + + + False + False + 0 + 1 + + + + + 1 + 2 + GTK_FILL + + + + + True + + + True + True + VB_GR + True + True + subpixel_rgb_radio + + + + + True + gtk-missing-image + + + False + False + 0 + 1 + + + + + 1 + 2 + 1 + 2 + GTK_FILL + GTK_FILL + + - - 1 - + + @@ -648,8 +666,8 @@ True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 6 + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK True @@ -660,16 +678,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 @@ -682,23 +700,38 @@ 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 @@ -716,18 +749,6 @@ 2 - - - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - _Install... - True - - - 3 - - False @@ -735,6 +756,9 @@ + + False + @@ -744,6 +768,7 @@ tab + False False @@ -806,15 +831,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 @@ -995,6 +1020,7 @@ Vertical gradient 1 + False @@ -1006,6 +1032,7 @@ Vertical gradient tab 1 + False False @@ -1022,21 +1049,7 @@ Vertical gradient 12 6 - - True - 0 - _Application font: - True - GTK_JUSTIFY_RIGHT - application_font - - - GTK_FILL - - - - - + True True True @@ -1044,41 +1057,72 @@ Vertical gradient 1 2 - - - - - - True - 0 - _Fixed width font: - True - GTK_JUSTIFY_RIGHT - monospace_font - - - 4 - 5 + 1 + 2 GTK_FILL - + True 0 - _Window title font: + _Document font: True - GTK_JUSTIFY_RIGHT - window_title_font + 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 @@ -1096,29 +1140,15 @@ Vertical gradient - + True - True - True + 0 + _Window title font: + True + GTK_JUSTIFY_RIGHT + window_title_font - 1 - 2 - 4 - 5 - GTK_FILL - - - - - - True - True - True - - - 1 - 2 3 4 GTK_FILL @@ -1126,37 +1156,23 @@ Vertical gradient - - True - True - True - - - 1 - 2 - 2 - 3 - GTK_FILL - - - - - + True 0 - _Document font: + _Fixed width font: True - document_font + GTK_JUSTIFY_RIGHT + monospace_font - 1 - 2 + 4 + 5 GTK_FILL - + True True True @@ -1164,8 +1180,19 @@ Vertical gradient 1 2 - 1 - 2 + + + + + + True + 0 + _Application font: + True + GTK_JUSTIFY_RIGHT + application_font + + GTK_FILL @@ -1203,47 +1230,14 @@ Vertical gradient 12 6 - + True 6 - + True True - _Monochrome - True - True - - - False - False - - - - - True - - - True - - - - - False - 1 - - - - - - - True - 6 - - - True - True - Best _shapes + Sub_pixel smoothing (LCDs) True True monochrome_radio @@ -1254,23 +1248,25 @@ Vertical gradient - + True - + True - False 1 + False 1 2 + 1 + 2 @@ -1301,8 +1297,8 @@ Vertical gradient - False 1 + False @@ -1312,14 +1308,14 @@ Vertical gradient - + True 6 - + True True - Sub_pixel smoothing (LCDs) + Best _shapes True True monochrome_radio @@ -1330,39 +1326,70 @@ Vertical gradient - + True - + True - False 1 + False 1 2 - 1 - 2 + + + True + 6 + + + True + True + _Monochrome + True + True + + + False + False + + + + + True + + + True + + + + + 1 + False + + + + - False 1 + False - False 1 + False @@ -1381,13 +1408,14 @@ Vertical gradient - False 2 + False 2 + False @@ -1399,6 +1427,7 @@ Vertical gradient tab 2 + False False @@ -1565,6 +1594,90 @@ 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 + + + + + + @@ -1572,6 +1685,52 @@ 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 + + + + + + @@ -1590,6 +1749,7 @@ Text only True + GTK_TOOLBAR_BOTH True @@ -1649,6 +1809,7 @@ Text only 3 + False @@ -1660,87 +1821,7 @@ Text only tab 3 - 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 False @@ -1840,12 +1921,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 @@ -1855,6 +1936,9 @@ Text only + + False + @@ -1864,6 +1948,7 @@ Text only tab + False False @@ -1915,153 +2000,31 @@ Text only 12 12 - - - - + 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 + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_MOTION_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 2 3 - GTK_FILL - GTK_FILL + 4 + 5 + + - - True - 0 - _Windows: - True - bg_color - - - 1 - 2 - - - - - True - 0 - _Input boxes: - True - base_color - - - 2 - 3 - - - - + 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 - 1 - 2 - - - - - - - True - True - - - 1 - 2 - 2 - 3 - - - - - - - True - True - - - 1 - 2 - 3 - 4 - - - - - - - True - 0 - _Selected items: - True - selected_bg_color - - - 3 - 4 - - - - - True - True - - - 2 - 3 - 1 - 2 - - - - - - - True - True - - - 2 - 3 - 2 - 3 - - - - - - - True - True - - - 2 - 3 - 3 - 4 + 4 + 5 @@ -2081,35 +2044,157 @@ Text only - + + + + 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 + 2 + 3 + 3 + 4 - + 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 + 2 + 3 + + + True + True + + + 2 + 3 + 1 + 2 + + + + + + + True + 0 + _Selected items: + True + selected_bg_color + + + 3 + 4 + + + + + True + True + + + 1 + 2 + 3 + 4 + + + + + + + True + True + + + 1 + 2 + 2 + 3 + + + + + + + True + True + + + 1 + 2 + 1 + 2 + + + + + + + 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 + + + 2 + 3 + GTK_FILL + GTK_FILL + + + + + 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 + + False @@ -2139,6 +2224,7 @@ Text only 1 + False @@ -2150,6 +2236,7 @@ Text only tab 1 + False False @@ -2187,12 +2274,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 @@ -2204,6 +2291,7 @@ Text only 2 + False @@ -2215,6 +2303,7 @@ Text only tab 2 + False False @@ -2252,12 +2341,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 @@ -2269,6 +2358,7 @@ Text only 3 + False @@ -2280,6 +2370,7 @@ Text only tab 3 + False False @@ -2292,8 +2383,8 @@ Text only GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - True 6 + True True @@ -2347,10 +2438,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 @@ -2362,8 +2453,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 @@ -2382,8 +2473,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 - 0 False + 0 1 @@ -2405,7 +2496,7 @@ Text only 1 - + True @@ -2421,6 +2512,7 @@ Text only GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK gtk-delete True + 0 @@ -2429,14 +2521,15 @@ Text only - - False - 2 - - + + False + 2 + + 4 + False @@ -2448,6 +2541,7 @@ Text only tab 4 + False False @@ -2497,143 +2591,218 @@ 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 - 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 - + + 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 +