From 342040b71cae4e70b8532fe92505ee560fcaee86 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Fri, 20 Sep 2002 22:03:42 +0000 Subject: Connect signal handlers to the GtkHTML preferences so that when the 2002-09-20 Jeffrey Stedfast * mail-preferences.c (mail_preferences_construct): Connect signal handlers to the GtkHTML preferences so that when the widgets change we can update the OK/Apply buttons. Also removed the omenuShortcutsType widget reference since this was not being used? Fixes bug #30731. svn path=/trunk/; revision=18147 --- mail/ChangeLog | 8 ++++++++ mail/mail-preferences.c | 20 +++++++++++++------- 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index beaa57c795..4d2dd13264 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,11 @@ +2002-09-20 Jeffrey Stedfast + + * mail-preferences.c (mail_preferences_construct): Connect signal + handlers to the GtkHTML preferences so that when the widgets + change we can update the OK/Apply buttons. Also removed the + omenuShortcutsType widget reference since this was not being used? + Fixes bug #30731. + 2002-09-19 Jeffrey Stedfast * mail-callbacks.c (do_edit_messages): Unset the changed bit on diff --git a/mail/mail-preferences.c b/mail/mail-preferences.c index 06b11d2cee..7fab3c1567 100644 --- a/mail/mail-preferences.c +++ b/mail/mail-preferences.c @@ -189,15 +189,16 @@ option_menu_connect (GtkOptionMenu *omenu, gpointer user_data) static void mail_preferences_construct (MailPreferences *prefs) { - GtkWidget *toplevel, *menu; + GtkWidget *widget, *toplevel, *menu; const char *text; GladeXML *gui; int i; - char *names[][2] = {{"anim_check", "chkShowAnimatedImages"}, - {"magic_check", "chkAutoDetectLinks"}, - {"gtk_html_prop_keymap_option", "omenuShortcutsType"}, - {NULL, NULL}}; - + char *names[][2] = { + { "anim_check", "chkShowAnimatedImages" }, + { "magic_check", "chkAutoDetectLinks" }, + { NULL, NULL } + }; + gui = glade_xml_new (EVOLUTION_GLADEDIR "/mail-config.glade", "preferences_tab"); prefs->gui = gui; @@ -297,7 +298,12 @@ mail_preferences_construct (MailPreferences *prefs) gtk_html_propmanager_set_names (prefs->pman, names); gtk_html_propmanager_set_gui (prefs->pman, gui, NULL); - + for (i = 0; names[i][0] != NULL; i++) { + widget = glade_xml_get_widget (gui, names[i][1]); + gtk_signal_connect (GTK_OBJECT (widget), "toggled", + toggle_button_toggled, prefs); + } + prefs->prompt_unwanted_html = GTK_TOGGLE_BUTTON (glade_xml_get_widget (gui, "chkPromptWantHTML")); gtk_toggle_button_set_active (prefs->prompt_unwanted_html, mail_config_get_confirm_unwanted_html ()); gtk_signal_connect (GTK_OBJECT (prefs->prompt_unwanted_html), "toggled", -- cgit v1.2.3