diff options
author | Jeffrey Stedfast <fejj@helixcode.com> | 2000-09-19 07:35:04 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2000-09-19 07:35:04 +0800 |
commit | 633260a8fcd44ad6771ed77b7300a36da7d38c19 (patch) | |
tree | 665accc6ed604d73f432756bc36d22779c212d91 /mail/message-list.h | |
parent | 635f31e410676a42bd3f0cf3c1571dd2cf156f28 (diff) | |
download | gsoc2013-evolution-633260a8fcd44ad6771ed77b7300a36da7d38c19.tar.gz gsoc2013-evolution-633260a8fcd44ad6771ed77b7300a36da7d38c19.tar.zst gsoc2013-evolution-633260a8fcd44ad6771ed77b7300a36da7d38c19.zip |
Removed COL_ONLINE_STATUS because we don't want that. Renamed COL_PRIORITY
2000-09-18 Jeffrey Stedfast <fejj@helixcode.com>
* message-list.c: Removed COL_ONLINE_STATUS because we don't want
that. Renamed COL_PRIORITY to COL_SCORE and set it up to sort-of
work, I'm not really sure which renderer I should use.
svn path=/trunk/; revision=5493
Diffstat (limited to 'mail/message-list.h')
-rw-r--r-- | mail/message-list.h | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/mail/message-list.h b/mail/message-list.h index d6392ed3f9..e65a06b327 100644 --- a/mail/message-list.h +++ b/mail/message-list.h @@ -27,9 +27,8 @@ typedef struct _Renderer Renderer; enum { - COL_ONLINE_STATUS, COL_MESSAGE_STATUS, - COL_PRIORITY, + COL_SCORE, COL_ATTACHMENT, COL_FROM, COL_SUBJECT, @@ -37,9 +36,9 @@ enum { COL_RECEIVED, COL_TO, COL_SIZE, - + COL_LAST, - + /* Invisible columns */ COL_DELETED, COL_UNREAD, @@ -48,36 +47,36 @@ enum { struct _MessageList { BonoboObject parent; - + /* the folder browser that contains the * this message list */ FolderBrowser *parent_folder_browser; - + ETableModel *table_model; ETableHeader *header_model; ETableCol *table_cols [COL_LAST]; - + ECell *render_text; ECell *render_date; ECell *render_online_status; ECell *render_message_status; - ECell *render_priority; + ECell *render_score; ECell *render_attachment; ECell *render_tree; - + ETreePath *tree_root; /* for tree view */ - + GtkWidget *etable; - + CamelFolder *folder; - + GHashTable *uid_rowmap; - + char *search; /* search string */ - + int cursor_row; const char *cursor_uid; - + /* row-selection and seen-marking timers */ guint idle_id, seen_id; }; |