aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-folder-view.h
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-05-05 21:28:03 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-05-05 21:28:03 +0800
commit6cb88a7819367f8ece5b563a2910571d3c46f77e (patch)
treef0e65c5b29f03df042d276ae5ee2f9a14c0935c3 /mail/em-folder-view.h
parent8eef58bfe428505bc48fe4a2df67d81d04516526 (diff)
downloadgsoc2013-evolution-6cb88a7819367f8ece5b563a2910571d3c46f77e.tar
gsoc2013-evolution-6cb88a7819367f8ece5b563a2910571d3c46f77e.tar.gz
gsoc2013-evolution-6cb88a7819367f8ece5b563a2910571d3c46f77e.tar.bz2
gsoc2013-evolution-6cb88a7819367f8ece5b563a2910571d3c46f77e.tar.lz
gsoc2013-evolution-6cb88a7819367f8ece5b563a2910571d3c46f77e.tar.xz
gsoc2013-evolution-6cb88a7819367f8ece5b563a2910571d3c46f77e.tar.zst
gsoc2013-evolution-6cb88a7819367f8ece5b563a2910571d3c46f77e.zip
** See bug #57720.
2004-05-05 Not Zed <NotZed@Ximian.com> ** See bug #57720. * em-folder-browser.c (emfb_create_view_menus): removed some stuff done in create_view_instance in the superclass. * em-folder-view.c (emfv_create_view_instance): moved here from em-folder-browser, setup the view instance for the folder. (emfv_set_folder): if the folder is set, create the view instance. * em-folder-browser.c: moved the galview instance and menu pointers to EMFolderView, since they're basically meta-data on the messagelist @ to fix issues. * em-folder-view.c (em_folder_view_open_selected): copy over the threaded list value when the message browser is brought up. ** some clean up * evolution-mail.schemas.in.in: removed xmailer_mask stuff. * em-migrate.c (mail_display_map[]): Removed xmailer_mask stuff. * em-folder-view.c (emfv_setting_notify): removed xmailer_mask stuff. * em-format-html.c (em_format_html_set_xmailer_mask): removed. This isn't used anymore. ** Fixes the double-draw on separate mail view. * message-list.c (on_cursor_activated_cmd): noop if the cursor and uid match for all cases (clearing uid). (on_selection_changed_cmd): noop if the cursor and new selection hasn't changed & fix a memleak. svn path=/trunk/; revision=25806
Diffstat (limited to 'mail/em-folder-view.h')
-rw-r--r--mail/em-folder-view.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/mail/em-folder-view.h b/mail/em-folder-view.h
index 23bed7b715..4918814e4b 100644
--- a/mail/em-folder-view.h
+++ b/mail/em-folder-view.h
@@ -32,6 +32,9 @@ extern "C" {
#pragma }
#endif /* __cplusplus */
+/* @#$@#$Q@#$@Q!EQ#@$!~!!! GAL, defines its structs anonymously so we need to include this directly, sigh */
+#include <gal/menus/gal-view-instance.h>
+
struct _MessageList;
struct _EMFormatHTMLDisplay;
struct _CamelFolder;
@@ -61,6 +64,8 @@ struct _EMFolderView {
struct _EMFolderViewPrivate *priv;
struct _MessageList *list;
+ GalViewInstance *view_instance;
+
struct _EMFormatHTMLDisplay *preview;
struct _CamelFolder *folder;
@@ -125,7 +130,7 @@ int em_folder_view_print(EMFolderView *emfv, int preview);
/* this could be on message-list */
guint32 em_folder_view_disable_mask(EMFolderView *emfv);
-void em_folder_view_set_statusbar (EMFolderView *emfv, gboolean statusbar);
+void em_folder_view_set_statusbar(EMFolderView *emfv, gboolean statusbar);
void em_folder_view_set_hide_deleted(EMFolderView *emfv, gboolean status);
#ifdef __cplusplus