aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-folder-view.h
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-07-28 10:55:52 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-07-28 10:55:52 +0800
commit7d0353e2687bb60018421e2c9c885c9e9794ae7b (patch)
treee8a2ce8d0ab684e668f304e336feb4f0799eb016 /mail/em-folder-view.h
parent7fcf69af0f8a9019d5114a4741ff1bbf3aa9a3dc (diff)
downloadgsoc2013-evolution-7d0353e2687bb60018421e2c9c885c9e9794ae7b.tar
gsoc2013-evolution-7d0353e2687bb60018421e2c9c885c9e9794ae7b.tar.gz
gsoc2013-evolution-7d0353e2687bb60018421e2c9c885c9e9794ae7b.tar.bz2
gsoc2013-evolution-7d0353e2687bb60018421e2c9c885c9e9794ae7b.tar.lz
gsoc2013-evolution-7d0353e2687bb60018421e2c9c885c9e9794ae7b.tar.xz
gsoc2013-evolution-7d0353e2687bb60018421e2c9c885c9e9794ae7b.tar.zst
gsoc2013-evolution-7d0353e2687bb60018421e2c9c885c9e9794ae7b.zip
** See #57972.
2004-07-27 Not Zed <NotZed@Ximian.com> ** See #57972. * message-list.c (search_func): removed. (ml_search_path): new function to just search, not actually change the cursor like e_tree_find does. (message_list_can_select): new function, returns true if the selection specified is possible without changing the selection. (message_list_select): rewritten. (select_path): helper to select a path in a way that 'works reliably'. (message_list_select_next_thread): rewritten to use the table-adapter, so it properly handles arbitrary sorting. * em-folder-view.c (em_folder_view_get_popup_target): setup next/prev flags as appropriate. (emfv_enable_map[]): setup next/prev flags. * em-folder-view.h: added last and first message status bits to folder view select mask. svn path=/trunk/; revision=26749
Diffstat (limited to 'mail/em-folder-view.h')
-rw-r--r--mail/em-folder-view.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/em-folder-view.h b/mail/em-folder-view.h
index 279e9ab0ea..3cf9586bb4 100644
--- a/mail/em-folder-view.h
+++ b/mail/em-folder-view.h
@@ -47,7 +47,9 @@ typedef struct _EMFolderViewEnable EMFolderViewEnable;
enum {
EM_FOLDER_VIEW_SELECT_THREADED = EM_POPUP_SELECT_LAST,
EM_FOLDER_VIEW_SELECT_HIDDEN = EM_POPUP_SELECT_LAST<<1,
- EM_FOLDER_VIEW_SELECT_LAST = EM_POPUP_SELECT_LAST<<2,
+ EM_FOLDER_VIEW_SELECT_NEXT_MSG = EM_POPUP_SELECT_LAST<<2,
+ EM_FOLDER_VIEW_SELECT_PREV_MSG = EM_POPUP_SELECT_LAST<<3,
+ EM_FOLDER_VIEW_SELECT_LAST = EM_POPUP_SELECT_LAST<<4,
};
struct _EMFolderViewEnable {