From 8a79c51358e4488619712344a2afa4fa995125d0 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Thu, 11 Jan 2007 13:05:13 +0000 Subject: [PATCH] Fix spacings and just build the whole dialogue from glade, not just the 2007-01-11 Christian Persch * capplets/sound/Makefile.am: * capplets/sound/sound-properties-capplet.c: (create_dialog), (dialog_response_cb), (main): * capplets/sound/sound-properties.glade: Fix spacings and just build the whole dialogue from glade, not just the main part. Bug #394068. svn path=/trunk/; revision=7131 --- ChangeLog | 9 + capplets/sound/Makefile.am | 2 +- capplets/sound/sound-properties-capplet.c | 67 +- capplets/sound/sound-properties.glade | 2553 +++++++++++---------- 4 files changed, 1359 insertions(+), 1272 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1edc1ff70..95e5d0925 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2007-01-11 Christian Persch + + * capplets/sound/Makefile.am: + * capplets/sound/sound-properties-capplet.c: (create_dialog), + (dialog_response_cb), (main): + * capplets/sound/sound-properties.glade: + Fix spacings and just build the whole dialogue from glade, not just + the main part. Bug #394068. + 2007-01-09 Thomas Wood * Makefile.am: Fix for distcheck diff --git a/capplets/sound/Makefile.am b/capplets/sound/Makefile.am index 929b38d20..f2f0dcc3a 100644 --- a/capplets/sound/Makefile.am +++ b/capplets/sound/Makefile.am @@ -19,6 +19,6 @@ desktopdir = $(datadir)/applications Desktop_in_files = gnome-settings-sound.desktop.in desktop_DATA = $(Desktop_in_files:.desktop.in=.desktop) -INCLUDES = $(GNOMECC_CAPPLETS_CFLAGS) $(SOUND_CAPPLET_CFLAGS) $(HAL_CFLAGS) +INCLUDES = $(GNOMECC_CAPPLETS_CFLAGS) $(SOUND_CAPPLET_CFLAGS) $(HAL_CFLAGS) -DGNOMELOCALEDIR="\"$(datadir)/locale\"" CLEANFILES = $(GNOMECC_CAPPLETS_CLEANFILES) $(Desktop_in_files) $(desktop_DATA) EXTRA_DIST = $(Glade_DATA) $(desktop_icons_DATA) diff --git a/capplets/sound/sound-properties-capplet.c b/capplets/sound/sound-properties-capplet.c index 77721ed50..488484208 100644 --- a/capplets/sound/sound-properties-capplet.c +++ b/capplets/sound/sound-properties-capplet.c @@ -156,20 +156,14 @@ bell_flash_to_widget (GConfPropertyEditor *peditor, const GConfValue *value) return new_value; } -/* create_dialog - * - * Create the dialog box and return it as a GtkWidget - */ - static GladeXML * create_dialog (void) { GladeXML *dialog; GtkWidget *widget, *box; - dialog = glade_xml_new (GNOMECC_DATA_DIR "/interfaces/sound-properties.glade", "prefs_widget", NULL); - widget = glade_xml_get_widget (dialog, "prefs_widget"); - g_object_set_data (G_OBJECT (widget), "glade-data", dialog); + dialog = glade_xml_new (GNOMECC_DATA_DIR "/interfaces/sound-properties.glade", "sound_prefs_dialog", NULL); + widget = glade_xml_get_widget (dialog, "sound_prefs_dialog"); props = sound_properties_new (); sound_properties_add_defaults (props, NULL); @@ -185,14 +179,8 @@ create_dialog (void) gtk_image_set_from_file (GTK_IMAGE (WID ("bell_image")), GNOMECC_DATA_DIR "/pixmaps/visual-bell.png"); - gtk_widget_set_size_request (widget, 475, -1); - if (!CheckXKB()) { - GtkWidget *audible_bell_option = WID ("bell_audible_toggle"); - GtkWidget *visual_bell_option = WID ("bell_visual_toggle"); - - gtk_widget_set_sensitive (audible_bell_option, FALSE); - gtk_widget_set_sensitive (visual_bell_option, FALSE); + gtk_widget_set_sensitive (WID ("bell_flash_alignment"), FALSE); } return dialog; @@ -995,14 +983,16 @@ get_legacy_settings (void) } static void -dialog_button_clicked_cb (GtkDialog *dialog, gint response_id, GConfChangeSet *changeset) +dialog_response_cb (GtkWidget *dialog, gint response_id, GConfChangeSet *changeset) { - if (response_id == GTK_RESPONSE_HELP) + if (response_id == GTK_RESPONSE_HELP) { capplet_help (GTK_WINDOW (dialog), "user-guide.xml", "goscustmulti-2"); - else - gtk_main_quit (); + return; + } + + gtk_widget_destroy (dialog); } int @@ -1010,11 +1000,11 @@ main (int argc, char **argv) { GConfChangeSet *changeset; GladeXML *dialog = NULL; + GnomeProgram *program; GOptionContext *context; - - static gboolean apply_only; - static gboolean get_legacy; - static GOptionEntry cap_options[] = { + gboolean apply_only = FALSE; + gboolean get_legacy = FALSE; + GOptionEntry cap_options[] = { { "apply", 0, 0, G_OPTION_ARG_NONE, &apply_only, N_("Just apply settings and quit (compatibility only; now handled by daemon)"), NULL }, { "init-session-settings", 0, 0, G_OPTION_ARG_NONE, &apply_only, @@ -1030,13 +1020,12 @@ main (int argc, char **argv) context = g_option_context_new (_("- GNOME Sound Preferences")); g_option_context_add_main_entries (context, cap_options, GETTEXT_PACKAGE); + g_option_context_add_group (context, gst_init_get_option_group ()); - gnome_program_init ("gnome-sound-properties", VERSION, - LIBGNOMEUI_MODULE, argc, argv, - GNOME_PARAM_GOPTION_CONTEXT, context, - NULL); - - gst_init (&argc, &argv); + program = gnome_program_init ("gnome-sound-properties", VERSION, + LIBGNOMEUI_MODULE, argc, argv, + GNOME_PARAM_GOPTION_CONTEXT, context, + NULL); activate_settings_daemon (); @@ -1052,25 +1041,19 @@ main (int argc, char **argv) setup_dialog (dialog, changeset); setup_devices (); - dialog_win = gtk_dialog_new_with_buttons - (_("Sound Preferences"), NULL, GTK_DIALOG_NO_SEPARATOR, - GTK_STOCK_HELP, GTK_RESPONSE_HELP, - GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE, - NULL); - - gtk_container_set_border_width (GTK_CONTAINER (dialog_win), 5); - gtk_box_set_spacing (GTK_BOX (GTK_DIALOG(dialog_win)->vbox), 2); - gtk_dialog_set_default_response (GTK_DIALOG (dialog_win), GTK_RESPONSE_CLOSE); - g_signal_connect (G_OBJECT (dialog_win), "response", (GCallback) dialog_button_clicked_cb, changeset); - gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog_win)->vbox), WID ("prefs_widget"), TRUE, TRUE, 0); + dialog_win = WID ("sound_prefs_dialog"); + g_signal_connect (dialog_win, "response", G_CALLBACK (dialog_response_cb), changeset); + g_signal_connect (dialog_win, "destroy", G_CALLBACK (gtk_main_quit), NULL); capplet_set_icon (dialog_win, "gnome-settings-sound"); - gtk_widget_show_all (dialog_win); + gtk_widget_show (dialog_win); gtk_main (); gconf_change_set_unref (changeset); + g_object_unref (dialog); } g_object_unref (gconf_client); - g_object_unref (dialog); + g_object_unref (program); + return 0; } diff --git a/capplets/sound/sound-properties.glade b/capplets/sound/sound-properties.glade index b4ef03546..1fbce588d 100644 --- a/capplets/sound/sound-properties.glade +++ b/capplets/sound/sound-properties.glade @@ -4,1231 +4,6 @@ - - 5 - Sound & Video Preferences - GTK_WINDOW_TOPLEVEL - GTK_WIN_POS_NONE - False - True - False - True - False - False - GDK_WINDOW_TYPE_HINT_NORMAL - GDK_GRAVITY_NORTH_WEST - True - False - - - - 5 - True - True - True - True - GTK_POS_TOP - False - False - - - - 12 - True - False - 18 - - - - True - False - 6 - - - - True - <b>Sound Events</b> - False - True - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - - True - False - 6 - - - - True - - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - - True - _Sound Playback: - True - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - sounds_playback_device - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - - True - False - True - - - 0 - True - True - - - - - - True - True - GTK_RELIEF_NORMAL - True - - - - True - 0.5 - 0.5 - 0 - 0 - 0 - 0 - 0 - 0 - - - - True - False - 2 - - - - True - gtk-apply - 4 - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - - True - Test - True - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - - - - - 0 - False - False - - - - - 0 - False - False - - - - - 0 - False - False - - - - - - True - False - 6 - - - - True - <b>Music and Movies</b> - False - True - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - - True - False - 6 - - - - True - - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - - True - S_ound Playback: - True - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - music_playback_device - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - - True - False - True - - - 0 - True - True - - - - - - True - True - GTK_RELIEF_NORMAL - True - - - - True - 0.5 - 0.5 - 0 - 0 - 0 - 0 - 0 - 0 - - - - True - False - 2 - - - - True - gtk-apply - 4 - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - - True - Test - True - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - - - - - 0 - False - False - - - - - 0 - False - False - - - - - 0 - False - False - - - - - - True - False - 6 - - - - True - <b>Audio Conferencing</b> - False - True - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - - True - False - 6 - - - - True - - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - - True - So_und Playback: - True - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - chat_audio_playback_device - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - - True - False - True - - - 0 - True - True - - - - - - True - True - GTK_RELIEF_NORMAL - True - - - - True - 0.5 - 0.5 - 0 - 0 - 0 - 0 - 0 - 0 - - - - True - False - 2 - - - - True - gtk-apply - 4 - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - - True - Test - True - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - - - - - 0 - False - False - - - - - 0 - False - False - - - - - - True - False - 6 - - - - True - - False - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - - True - Sound _Capture: - True - False - GTK_JUSTIFY_LEFT - False - False - 0 - 0.5 - 0 - 0 - chat_audio_capture_device - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - - True - False - True - - - 0 - True - True - - - - - - True - True - GTK_RELIEF_NORMAL - True - - - - True - 0.5 - 0.5 - 0 - 0 - 0 - 0 - 0 - 0 - - - - True - False - 2 - - - - True - gtk-apply - 4 - 0.5 - 0.5 - 0 - 0 - - - 0 - False - False - - - - - - True - Test - True - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - 0 - False - False - - - - - - - - - 0 - False - False - - - - - 0 - False - False - - - - - 0 - False - False - - - - - True - 6 - - - True - 0.000000 - <b>Default Mixer Tracks</b> - True - - - False - False - - - - - True - 6 - - - True - 0.000000 - - - - False - False - - - - - True - 0.000000 - Device: - - - False - False - 1 - - - - - True - - - 2 - - - - - False - False - 1 - - - - - True - 6 - - - True - 0.000000 - - - - False - False - - - - - True - GTK_POLICY_AUTOMATIC - GTK_POLICY_AUTOMATIC - - - True - False - - - - - 1 - - - - - False - False - 2 - - - - - True - 6 - - - True - 0.000000 - - - - False - False - - - - - True - 0.000000 - Select the device and tracks to control with the keyboard. Use the Shift and Control keys to select multiple tracks if required. - True - True - - - 1 - - - - - False - False - 3 - - - - - False - False - 3 - - - - - False - True - - - - - - True - Devices - False - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - tab - - - - - - 12 - True - False - 6 - - - - True - True - E_nable software sound mixing (ESD) - True - GTK_RELIEF_NORMAL - True - False - False - True - - - - 0 - False - False - - - - - - True - True - _Play system sounds - True - GTK_RELIEF_NORMAL - True - False - False - True - - - - 0 - False - False - - - - - - True - 0.5 - 0.5 - 1 - 1 - 12 - 0 - 0 - 0 - - - - True - False - 0 - - - - - - - - - 0 - True - True - - - - - False - True - - - - - - True - Sounds - True - False - GTK_JUSTIFY_CENTER - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - tab - - - - - - True - False - 0 - - - - 12 - True - False - 12 - - - - True - 0.5 - 0 - 0 - 0 - - - 0 - False - True - - - - - - True - False - 6 - - - - True - True - _Enable system beep - True - GTK_RELIEF_NORMAL - True - True - False - True - - - 0 - False - False - - - - - - True - True - _Visual system beep - True - GTK_RELIEF_NORMAL - True - False - False - True - - - 0 - False - False - - - - - - True - 0.5 - 0.5 - 1 - 1 - 0 - 0 - 20 - 0 - - - - True - False - 6 - - - - True - True - Flash _window titlebar - True - GTK_RELIEF_NORMAL - True - False - False - True - - - 0 - False - False - - - - - - True - True - Flash _entire screen - True - GTK_RELIEF_NORMAL - True - False - False - True - bell_flash_window_radio - - - 0 - False - False - - - - - - - 0 - True - True - - - - - 0 - True - True - - - - - 0 - True - True - - - - - False - True - - - - - - True - System Beep - False - False - GTK_JUSTIFY_LEFT - False - False - 0.5 - 0.5 - 0 - 0 - PANGO_ELLIPSIZE_NONE - -1 - False - 0 - - - tab - - - - - - 5 True @@ -1297,7 +72,7 @@ False False 0 - 0.5 + 0 0 0 PANGO_ELLIPSIZE_NONE @@ -1316,8 +91,8 @@ True GTK_PROGRESS_LEFT_TO_RIGHT - 0.10000000149 - 0.0500000007451 + 0 + 0 PANGO_ELLIPSIZE_NONE @@ -1337,7 +112,7 @@ False False 0 - 0.5 + 0 0 0 PANGO_ELLIPSIZE_NONE @@ -1362,4 +137,1324 @@ + + 5 + Sound Preferences + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + 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-help + True + GTK_RELIEF_NORMAL + True + -11 + + + + + + True + True + True + gtk-close + True + GTK_RELIEF_NORMAL + True + -7 + + + + + 0 + False + True + GTK_PACK_END + + + + + + 5 + True + True + True + True + GTK_POS_TOP + False + False + + + + 12 + True + False + 18 + + + + True + False + 6 + + + + True + <b>Sound Events</b> + False + True + GTK_JUSTIFY_LEFT + False + False + 0 + 0 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + 0 + 0 + 1 + 1 + 0 + 0 + 12 + 0 + + + + True + False + 12 + + + + True + _Sound playback: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0 + 0 + 0 + sounds_playback_device + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + False + 6 + + + + True + False + True + + + 0 + True + True + + + + + + True + True + GTK_RELIEF_NORMAL + True + + + + True + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + + + True + False + 2 + + + + True + gtk-apply + 4 + 0 + 0 + 0 + 0 + + + 0 + False + False + + + + + + True + Test + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + + + + 0 + False + False + + + + + 0 + True + True + + + + + + + 0 + False + False + + + + + 0 + False + False + + + + + + True + False + 6 + + + + True + <b>Music and Movies</b> + False + True + GTK_JUSTIFY_LEFT + False + False + 0 + 0 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + 0 + 0 + 1 + 1 + 0 + 0 + 12 + 0 + + + + True + False + 12 + + + + True + S_ound playback: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0 + 0 + 0 + music_playback_device + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + False + 6 + + + + True + False + True + + + 0 + True + True + + + + + + True + True + GTK_RELIEF_NORMAL + True + + + + True + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + + + True + False + 2 + + + + True + gtk-apply + 4 + 0 + 0 + 0 + 0 + + + 0 + False + False + + + + + + True + Test + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + + + + 0 + False + False + + + + + 0 + True + True + + + + + + + 0 + False + False + + + + + 0 + False + False + + + + + + True + False + 6 + + + + True + <b>Audio Conferencing</b> + False + True + GTK_JUSTIFY_LEFT + False + False + 0 + 0 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + 0 + 0 + 1 + 1 + 0 + 0 + 12 + 0 + + + + True + False + 6 + + + + True + False + 12 + + + + True + So_und playback: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0 + 0 + 0 + chat_audio_playback_device + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + False + 6 + + + + True + False + True + + + 0 + True + True + + + + + + True + True + GTK_RELIEF_NORMAL + True + + + + True + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + + + True + False + 2 + + + + True + gtk-apply + 4 + 0 + 0 + 0 + 0 + + + 0 + False + False + + + + + + True + Test + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + + + + 0 + False + False + + + + + 0 + True + True + + + + + 0 + True + True + + + + + + True + False + 12 + + + + True + Sou_nd capture: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0 + 0 + 0 + chat_audio_capture_device + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + False + 6 + + + + True + False + True + + + 0 + True + True + + + + + + True + True + GTK_RELIEF_NORMAL + True + + + + True + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + + + + True + False + 2 + + + + True + gtk-apply + 4 + 0 + 0 + 0 + 0 + + + 0 + False + False + + + + + + True + Test + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + + + + 0 + False + False + + + + + 0 + True + True + + + + + 0 + True + True + + + + + + + 0 + True + True + + + + + 0 + False + False + + + + + + True + False + 6 + + + + True + <b>Default Mixer Tracks</b> + False + True + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + 0.5 + 0.5 + 1 + 1 + 0 + 0 + 12 + 0 + + + + True + False + 6 + + + + True + False + 12 + + + + True + _Device: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + mixer_device + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + False + True + + + 0 + True + True + + + + + 0 + False + False + + + + + + True + GTK_POLICY_AUTOMATIC + GTK_POLICY_AUTOMATIC + GTK_SHADOW_IN + GTK_CORNER_TOP_LEFT + + + + True + False + False + False + True + False + False + False + + + + + 0 + True + True + + + + + + True + Select the device and tracks to control with the keyboard. Use the Shift and Control keys to select multiple tracks if required. + False + True + GTK_JUSTIFY_LEFT + True + False + 0 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + + 0 + True + True + + + + + 0 + True + True + + + + + False + True + + + + + + True + Devices + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + tab + + + + + + 12 + True + False + 6 + + + + True + True + E_nable software sound mixing (ESD) + True + GTK_RELIEF_NORMAL + True + False + False + True + + + + 0 + False + False + + + + + + True + True + _Play system sounds + True + GTK_RELIEF_NORMAL + True + False + False + True + + + + 0 + False + False + + + + + + True + 0 + 0 + 1 + 1 + 12 + 0 + 0 + 0 + + + + True + False + 0 + + + + + + + + + 0 + True + True + + + + + False + True + + + + + + True + Sounds + True + False + GTK_JUSTIFY_CENTER + False + False + 0 + 0 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + tab + + + + + + True + False + 0 + + + + 12 + True + False + 12 + + + + True + gtk-missing-image + 4 + 0 + 0 + 0 + 0 + + + 0 + False + True + + + + + + True + False + 6 + + + + True + True + _Enable system beep + True + GTK_RELIEF_NORMAL + True + True + False + True + + + 0 + False + False + + + + + + True + True + _Visual system beep + True + GTK_RELIEF_NORMAL + True + False + False + True + + + 0 + False + False + + + + + + True + 0 + 0 + 1 + 1 + 0 + 0 + 12 + 0 + + + + True + False + 6 + + + + True + True + Flash _window titlebar + True + GTK_RELIEF_NORMAL + True + False + False + True + + + 0 + False + False + + + + + + True + True + Flash _entire screen + True + GTK_RELIEF_NORMAL + True + False + False + True + bell_flash_window_radio + + + 0 + False + False + + + + + + + 0 + True + True + + + + + 0 + True + True + + + + + 0 + True + True + + + + + False + True + + + + + + True + System Beep + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + tab + + + + + 0 + True + True + + + + + +