aboutsummaryrefslogtreecommitdiff
path: root/src/prefs_toolbar.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-02-06 06:55:36 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2007-02-06 06:55:36 +0000
commitebd3e4e8ccb76c070225c2bd81f2f4b34e5fa6b0 (patch)
tree5bd3c7133eaec1f37c23630d0aa6672b7e759526 /src/prefs_toolbar.c
parent8aad93fdabaa410cdda2e3415ec62aa60756ce33 (diff)
added 'Not junk' and 'Search' button to the main toolbar.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1529 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/prefs_toolbar.c')
-rw-r--r--src/prefs_toolbar.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/prefs_toolbar.c b/src/prefs_toolbar.c
index 8f9cb3ae..36ce59e9 100644
--- a/src/prefs_toolbar.c
+++ b/src/prefs_toolbar.c
@@ -63,12 +63,18 @@ static PrefsDisplayItem all_items[] =
{T_JUNK, "junk", N_("Junk"),
N_("Set as junk mail"),
STOCK_PIXMAP_SPAM, NULL, FALSE, FALSE},
+ {T_NOTJUNK, "not-junk", N_("Not junk"),
+ N_("Set as not junk mail"),
+ STOCK_PIXMAP_NOTSPAM, NULL, FALSE, FALSE},
{T_NEXT, "next", N_("Next"),
N_("Next unread message"),
-1, GTK_STOCK_GO_DOWN, FALSE, FALSE},
{T_PREV, "prev", N_("Prev"),
N_("Previous unread message"),
-1, GTK_STOCK_GO_UP, FALSE, FALSE},
+ {T_SEARCH, "search", N_("Search"),
+ N_("Search messages"),
+ -1, GTK_STOCK_FIND, FALSE, FALSE},
{T_PRINT, "print", N_("Print"),
N_("Print message"),
-1, GTK_STOCK_PRINT, FALSE, FALSE},
@@ -129,8 +135,10 @@ static gint main_available_items[] =
T_FORWARD,
T_DELETE,
T_JUNK,
+ T_NOTJUNK,
T_NEXT,
T_PREV,
+ T_SEARCH,
T_PRINT,
T_ADDRESS_BOOK,
T_EXECUTE,
@@ -173,6 +181,7 @@ static gint default_main_items[] =
T_SEPARATOR,
T_NEXT,
T_SEPARATOR,
+ T_SEARCH,
T_PRINT,
T_ADDRESS_BOOK,
-1