add description of Actions and Pixmap Themes
[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_EDIT_EXTERN,
46         STOCK_PIXMAP_ERROR,
47         STOCK_PIXMAP_EXEC,
48         STOCK_PIXMAP_FORWARDED,
49         STOCK_PIXMAP_GROUP,
50         STOCK_PIXMAP_IGNORETHREAD,
51         STOCK_PIXMAP_INBOX_CLOSE,
52         STOCK_PIXMAP_INBOX_CLOSE_HRM,
53         STOCK_PIXMAP_INBOX_OPEN,
54         STOCK_PIXMAP_INBOX_OPEN_HRM,
55         STOCK_PIXMAP_INSERT_FILE,
56         STOCK_PIXMAP_INTERFACE,
57         STOCK_PIXMAP_JPILOT,
58         STOCK_PIXMAP_KEY,
59         STOCK_PIXMAP_LDAP,
60         STOCK_PIXMAP_LINEWRAP,
61         STOCK_PIXMAP_LOCKED,
62         STOCK_PIXMAP_MAIL,
63         STOCK_PIXMAP_MAIL_ATTACH,
64         STOCK_PIXMAP_MAIL_COMPOSE,
65         STOCK_PIXMAP_MAIL_FORWARD,
66         STOCK_PIXMAP_MAIL_RECEIVE,
67         STOCK_PIXMAP_MAIL_RECEIVE_ALL,
68         STOCK_PIXMAP_MAIL_REPLY,
69         STOCK_PIXMAP_MAIL_REPLY_TO_ALL,
70         STOCK_PIXMAP_MAIL_REPLY_TO_AUTHOR,
71         STOCK_PIXMAP_MAIL_SEND,
72         STOCK_PIXMAP_MAIL_SEND_QUEUE,
73         STOCK_PIXMAP_MAIL_SIGN,
74         STOCK_PIXMAP_MARK,
75         STOCK_PIXMAP_NEW,
76         STOCK_PIXMAP_NEWS_COMPOSE,
77         STOCK_PIXMAP_OUTBOX_CLOSE,
78         STOCK_PIXMAP_OUTBOX_CLOSE_HRM,
79         STOCK_PIXMAP_OUTBOX_OPEN,
80         STOCK_PIXMAP_OUTBOX_OPEN_HRM,
81         STOCK_PIXMAP_REPLIED,
82         STOCK_PIXMAP_PASTE,
83         STOCK_PIXMAP_PREFERENCES,
84         STOCK_PIXMAP_PROPERTIES,
85         STOCK_PIXMAP_QUEUE_CLOSE,
86         STOCK_PIXMAP_QUEUE_CLOSE_HRM,
87         STOCK_PIXMAP_QUEUE_OPEN,
88         STOCK_PIXMAP_QUEUE_OPEN_HRM,
89         STOCK_PIXMAP_SYLPHEED_LOGO,
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
97         N_STOCK_PIXMAPS
98 } StockPixmap;
99
100 GtkWidget *stock_pixmap_widget  (GtkWidget       *window,
101                                  StockPixmap      icon);
102 gint stock_pixmap_gdk           (GtkWidget       *window,
103                                  StockPixmap      icon,
104                                  GdkPixmap      **pixmap,
105                                  GdkBitmap      **mask);
106
107 GList *stock_pixmap_themes_list_new     (void);
108 void stock_pixmap_themes_list_free      (GList *list);
109
110 #endif /* __STOCK_PIXMAP_H__ */