aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-list.h
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@novell.com>2006-01-16 16:18:31 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2006-01-16 16:18:31 +0800
commit16ffb753b859465e7901b4272f01837e98c0865b (patch)
tree888c57409300388360499e3a945982656d6b3564 /mail/message-list.h
parentef3ea1d41b2163f838c205f3c8aee071ffdaafe1 (diff)
downloadgsoc2013-evolution-16ffb753b859465e7901b4272f01837e98c0865b.tar
gsoc2013-evolution-16ffb753b859465e7901b4272f01837e98c0865b.tar.gz
gsoc2013-evolution-16ffb753b859465e7901b4272f01837e98c0865b.tar.bz2
gsoc2013-evolution-16ffb753b859465e7901b4272f01837e98c0865b.tar.lz
gsoc2013-evolution-16ffb753b859465e7901b4272f01837e98c0865b.tar.xz
gsoc2013-evolution-16ffb753b859465e7901b4272f01837e98c0865b.tar.zst
gsoc2013-evolution-16ffb753b859465e7901b4272f01837e98c0865b.zip
** Fixes bug #218570
2006-01-16 Srinivasa Ragavan <sragavan@novell.com> ** Fixes bug #218570 * em-folder-browser.c (emfb_expand_all_threads), (emfb_collapse_all_threads), (emfb_set_folder), (emfb_activate): Added code to handle expande/collapse all and call e-tree for regen of the list. * message-list.c (load_tree_expand_all), (message_list_set_threaded_expand_all), (message_list_set_threaded_collapse_all), (message_list_set_expand_all), (regen_list_regened): Added code to conditionally check for expand/collapse all and save the state after the operation. * message-list.h: Added state variable for expand/collapse all of threads. svn path=/trunk/; revision=31204
Diffstat (limited to 'mail/message-list.h')
-rw-r--r--mail/message-list.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/mail/message-list.h b/mail/message-list.h
index e53fca65db..57f365025b 100644
--- a/mail/message-list.h
+++ b/mail/message-list.h
@@ -114,6 +114,9 @@ struct _MessageList {
/* Are we displaying threaded view? */
guint threaded : 1;
+
+ guint expand_all :1;
+ guint collapse_all :1;
/* do we automatically hide deleted messages? */
guint hidedeleted : 1;