0.8.11claws152
[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_ADDRESS_BOOK,
30         STOCK_PIXMAP_BOOK,
31         STOCK_PIXMAP_CATEGORY,
32         STOCK_PIXMAP_CHECKBOX_OFF,
33         STOCK_PIXMAP_CHECKBOX_ON,
34         STOCK_PIXMAP_CLIP,
35         STOCK_PIXMAP_CLIP_KEY,
36         STOCK_PIXMAP_CLOSE,
37         STOCK_PIXMAP_COMPLETE,
38         STOCK_PIXMAP_CONTINUE,
39         STOCK_PIXMAP_DELETED,
40         STOCK_PIXMAP_DIR_CLOSE,
41         STOCK_PIXMAP_DIR_CLOSE_HRM,
42         STOCK_PIXMAP_DIR_OPEN,
43         STOCK_PIXMAP_DIR_OPEN_HRM,
44         STOCK_PIXMAP_DOWN_ARROW,
45         STOCK_PIXMAP_UP_ARROW,
46         STOCK_PIXMAP_EDIT_EXTERN,
47         STOCK_PIXMAP_ERROR,
48         STOCK_PIXMAP_EXEC,
49         STOCK_PIXMAP_FORWARDED,
50         STOCK_PIXMAP_GROUP,
51         STOCK_PIXMAP_IGNORETHREAD,
52         STOCK_PIXMAP_INBOX_CLOSE,
53         STOCK_PIXMAP_INBOX_CLOSE_HRM,
54         STOCK_PIXMAP_INBOX_OPEN,
55         STOCK_PIXMAP_INBOX_OPEN_HRM,
56         STOCK_PIXMAP_INSERT_FILE,
57         STOCK_PIXMAP_INTERFACE,
58         STOCK_PIXMAP_JPILOT,
59         STOCK_PIXMAP_KEY,
60         STOCK_PIXMAP_LDAP,
61         STOCK_PIXMAP_LINEWRAP,
62         STOCK_PIXMAP_LOCKED,
63         STOCK_PIXMAP_MAIL,
64         STOCK_PIXMAP_MAIL_ATTACH,
65         STOCK_PIXMAP_MAIL_COMPOSE,
66         STOCK_PIXMAP_MAIL_FORWARD,
67         STOCK_PIXMAP_MAIL_RECEIVE,
68         STOCK_PIXMAP_MAIL_RECEIVE_ALL,
69         STOCK_PIXMAP_MAIL_REPLY,
70         STOCK_PIXMAP_MAIL_REPLY_TO_ALL,
71         STOCK_PIXMAP_MAIL_REPLY_TO_AUTHOR,
72         STOCK_PIXMAP_MAIL_SEND,
73         STOCK_PIXMAP_MAIL_SEND_QUEUE,
74         STOCK_PIXMAP_MAIL_SIGN,
75         STOCK_PIXMAP_MARK,
76         STOCK_PIXMAP_NEW,
77         STOCK_PIXMAP_NEWS_COMPOSE,
78         STOCK_PIXMAP_OUTBOX_CLOSE,
79         STOCK_PIXMAP_OUTBOX_CLOSE_HRM,
80         STOCK_PIXMAP_OUTBOX_OPEN,
81         STOCK_PIXMAP_OUTBOX_OPEN_HRM,
82         STOCK_PIXMAP_REPLIED,
83         STOCK_PIXMAP_PASTE,
84         STOCK_PIXMAP_PREFERENCES,
85         STOCK_PIXMAP_PROPERTIES,
86         STOCK_PIXMAP_QUEUE_CLOSE,
87         STOCK_PIXMAP_QUEUE_CLOSE_HRM,
88         STOCK_PIXMAP_QUEUE_OPEN,
89         STOCK_PIXMAP_QUEUE_OPEN_HRM,
90         STOCK_PIXMAP_TRASH_OPEN,
91         STOCK_PIXMAP_TRASH_OPEN_HRM,
92         STOCK_PIXMAP_TRASH_CLOSE,
93         STOCK_PIXMAP_TRASH_CLOSE_HRM,
94         STOCK_PIXMAP_UNREAD,
95         STOCK_PIXMAP_VCARD,
96         STOCK_PIXMAP_WORK_ONLINE,
97         STOCK_PIXMAP_WORK_OFFLINE,
98         STOCK_PIXMAP_NOTICE_WARN,               /* small warning */
99         STOCK_PIXMAP_NOTICE_ERROR,              /* small error   */
100         STOCK_PIXMAP_NOTICE_NOTE,               /* small message */
101         STOCK_PIXMAP_QUICKSEARCH,               /* quicksearch pixmap */
102         STOCK_PIXMAP_GPG_SIGNED,
103         STOCK_PIXMAP_DRAFTS_CLOSE,
104         STOCK_PIXMAP_DRAFTS_OPEN,
105
106         STOCK_PIXMAP_SYLPHEED_LOGO,             /* last entry */
107         
108         N_STOCK_PIXMAPS
109 } StockPixmap;
110
111 GtkWidget *stock_pixmap_widget  (GtkWidget       *window,
112                                  StockPixmap      icon);
113 gint stock_pixmap_gdk           (GtkWidget       *window,
114                                  StockPixmap      icon,
115                                  GdkPixmap      **pixmap,
116                                  GdkBitmap      **mask);
117
118 GList *stock_pixmap_themes_list_new     (void);
119 void stock_pixmap_themes_list_free      (GList *list);
120 gchar *stock_pixmap_get_name         (StockPixmap icon);
121 StockPixmap stock_pixmap_get_icon    (gchar *file);
122
123 #endif /* __STOCK_PIXMAP_H__ */