Made account selection when reediting queued message work again
[claws.git] / src / stock_pixmap.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2001 Hiroyuki Yamamoto
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __STOCK_PIXMAP_H__
21 #define __STOCK_PIXMAP_H__
22
23 #include <glib.h>
24 #include <gtk/gtkwidget.h>
25
26 typedef enum
27 {
28         STOCK_PIXMAP_ADDRESS,
29         STOCK_PIXMAP_BOOK,
30         STOCK_PIXMAP_CATEGORY,
31         STOCK_PIXMAP_CHECKBOX_OFF,
32         STOCK_PIXMAP_CHECKBOX_ON,
33         STOCK_PIXMAP_CLIP,
34         STOCK_PIXMAP_CLIP_KEY,
35         STOCK_PIXMAP_COMPLETE,
36         STOCK_PIXMAP_CONTINUE,
37         STOCK_PIXMAP_DELETED,
38         STOCK_PIXMAP_DIR_CLOSE,
39         STOCK_PIXMAP_DIR_OPEN,
40         STOCK_PIXMAP_DIR_OPEN_HRM,
41         STOCK_PIXMAP_ERROR,
42         STOCK_PIXMAP_FORWARDED,
43         STOCK_PIXMAP_GROUP,
44         STOCK_PIXMAP_INBOX,
45         STOCK_PIXMAP_INBOX_HRM,
46         STOCK_PIXMAP_INTERFACE,
47         STOCK_PIXMAP_JPILOT,
48         STOCK_PIXMAP_KEY,
49         STOCK_PIXMAP_LDAP,
50         STOCK_PIXMAP_LINEWRAP,
51         STOCK_PIXMAP_MARK,
52         STOCK_PIXMAP_LOCKED,
53         STOCK_PIXMAP_NEW,
54         STOCK_PIXMAP_OUTBOX,
55         STOCK_PIXMAP_OUTBOX_HRM,
56         STOCK_PIXMAP_REPLIED,
57         STOCK_PIXMAP_CLOSE,
58         STOCK_PIXMAP_DOWN_ARROW,
59         STOCK_PIXMAP_EXEC,
60         STOCK_PIXMAP_MAIL,
61         STOCK_PIXMAP_MAIL_ATTACH,
62         STOCK_PIXMAP_MAIL_COMPOSE,
63         STOCK_PIXMAP_MAIL_FORWARD,
64         STOCK_PIXMAP_MAIL_RECEIVE,
65         STOCK_PIXMAP_MAIL_RECEIVE_ALL,
66         STOCK_PIXMAP_MAIL_REPLY,
67         STOCK_PIXMAP_MAIL_REPLY_TO_ALL,
68         STOCK_PIXMAP_MAIL_REPLY_TO_AUTHOR,
69         STOCK_PIXMAP_MAIL_SEND,
70         STOCK_PIXMAP_MAIL_SEND_QUEUE,
71         STOCK_PIXMAP_NEWS_COMPOSE,
72         STOCK_PIXMAP_PASTE,
73         STOCK_PIXMAP_PREFERENCES,
74         STOCK_PIXMAP_PROPERTIES,
75         STOCK_PIXMAP_SYLPHEED_LOGO,
76         STOCK_PIXMAP_ADDRESS_BOOK,
77         STOCK_PIXMAP_TRASH,
78         STOCK_PIXMAP_TRASH_HRM,
79         STOCK_PIXMAP_UNREAD,
80         STOCK_PIXMAP_VCARD,
81         STOCK_PIXMAP_IGNORETHREAD,
82
83         N_STOCK_PIXMAPS
84 } StockPixmap;
85
86 GtkWidget *stock_pixmap_widget  (GtkWidget       *window,
87                                  StockPixmap      icon);
88 gint stock_pixmap_gdk           (GtkWidget       *window,
89                                  StockPixmap      icon,
90                                  GdkPixmap      **pixmap,
91                                  GdkBitmap      **mask);
92
93 #endif /* __STOCK_PIXMAP_H__ */