diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-09-21 06:03:42 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-09-21 06:03:42 +0800 |
commit | 342040b71cae4e70b8532fe92505ee560fcaee86 (patch) | |
tree | 7bd5d77de9320e318a9e245648c8ea0921cdc5ec | |
parent | 182f312858a77c5338c3839e6a29b111d6356691 (diff) | |
download | gsoc2013-evolution-342040b71cae4e70b8532fe92505ee560fcaee86.tar gsoc2013-evolution-342040b71cae4e70b8532fe92505ee560fcaee86.tar.gz gsoc2013-evolution-342040b71cae4e70b8532fe92505ee560fcaee86.tar.bz2 gsoc2013-evolution-342040b71cae4e70b8532fe92505ee560fcaee86.tar.lz gsoc2013-evolution-342040b71cae4e70b8532fe92505ee560fcaee86.tar.xz gsoc2013-evolution-342040b71cae4e70b8532fe92505ee560fcaee86.tar.zst gsoc2013-evolution-342040b71cae4e70b8532fe92505ee560fcaee86.zip |
Connect signal handlers to the GtkHTML preferences so that when the
2002-09-20 Jeffrey Stedfast <fejj@ximian.com>
* 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
-rw-r--r-- | mail/ChangeLog | 8 | ||||
-rw-r--r-- | 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 <fejj@ximian.com> + + * 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 <fejj@ximian.com> * 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", |