From 53996fb55905d1a25df383b4ce12e64c572b58db Mon Sep 17 00:00:00 2001 From: Peter Williams Date: Mon, 16 Jul 2001 18:32:10 +0000 Subject: Use our own display_style member instead of the global setting. 2001-07-16 Peter Williams * mail-display.c (mail_display_redisplay): Use our own display_style member instead of the global setting. (mail_display_init): Initialize display_style. * mail-display.h: Include "mail-config.h" and add a display_style member. * mail-format.c (write_headers): Look at the MailDisplay's display_style instead of using the full_headers data. * folder-browser.c (folder_browser_set_message_display_style): Set the MailDisplay's display style as well as the global display style. (my_folder_browser_init): Don't save preference changes by default. (This is only observered wrt. the message display style but should apply to other items.) * folder-browser-factory.c (folder_browser_factory_new_control): Set this FB to save the preferences set in it. * folder-browser-ui.c (folder_browser_ui_add_message): Read our display's state instead of the global setting. svn path=/trunk/; revision=11131 --- mail/mail-display.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mail/mail-display.h') diff --git a/mail/mail-display.h b/mail/mail-display.h index 92797438c9..b08fa12927 100644 --- a/mail/mail-display.h +++ b/mail/mail-display.h @@ -13,6 +13,7 @@ #include #include "mail-types.h" +#include "mail-config.h" /*display_style*/ #define MAIL_DISPLAY_TYPE (mail_display_get_type ()) #define MAIL_DISPLAY(o) (GTK_CHECK_CAST ((o), MAIL_DISPLAY_TYPE, MailDisplay)) @@ -37,6 +38,8 @@ struct _MailDisplay { /* Sigh. This shouldn't be needed. I haven't figured out why it is though. */ GtkWidget *invisible; + + MailConfigDisplayStyle display_style; }; typedef struct { -- cgit v1.2.3