aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-list.h
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-07-08 05:15:11 +0800
committerDan Winship <danw@src.gnome.org>2000-07-08 05:15:11 +0800
commit2d33aa8a7781502e3d5297409dda389553cc8953 (patch)
tree384a890ee77d9647bbbda9acaad62bab744b7022 /mail/message-list.h
parent4d9bc165b29cad56edb7eea031375002117ea15b (diff)
downloadgsoc2013-evolution-2d33aa8a7781502e3d5297409dda389553cc8953.tar
gsoc2013-evolution-2d33aa8a7781502e3d5297409dda389553cc8953.tar.gz
gsoc2013-evolution-2d33aa8a7781502e3d5297409dda389553cc8953.tar.bz2
gsoc2013-evolution-2d33aa8a7781502e3d5297409dda389553cc8953.tar.lz
gsoc2013-evolution-2d33aa8a7781502e3d5297409dda389553cc8953.tar.xz
gsoc2013-evolution-2d33aa8a7781502e3d5297409dda389553cc8953.tar.zst
gsoc2013-evolution-2d33aa8a7781502e3d5297409dda389553cc8953.zip
Lots of changes. Store uids as node data on the tree nodes and use those
* message-list.c: Lots of changes. Store uids as node data on the tree nodes and use those rather than rows where possible. (The concept of "row" is just getting too complicated.) Get rid of the summary_table, because given a uid we can call camel_folder_get_message_info, which makes more sense than keeping a separate uid->row hash table ourselves. (get_message_info): update (get_message_row): removed (ml_col_cound, ml_row_count, ml_value_at, ml_set_value_at, ml_cell_is_editable, ml_duplicate_value, ml_free_value, ml_initialize_value, ml_value_is_empty, ml_value_to_string): Removed. We always use the tree model now. (message_list_init): Remove the non-tree code. (build_tree): store uids in the tree rather than row numbers, and build the message_list->uid_rowmap to map from uids to rows when needed. (message_list_regenerate): Renamed from _set_search, since it's used to redraw in non-search cases too. (message_changed): Use the uid_rowmap to get a model row number. * message-thread.c (thread_messages): Change the interface on this to work with the new MessageList. * folder-browser.c (search_set, folder_browser_clear_search): s/message_list_set_search/message_list_regenerate/ svn path=/trunk/; revision=3960
Diffstat (limited to 'mail/message-list.h')
-rw-r--r--mail/message-list.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/mail/message-list.h b/mail/message-list.h
index 942436731e..bd4c37f42e 100644
--- a/mail/message-list.h
+++ b/mail/message-list.h
@@ -69,14 +69,9 @@ struct _MessageList {
CamelFolder *folder;
- GPtrArray *summary_table; /* the summary of all messages */
GHashTable *uid_rowmap;
char *search; /* search string */
- /* FIXME: This should use a better format ... */
- GList *matches; /* when a search has been performed ... */
- int match_count;
- GPtrArray *summary_search_cache; /* summary info cache for searches */
int cursor_row, rows_selected;
const char *cursor_uid;
@@ -99,7 +94,7 @@ GtkType message_list_get_type (void);
BonoboObject *message_list_new (FolderBrowser *parent_folder_browser);
void message_list_set_folder (MessageList *message_list,
CamelFolder *camel_folder);
-void message_list_set_search (MessageList *message_list, const char *search);
+void message_list_regenerate (MessageList *message_list, const char *search);
GtkWidget *message_list_get_widget (MessageList *message_list);
void message_list_foreach (MessageList *message_list,