aboutsummaryrefslogtreecommitdiff
path: root/src/prefs_filter_edit.h
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-01-18 09:19:44 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2006-01-18 09:19:44 +0000
commit2d32c8a596b59d215786a109426d9c4e322fbced (patch)
treed113a375a52a9e20fd6a6f850f19ac06dab90d26 /src/prefs_filter_edit.h
parent20b96054f479e2190a856c6a851b3969a6aa4a25 (diff)
added filter conditions of status such as 'unread', 'mark', 'color-label', and 'mime'.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@905 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/prefs_filter_edit.h')
-rw-r--r--src/prefs_filter_edit.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/prefs_filter_edit.h b/src/prefs_filter_edit.h
index a74d3741..fab27d18 100644
--- a/src/prefs_filter_edit.h
+++ b/src/prefs_filter_edit.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
@@ -37,6 +37,10 @@ typedef enum
PF_COND_CMD_TEST,
PF_COND_SIZE,
PF_COND_AGE,
+ PF_COND_UNREAD,
+ PF_COND_MARK,
+ PF_COND_COLOR_LABEL,
+ PF_COND_MIME,
PF_COND_ACCOUNT,
PF_COND_EDIT_HEADER,
PF_COND_SEPARATOR,
@@ -68,6 +72,12 @@ typedef enum
typedef enum
{
+ PF_STATUS_MATCH,
+ PF_STATUS_NOT_MATCH
+} StatusMatchType;
+
+typedef enum
+{
PF_ACTION_MOVE,
PF_ACTION_COPY,
PF_ACTION_NOT_RECEIVE,
@@ -103,6 +113,7 @@ struct _CondHBox {
GtkWidget *match_type_optmenu;
GtkWidget *size_match_optmenu;
GtkWidget *age_match_optmenu;
+ GtkWidget *status_match_optmenu;
GtkWidget *key_entry;
GtkWidget *spin_btn;
GtkWidget *label;