aboutsummaryrefslogtreecommitdiff
path: root/src/summaryview.h
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-01-17 08:17:41 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-01-17 08:17:41 +0000
commit186fb3f95f60797959a3b35bebbca5dfb08d855c (patch)
treeeec8310bd52316f90fd0b259a03f9cdd8a7b6136 /src/summaryview.h
parentb95e2b6f962ddccf667155ec1fa67d5006e5cfaf (diff)
implemented quick search of the summary view.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@900 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/summaryview.h')
-rw-r--r--src/summaryview.h16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/summaryview.h b/src/summaryview.h
index bcf18ef9..9de8f4cf 100644
--- a/src/summaryview.h
+++ b/src/summaryview.h
@@ -1,6 +1,6 @@
/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2005 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2006 Hiroyuki Yamamoto
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -58,6 +58,11 @@ struct _SummaryColumnState
struct _SummaryView
{
GtkWidget *vbox;
+
+ GtkWidget *search_hbox;
+ GtkWidget *search_label;
+ GtkWidget *search_entry;
+
GtkWidget *scrolledwin;
GtkWidget *treeview;
@@ -117,8 +122,15 @@ private:
/* table for looking up message-id */
GHashTable *msgid_table;
+ /* all message list */
+ GSList *all_mlist;
+ /* filtered message list */
+ GSList *flt_mlist;
+
+ gboolean on_filter;
+
/* list for moving/deleting messages */
- GSList *mlist;
+ GSList *tmp_mlist;
/* table for updating folder tree */
GHashTable *folder_table;
/* counter for filtering */