From 68a731e0a02290edf039d419bc36582023624726 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Tue, 20 Mar 2001 04:48:59 +0000 Subject: Bumped gal requirement to 0.5.99.8. 2001-03-19 Christopher James Lahey * configure.in: Bumped gal requirement to 0.5.99.8. From addressbook/ChangeLog: 2001-03-19 Christopher James Lahey * Merged branch: 2001-03-14 Christopher James Lahey * gui/widgets/e-minicard-view.c: Call e_selection_model_simple_insert_rows and e_selection_model_simple_delete_rows instead of e_selection_model_simple_insert_row and e_selection_model_simple_delete_row. End of branch From mail/ChangeLog: 2001-03-19 Christopher James Lahey * Merged e-tree-rework-branch: 2001-03-18 Christopher James Lahey * message-list.c: Added has_save_id and get_save_id methods. * subscribe-dialog.c: Added arguments for e_tree_memory_callbacks_new of get_save_id and has_save_id to NULL. 2001-03-16 Christopher James Lahey * message-list.c: Added a call to e_tree_memory_set_expanded_default to TRUE. Removed all calls to set_expanded on nodes while the tree is frozen since this fails miserably now. 2001-03-13 Christopher James Lahey * message-list.c (message_list_get_layout): Turned off draw-grid. 2001-03-09 Christopher James Lahey * folder-browser-factory.c, folder-browser.c, message-list.c, message-list.h, subscribe-dialog.c, subscribe-dialog.h, mail-callbacks.c: Converted these all to use ETree instead of ETable. End of branch From shell/ChangeLog: 2001-03-19 Christopher James Lahey * Merged e-tree-rework-branch: 2001-03-19 Christopher James Lahey * e-storage-set-view.c (etree_get_save_id): Made "root" detection deal properly with removed nodes. 2001-03-18 Christopher James Lahey * e-shell-view.c (e_shell_view_save_settings): Added some unused code to implement saving of the expanded state. * e-storage-set-view.c: Added has_save_id and get_save_id methods. 2001-03-13 Christopher James Lahey * e-storage-set-view.c (ETREE_SPEC): Set draw-grid here to false. 2001-03-09 Christopher James Lahey * e-storage-set-view.c, e-storage-set-view.h: Chaned this to use ETree instead of ETable. End of branch svn path=/trunk/; revision=8839 --- mail/message-list.h | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) (limited to 'mail/message-list.h') diff --git a/mail/message-list.h b/mail/message-list.h index cd26c2cfef..46739ee519 100644 --- a/mail/message-list.h +++ b/mail/message-list.h @@ -6,9 +6,8 @@ #include #include "mail-types.h" -#include -#include -#include +#include +#include #define MESSAGE_LIST_TYPE (message_list_get_type ()) #define MESSAGE_LIST(o) (GTK_CHECK_CAST ((o), MESSAGE_LIST_TYPE, MessageList)) @@ -45,12 +44,12 @@ enum { #define ML_HIDE_SAME (2147483646) struct _MessageList { - ETableScrolled parent; + ETreeScrolled parent; /* The table */ - ETableModel *table_model; - ETable *table; - ETreePath *tree_root; + ETreeModel *model; + ETree *tree; + ETreePath tree_root; /* The folder */ CamelFolder *folder; @@ -70,7 +69,7 @@ struct _MessageList { /* Are we displaying threaded view? */ gboolean threaded; - /* Where the ETable cursor is. */ + /* Where the ETree cursor is. */ int cursor_row; char *cursor_uid; @@ -82,7 +81,7 @@ struct _MessageList { }; typedef struct { - ETableScrolledClass parent_class; + ETreeScrolledClass parent_class; /* signals - select a message */ void (*message_selected) (MessageList *ml, const char *uid); -- cgit v1.2.3