From 844db921aeed3e987f3be0f4e7e0b3a9703612ac Mon Sep 17 00:00:00 2001 From: rbuj Date: Mon, 23 Nov 2020 09:58:57 +0100 Subject: appearance: Add file chooser settings --- capplets/appearance/appearance-main.c | 2 + capplets/appearance/appearance-ui.c | 34 +- capplets/appearance/appearance.h | 20 +- capplets/appearance/data/appearance.ui | 1666 ++++++++++++++++++-------------- capplets/appearance/data/ui-a11y.suppr | 2 + 5 files changed, 983 insertions(+), 741 deletions(-) (limited to 'capplets') diff --git a/capplets/appearance/appearance-main.c b/capplets/appearance/appearance-main.c index 7815e885..87625b0e 100644 --- a/capplets/appearance/appearance-main.c +++ b/capplets/appearance/appearance-main.c @@ -64,6 +64,7 @@ init_appearance_data (int *argc, char ***argv, GOptionContext *context) else data->caja_settings = NULL; + data->filechooser_settings = g_settings_new (FILECHOOSER_SCHEMA); data->interface_settings = g_settings_new (INTERFACE_SCHEMA); data->marco_settings = g_settings_new (MARCO_SCHEMA); data->mouse_settings = g_settings_new (MOUSE_SCHEMA); @@ -98,6 +99,7 @@ main_window_response (GtkWidget *widget, if (data->caja_settings) g_object_unref (data->caja_settings); + g_object_unref (data->filechooser_settings); g_object_unref (data->interface_settings); g_object_unref (data->marco_settings); g_object_unref (data->mouse_settings); diff --git a/capplets/appearance/appearance-ui.c b/capplets/appearance/appearance-ui.c index 3a004af3..4ca5466e 100644 --- a/capplets/appearance/appearance-ui.c +++ b/capplets/appearance/appearance-ui.c @@ -73,21 +73,18 @@ menus_have_icons_cb (GSettings *settings, void ui_init (AppearanceData *data) { - GtkWidget* widget; - /* FIXME maybe just remove that stuff from .ui file */ GtkWidget* container = appearance_capplet_get_widget(data, "vbox24"); - // Remove menu accels and toolbar style toggles for new GTK versions + /* Remove menu accels and toolbar style toggles for new GTK versions */ gtk_container_remove((GtkContainer *) container, appearance_capplet_get_widget(data, "menu_accel_toggle")); gtk_container_remove((GtkContainer *) container, appearance_capplet_get_widget(data, "hbox11")); - widget = appearance_capplet_get_widget(data, "menu_icons_toggle"); g_settings_bind (data->interface_settings, MENU_ICONS_KEY, - G_OBJECT (widget), + gtk_builder_get_object (data->ui, "menu_icons_toggle"), "active", G_SETTINGS_BIND_DEFAULT); g_signal_connect (data->interface_settings, "changed::" MENU_ICONS_KEY, @@ -97,10 +94,33 @@ ui_init (AppearanceData *data) g_settings_get_boolean (data->interface_settings, MENU_ICONS_KEY)); - widget = appearance_capplet_get_widget(data, "button_icons_toggle"); g_settings_bind (data->interface_settings, BUTTON_ICONS_KEY, - G_OBJECT (widget), + gtk_builder_get_object (data->ui, "button_icons_toggle"), + "active", + G_SETTINGS_BIND_DEFAULT); + + g_settings_bind (data->filechooser_settings, + FILECHOOSER_HIDDEN_ITEMS_KEY, + gtk_builder_get_object (data->ui, "filechooser_hidden_items_toggle"), + "active", + G_SETTINGS_BIND_DEFAULT); + + g_settings_bind (data->filechooser_settings, + FILECHOOSER_SIZE_COL_KEY, + gtk_builder_get_object (data->ui, "filechooser_size_column_toggle"), + "active", + G_SETTINGS_BIND_DEFAULT); + + g_settings_bind (data->filechooser_settings, + FILECHOOSER_TYPE_COL_KEY, + gtk_builder_get_object (data->ui, "filechooser_type_column_toggle"), + "active", + G_SETTINGS_BIND_DEFAULT); + + g_settings_bind (data->filechooser_settings, + FILECHOOSER_DIR_FIRST_KEY, + gtk_builder_get_object (data->ui, "filechooser_sort_directories_first_toggle"), "active", G_SETTINGS_BIND_DEFAULT); } diff --git a/capplets/appearance/appearance.h b/capplets/appearance/appearance.h index 0e301a96..779904cf 100644 --- a/capplets/appearance/appearance.h +++ b/capplets/appearance/appearance.h @@ -28,6 +28,7 @@ #include "mate-theme-info.h" #define APPEARANCE_SCHEMA "org.mate.control-center.appearance" +#define FILECHOOSER_SCHEMA "org.gtk.Settings.FileChooser" #define MORE_THEMES_URL_KEY "more-themes-url" #define MORE_BACKGROUNDS_URL_KEY "more-backgrounds-url" @@ -38,18 +39,22 @@ #define WP_PCOLOR_KEY "primary-color" #define WP_SCOLOR_KEY "secondary-color" -#define INTERFACE_SCHEMA "org.mate.interface" -#define GTK_FONT_KEY "font-name" -#define MONOSPACE_FONT_KEY "monospace-font-name" +#define ACCEL_CHANGE_KEY "can-change-accels" +#define BUTTON_ICONS_KEY "buttons-have-icons" +#define COLOR_SCHEME_KEY "gtk-color-scheme" #define DOCUMENT_FONT_KEY "document-font-name" +#define FILECHOOSER_DIR_FIRST_KEY "sort-directories-first" +#define FILECHOOSER_HIDDEN_ITEMS_KEY "show-hidden" +#define FILECHOOSER_SIZE_COL_KEY "show-size-column" +#define FILECHOOSER_TYPE_COL_KEY "show-type-column" +#define GTK_FONT_DEFAULT_VALUE "Sans 10" +#define GTK_FONT_KEY "font-name" #define GTK_THEME_KEY "gtk-theme" #define ICON_THEME_KEY "icon-theme" -#define COLOR_SCHEME_KEY "gtk-color-scheme" -#define ACCEL_CHANGE_KEY "can-change-accels" +#define INTERFACE_SCHEMA "org.mate.interface" #define MENU_ICONS_KEY "menus-have-icons" -#define BUTTON_ICONS_KEY "buttons-have-icons" +#define MONOSPACE_FONT_KEY "monospace-font-name" #define TOOLBAR_STYLE_KEY "toolbar-style" -#define GTK_FONT_DEFAULT_VALUE "Sans 10" #define LOCKDOWN_SCHEMA "org.mate.lockdown" #define DISABLE_THEMES_SETTINGS_KEY "disable-theme-settings" @@ -79,6 +84,7 @@ typedef struct { GSettings* settings; GSettings* wp_settings; GSettings* caja_settings; + GSettings* filechooser_settings; GSettings* interface_settings; GSettings* marco_settings; GSettings* mouse_settings; diff --git a/capplets/appearance/data/appearance.ui b/capplets/appearance/data/appearance.ui index 2572eab7..700565f0 100644 --- a/capplets/appearance/data/appearance.ui +++ b/capplets/appearance/data/appearance.ui @@ -1,5 +1,5 @@ - 100 - 1 - 10 + 1 + 10 True - False - window-close + False + window-close render-details - False - 5 + False + 5 Font Rendering Details False - dialog + dialog True - False + False vertical 2 True - False - end + False + end _Close True - True - True - False + True + True + False button3_img - True - True + True + True False @@ -77,31 +77,31 @@ Author: Wolfgang Ulbrich False False - end + end 0 True - False - 5 + False + 5 vertical 18 True - False + False vertical 8 True - False + False start R_esolution - True - dpi_spinner + True + dpi_spinner @@ -115,13 +115,13 @@ Author: Wolfgang Ulbrich True - False + False center 8 True - False + False Dots per inch (DPI): @@ -133,8 +133,8 @@ Author: Wolfgang Ulbrich True - True - 1 + True + 1 False @@ -152,13 +152,13 @@ Author: Wolfgang Ulbrich True - False + False 8 True - False - This resets the font DPI to the auto-detected value from Xserver. + False + This resets the font DPI to the auto-detected value from Xserver. Automatic detection: @@ -170,7 +170,7 @@ Author: Wolfgang Ulbrich True - True + True True @@ -196,12 +196,12 @@ Author: Wolfgang Ulbrich True - False + False vertical True - False + False start Smoothing @@ -217,20 +217,21 @@ Author: Wolfgang Ulbrich True - False - 6 - 12 + False + 6 + 12 + True - False - 6 - 12 - True + False + 6 + 12 + True True - False + False start vertical 3 @@ -238,10 +239,10 @@ Author: Wolfgang Ulbrich Gra_yscale True - True - False - True - True + True + False + True + True antialias_none_radio @@ -253,11 +254,11 @@ Author: Wolfgang Ulbrich True - False + False True - False + False @@ -269,14 +270,14 @@ Author: Wolfgang Ulbrich - 1 - 0 + 1 + 0 True - False + False start vertical 3 @@ -284,10 +285,10 @@ Author: Wolfgang Ulbrich Sub_pixel (LCDs) True - True - False - True - True + True + False + True + True antialias_none_radio @@ -299,11 +300,11 @@ Author: Wolfgang Ulbrich True - False + False True - False + False @@ -315,14 +316,14 @@ Author: Wolfgang Ulbrich - 0 - 1 + 0 + 1 True - False + False start vertical 3 @@ -330,10 +331,10 @@ Author: Wolfgang Ulbrich _None True - True - False - True - True + True + False + True + True False @@ -344,11 +345,11 @@ Author: Wolfgang Ulbrich True - False + False True - False + False @@ -360,13 +361,28 @@ Author: Wolfgang Ulbrich - 0 - 0 + 0 + 0 + + + + + + + + + + + + + + + @@ -386,12 +402,12 @@ Author: Wolfgang Ulbrich True - False + False vertical True - False + False start Hinting @@ -407,31 +423,32 @@ Author: Wolfgang Ulbrich True - False - 6 - 12 + False + 6 + 12 + True - False - 6 - 12 - True + False + 6 + 12 + True True - False + False vertical 3 N_one True - True - False + True + False start - True - True + True + True False @@ -442,11 +459,11 @@ Author: Wolfgang Ulbrich True - False + False True - False + False @@ -458,25 +475,25 @@ Author: Wolfgang Ulbrich - 0 - 0 + 0 + 0 True - False + False vertical 3 _Slight True - True - False + True + False start - True - True + True + True hint_none_radio @@ -488,11 +505,11 @@ Author: Wolfgang Ulbrich True - False + False True - False + False @@ -504,25 +521,25 @@ Author: Wolfgang Ulbrich - 1 - 0 + 1 + 0 True - False + False vertical 3 _Full True - True - False + True + False start - True - True + True + True hint_none_radio @@ -534,11 +551,11 @@ Author: Wolfgang Ulbrich True - False + False True - False + False @@ -550,25 +567,25 @@ Author: Wolfgang Ulbrich - 1 - 1 + 1 + 1 True - False + False vertical 3 _Medium True - True - False + True + False start - True - True + True + True hint_none_radio @@ -580,11 +597,11 @@ Author: Wolfgang Ulbrich True - False + False True - False + False @@ -596,10 +613,25 @@ Author: Wolfgang Ulbrich - 0 - 1 + 0 + 1 + + + + + + + + + + + + + + + @@ -619,12 +651,12 @@ Author: Wolfgang Ulbrich True - False + False vertical True - False + False start Subpixel Order @@ -640,29 +672,30 @@ Author: Wolfgang Ulbrich True - False - 6 - 12 + False + 6 + 12 + True - False - 6 - 12 - True + False + 6 + 12 + True True - False + False _RGB True - True - False + True + False start - True - True + True + True False @@ -673,35 +706,35 @@ Author: Wolfgang Ulbrich True - False + False gtk-missing-image False False - end + end 1 - 0 - 0 + 0 + 0 True - False + False _BGR True - True - False + True + False start - True - True + True + True subpixel_rgb_radio @@ -713,35 +746,35 @@ Author: Wolfgang Ulbrich True - False + False gtk-missing-image False False - end + end 1 - 1 - 0 + 1 + 0 True - False + False VB_GR True - True - False + True + False start - True - True + True + True subpixel_rgb_radio @@ -753,35 +786,35 @@ Author: Wolfgang Ulbrich True - False + False gtk-missing-image False False - end + end 1 - 1 - 1 + 1 + 1 True - False + False _VRGB True - True - False + True + False start - True - True + True + True subpixel_rgb_radio @@ -793,22 +826,37 @@ Author: Wolfgang Ulbrich True - False + False gtk-missing-image False False - end + end 1 - 0 - 1 + 0 + 1 + + + + + + + + + + + + + + + @@ -840,77 +888,74 @@ Author: Wolfgang Ulbrich button3 - - - True - False - window-close + False + window-close True - False - document-revert + False + document-revert True - False - edit-delete + False + edit-delete True - False - edit-delete + False + edit-delete True - False - help-browser + False + help-browser True - False - edit-delete + False + edit-delete True - False - process-stop + False + process-stop True - False - document-save + False + document-save - False - 6 + False + 6 Save Theme As... True - dialog + dialog True - False + False vertical 2 True - False - end + False + end _Cancel True - True - True - False + True + True + False save_dialog_cancel_button_img - True - True + True + True False @@ -922,13 +967,13 @@ Author: Wolfgang Ulbrich _Save True - True - True - True - False + True + True + True + False save_dialog_save_button_img - True - True + True + True False @@ -940,103 +985,104 @@ Author: Wolfgang Ulbrich False False - end + end 0 + True - False - 6 - 6 - 12 + False + 6 + 6 + 12 True - True - True + True + True - 1 - 0 + 1 + 0 True - True - never - in + True + never + in True - True - word - False + True + word + False - 1 - 1 + 1 + 1 Save _background image True - True - False - True - True + True + False + True + True - 1 - 2 + 1 + 2 Save _notification theme True - True - False - True - True + True + False + True + True - 1 - 3 + 1 + 3 True - False + False start _Name: - True - save_dialog_entry + True + save_dialog_entry - 0 - 0 + 0 + 0 True - False + False start start _Description: - True - save_dialog_textview + True + save_dialog_textview - 0 - 1 + 0 + 1 @@ -1045,6 +1091,18 @@ Author: Wolfgang Ulbrich + + + + + + + + + + + + False @@ -1058,39 +1116,36 @@ Author: Wolfgang Ulbrich save_dialog_cancel_button save_dialog_save_button - - - True - False - window-close + False + window-close True - False - accessories-text-editor + False + accessories-text-editor True - False - edit-delete + False + edit-delete True - False - help-browser + False + help-browser True - False - document-open + False + document-open True - False - document-save-as + False + document-save-as @@ -1114,40 +1169,40 @@ Author: Wolfgang Ulbrich True - False - edit-delete + False + edit-delete - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 5 + 5 Customize Theme - center-on-parent - 450 - dialog + center-on-parent + 450 + dialog True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK vertical 2 True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - end + end _Help True - True - False + True + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK theme_help_button_img - True - True + True + True False @@ -1159,12 +1214,12 @@ Author: Wolfgang Ulbrich _Close True - True - True + True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK theme_close_button_img - True - True + True + True False @@ -1176,45 +1231,45 @@ Author: Wolfgang Ulbrich False False - end + end 0 True - True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 5 + 5 True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 12 + 12 vertical 6 True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK vertical 6 - 200 + 200 True - True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - never - in + never + in True - True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - False + False @@ -1237,21 +1292,21 @@ Author: Wolfgang Ulbrich True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 6 - end + end _Delete True False - True - True + True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK gtk_themes_delete_img - True - True + True + True False @@ -1271,31 +1326,31 @@ Author: Wolfgang Ulbrich True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK Controls - False + False True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 12 + 12 vertical 18 - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 6 True - False + False gtk-dialog-info 5 @@ -1307,9 +1362,9 @@ Author: Wolfgang Ulbrich - 280 + 280 True - False + False The current controls theme does not support color schemes. True @@ -1327,189 +1382,190 @@ Author: Wolfgang Ulbrich + True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 12 - 12 + 12 + 12 True - True - False + True + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_MOTION_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK center - 2 - 4 + 2 + 4 True - True - False + True + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_MOTION_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK center - 1 - 4 + 1 + 4 True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK start _Tooltips: - True - tooltip_bg_color + True + tooltip_bg_color - 0 - 4 + 0 + 4 True - True - False + True + False center - 2 - 3 + 2 + 3 True - True - False + True + False center - 2 - 2 + 2 + 2 True - True - False + True + False center - 2 - 1 + 2 + 1 True - True - False + True + False center - 1 - 3 + 1 + 3 True - True - False + True + False center - 1 - 2 + 1 + 2 True - True - False + True + False center - 1 - 1 + 1 + 1 True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK Text - 2 - 0 + 2 + 0 True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK Background - 1 - 0 + 1 + 0 True - False + False start _Selected items: - True - selected_bg_color + True + selected_bg_color - 0 - 3 + 0 + 3 True - False + False start _Input boxes: - True - base_color + True + base_color - 0 - 2 + 0 + 2 True - False + False start _Windows: - True - bg_color + True + bg_color - 0 - 1 + 0 + 1 @@ -1525,19 +1581,19 @@ Author: Wolfgang Ulbrich True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - end + end _Reset to Defaults True - True - True + True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK color_scheme_defaults_button_img - True - True + True + True False @@ -1560,37 +1616,37 @@ Author: Wolfgang Ulbrich True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK Colors 1 - False + False True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 12 + 12 vertical 6 - 200 + 200 True - True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - never - in + never + in True - True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - False + False @@ -1606,21 +1662,21 @@ Author: Wolfgang Ulbrich True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 6 - end + end _Delete True False - True - True + True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK window_themes_delete_img - True - True + True + True False @@ -1643,37 +1699,37 @@ Author: Wolfgang Ulbrich True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK Window Border 2 - False + False True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 12 + 12 vertical 6 - 200 + 200 True - True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - never - in + never + in True - True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - False + False @@ -1689,21 +1745,21 @@ Author: Wolfgang Ulbrich True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 6 - end + end _Delete True False - True - True + True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK icon_themes_delete_img - True - True + True + True False @@ -1726,37 +1782,37 @@ Author: Wolfgang Ulbrich True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK Icons 3 - False + False True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 12 + 12 vertical 6 - 200 + 200 True - True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - never - in + never + in True - True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - False + False @@ -1772,15 +1828,15 @@ Author: Wolfgang Ulbrich True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 12 - False + False _Size: - True - cursor_size_scale + True + cursor_size_scale False @@ -1791,16 +1847,16 @@ Author: Wolfgang Ulbrich True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 6 True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK Small - True + True False @@ -1810,13 +1866,13 @@ Author: Wolfgang Ulbrich - 100 + 100 True - True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK adjustment1 0 - False + False True @@ -1827,10 +1883,10 @@ Author: Wolfgang Ulbrich True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK Large - True + True False @@ -1848,21 +1904,21 @@ Author: Wolfgang Ulbrich True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 6 - end + end _Delete True False - True - True + True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK cursor_themes_delete_img - True - True + True + True False @@ -1874,7 +1930,7 @@ Author: Wolfgang Ulbrich False True - end + end 2 @@ -1893,13 +1949,13 @@ Author: Wolfgang Ulbrich True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK Pointer 4 - False + False @@ -1915,14 +1971,11 @@ Author: Wolfgang Ulbrich theme_help_button theme_close_button - - - True - False - list-add + False + list-add @@ -1943,8 +1996,8 @@ Author: Wolfgang Ulbrich True - False - list-remove + False + list-remove @@ -1973,36 +2026,36 @@ Author: Wolfgang Ulbrich - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 5 + 5 Appearance Preferences - 790 - 560 - normal + 790 + 560 + normal True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK vertical 2 True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - end + end _Help True - True - False + True + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK help_button_img - True - True + True + True False @@ -2015,12 +2068,12 @@ Author: Wolfgang Ulbrich _Close True - True - True + True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK close_button_img - True - True + True + True False @@ -2032,50 +2085,50 @@ Author: Wolfgang Ulbrich False False - end + end 0 True - True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 5 + 5 True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 12 + 12 vertical 6 True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK vertical 6 True - True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - never - in + never + in - 1 + 1 True - True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 18 - browse - 138 + browse + 138 3 - 18 - 18 + 18 + 18 @@ -2095,21 +2148,21 @@ Author: Wolfgang Ulbrich True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 6 - end + end _Delete True False - True - False + True + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK theme_delete_img - True - True + True + True False @@ -2122,12 +2175,12 @@ Author: Wolfgang Ulbrich Save _As... True False - True - False + True + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK theme_save_img - True - True + True + True False @@ -2139,12 +2192,12 @@ Author: Wolfgang Ulbrich C_ustomize... True - True - False + True + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK theme_custom_img - True - True + True + True False @@ -2156,12 +2209,12 @@ Author: Wolfgang Ulbrich _Install... True - True - False + True + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK theme_install_img - True - True + True + True False @@ -2179,15 +2232,15 @@ Author: Wolfgang Ulbrich True - False + False Get more themes online True - True - True - True - True + True + True + True + True none http://gnome-look.org/ @@ -2201,7 +2254,7 @@ Author: Wolfgang Ulbrich False False - end + end 2 @@ -2210,48 +2263,48 @@ Author: Wolfgang Ulbrich True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK Theme - False + False True - False - 12 + False + 12 vertical 6 True - False + False vertical 6 True - False + False 6 True - True - never - in + True + never + in - 1 + 1 True - True + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 - browse - 3 - 3 + browse + 3 + 3 @@ -2271,20 +2324,20 @@ Author: Wolfgang Ulbrich True - False + False 24 True - False + False 12 True - False + False _Style: - True - wp_style_menu + True + wp_style_menu False @@ -2295,7 +2348,7 @@ Author: Wolfgang Ulbrich True - False + False wp_style_liststore @@ -2320,15 +2373,15 @@ Author: Wolfgang Ulbrich True - False + False 12 True - False + False C_olors: - True - wp_color_menu + True + wp_color_menu False @@ -2339,12 +2392,12 @@ Author: Wolfgang Ulbrich True - False + False 6 True - False + False wp_color_liststore @@ -2362,8 +2415,8 @@ Author: Wolfgang Ulbrich True - True - True + True + True Open a dialog to specify the color @@ -2378,8 +2431,8 @@ Author: Wolfgang Ulbrich - True - True + True + True Open a dialog to specify the color @@ -2423,7 +2476,7 @@ Author: Wolfgang Ulbrich True - False + False False @@ -2434,14 +2487,14 @@ Author: Wolfgang Ulbrich True - False + False Get more backgrounds online True - True - True - True + True + True + True none http://gnome-look.org/ @@ -2454,24 +2507,24 @@ Author: Wolfgang Ulbrich True - False + False 6 True - end + end _Remove True - True - True + True + True wp_rem_button_img - True - True + True + True False False - end + end 0 @@ -2479,16 +2532,16 @@ Author: Wolfgang Ulbrich _Add... True - True - True + True + True wp_add_button_img - True - True + True + True False False - end + end 1 @@ -2496,7 +2549,7 @@ Author: Wolfgang Ulbrich False False - end + end 1 @@ -2515,172 +2568,188 @@ Author: Wolfgang Ulbrich True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK Background 1 - False + False True - False - 12 + False + 12 vertical 18 + True - False - 6 - 12 + False + 6 + 12 True - True - False + True + False True Sans 12 - True + True - 1 - 1 + 1 + 1 True - True - False + True + False True Sans 12 - True + True - 1 - 2 + 1 + 2 True - True - False + True + False True Sans 12 - True + True - 1 - 3 + 1 + 3 True - True - False + True + False True Sans 12 - True + True - 1 - 4 + 1 + 4 True - True - False + True + False True Sans 12 - True + True - 1 - 0 + 1 + 0 True - False + False start _Application font: - True + True right - application_font + application_font - 0 - 0 + 0 + 0 True - False + False start _Document font: - True - document_font + True + document_font - 0 - 1 + 0 + 1 True - False + False start Des_ktop font: - True + True right - desktop_font + desktop_font - 0 - 2 + 0 + 2 True - False + False start _Window title font: - True + True right - window_title_font + window_title_font - 0 - 3 + 0 + 3 True - False + False start _Fixed width font: - True + True right - monospace_font + monospace_font - 0 - 4 + 0 + 4 + + + + + + + + + + + + + + + False @@ -2691,17 +2760,17 @@ Author: Wolfgang Ulbrich True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - end + end Add new f_ont... True - True - False + True + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - True + True False @@ -2719,13 +2788,13 @@ Author: Wolfgang Ulbrich True - False + False vertical 6 True - False + False start Rendering @@ -2741,30 +2810,31 @@ Author: Wolfgang Ulbrich True - False - 12 + False + 12 + True - False - 6 - 12 - True + False + 6 + 12 + True True - False + False vertical 6 Sub_pixel smoothing (LCDs) True - True - False + True + False start - True - True + True + True monochrome_radio @@ -2776,11 +2846,11 @@ Author: Wolfgang Ulbrich True - False + False True - False + False @@ -2792,25 +2862,25 @@ Author: Wolfgang Ulbrich - 1 - 1 + 1 + 1 True - False + False vertical 6 Best _shapes True - True - False + True + False start - True - True + True + True monochrome_radio @@ -2822,11 +2892,11 @@ Author: Wolfgang Ulbrich True - False + False True - False + False @@ -2838,25 +2908,25 @@ Author: Wolfgang Ulbrich - 1 - 0 + 1 + 0 True - False + False vertical 6 _Monochrome True - True - False + True + False start - True - True + True + True False @@ -2867,11 +2937,11 @@ Author: Wolfgang Ulbrich True - False + False True - False + False @@ -2883,25 +2953,25 @@ Author: Wolfgang Ulbrich - 0 - 0 + 0 + 0 True - False + False vertical 6 Best co_ntrast True - True - False + True + False start - True - True + True + True monochrome_radio @@ -2913,11 +2983,11 @@ Author: Wolfgang Ulbrich True - False + False True - False + False @@ -2929,10 +2999,25 @@ Author: Wolfgang Ulbrich - 0 - 1 + 0 + 1 + + + + + + + + + + + + + + + @@ -2952,17 +3037,17 @@ Author: Wolfgang Ulbrich True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - end + end D_etails... True - True - False + True + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - True + True False @@ -2985,32 +3070,32 @@ Author: Wolfgang Ulbrich True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK Fonts 2 - False + False True - False - 12 + False + 12 vertical 18 True - False + False vertical 6 True - False + False start Menus and Toolbars @@ -3026,11 +3111,11 @@ Author: Wolfgang Ulbrich True - False + False True - False + False @@ -3042,19 +3127,19 @@ Author: Wolfgang Ulbrich True - False + False vertical 6 Show _icons in menus True - True - False + True + False start - True + True True - True + True False @@ -3066,11 +3151,11 @@ Author: Wolfgang Ulbrich _Editable menu shortcut keys True - True - False + True + False start - True - True + True + True False @@ -3081,16 +3166,16 @@ Author: Wolfgang Ulbrich True - False + False 12 True - False + False Toolbar _button labels: - True + True center - toolbar_style_select + toolbar_style_select False @@ -3101,7 +3186,7 @@ Author: Wolfgang Ulbrich True - False + False toolbar_style_liststore @@ -3147,13 +3232,13 @@ Author: Wolfgang Ulbrich True - False + False vertical 6 True - False + False start Buttons @@ -3169,11 +3254,11 @@ Author: Wolfgang Ulbrich True - False + False True - False + False @@ -3186,13 +3271,13 @@ Author: Wolfgang Ulbrich Show icons on buttons True - True - False - Whether buttons may display an icon in addition to the button text + True + False + Whether buttons may display an icon in addition to the button text start - True + True True - True + True False @@ -3214,16 +3299,146 @@ Author: Wolfgang Ulbrich 1 + + + True + False + vertical + 6 + + + True + False + start + File Chooser + + + + + + False + False + 0 + + + + + True + False + + + True + False + + + + False + False + 0 + + + + + True + False + vertical + 6 + + + Show hidden items + True + True + False + start + True + True + True + + + False + False + 0 + + + + + Show size column + True + True + False + start + True + True + + + False + False + 1 + + + + + Show type column + True + True + False + start + True + True + + + False + False + 2 + + + + + Sort directories first + True + True + False + start + True + True + + + False + False + 3 + + + + + False + False + 1 + + + + + False + False + 1 + + + + + False + True + 2 + + True - False + False vertical 6 True - False + False start Preview @@ -3239,11 +3454,11 @@ Author: Wolfgang Ulbrich True - False + False True - False + False @@ -3255,76 +3470,76 @@ Author: Wolfgang Ulbrich True - False + False vertical True - False + False True - False + False _File - True + True - False + False gtk-new True - False - True - True + False + True + True gtk-open True - False - True - True + False + True + True gtk-save True - False - True - True + False + True + True True - False + False gtk-print True - False - True - True + False + True + True True - False + False gtk-quit True - False - True - True + False + True + True @@ -3334,37 +3549,37 @@ Author: Wolfgang Ulbrich True - False + False Edit - True + True - False + False gtk-cut True - False - True - True + False + True + True gtk-copy True - False - True - True + False + True + True gtk-paste True - False - True - True + False + True + True @@ -3381,19 +3596,19 @@ Author: Wolfgang Ulbrich True - False + False True - False - both-horiz + False + both-horiz True - False - True + False + True New - document-new + document-new False @@ -3403,8 +3618,8 @@ Author: Wolfgang Ulbrich True - False - document-open + False + document-open False @@ -3414,8 +3629,8 @@ Author: Wolfgang Ulbrich True - False - document-save + False + document-save False @@ -3452,7 +3667,7 @@ Author: Wolfgang Ulbrich False True - 2 + 3 @@ -3463,13 +3678,13 @@ Author: Wolfgang Ulbrich True - False + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK Interface 3 - False + False @@ -3485,8 +3700,5 @@ Author: Wolfgang Ulbrich help_button close_button - - - diff --git a/capplets/appearance/data/ui-a11y.suppr b/capplets/appearance/data/ui-a11y.suppr index ca0f35d9..26741a83 100644 --- a/capplets/appearance/data/ui-a11y.suppr +++ b/capplets/appearance/data/ui-a11y.suppr @@ -37,6 +37,8 @@ appearance.ui://GtkDrawingArea[@id='subpixel_sample'] no-labelled-by appearance.ui://GtkDrawingArea[@id='best_shapes_sample'] no-labelled-by appearance.ui://GtkDrawingArea[@id='monochrome_sample'] no-labelled-by appearance.ui://GtkDrawingArea[@id='best_contrast_sample'] no-labelled-by +appearance.ui://GtkLabel[@id='label5'] orphan-label +appearance.ui://GtkLabel[@id='label14'] orphan-label appearance.ui://GtkLabel[@id='label35'] orphan-label appearance.ui://GtkLabel[@id='label36'] orphan-label appearance.ui://GtkLabel[@id='label52'] orphan-label -- cgit v1.2.1