Fix wrong libarchive version check.
[claws.git] / src / toolbar.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 2001-2012 Hiroyuki Yamamoto and the Claws Mail team
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 3 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, see <http://www.gnu.org/licenses/>.
17  * 
18  */
19
20 #ifndef __CUSTOM_TOOLBAR_H__
21 #define __CUSTOM_TOOLBAR_H__
22
23 #include "gtk/gtkutils.h"
24
25 #define SEPARATOR_PIXMAP     "---"
26
27 typedef struct _Toolbar Toolbar;
28 typedef struct _ToolbarItem ToolbarItem;
29 typedef struct _ToolbarClawsActions ToolbarClawsActions;
30
31 typedef enum {
32         TOOLBAR_MAIN = 0,       
33         TOOLBAR_COMPOSE,
34         TOOLBAR_MSGVIEW
35 } ToolbarType;
36
37 #define NUM_TOOLBARS    3
38
39 typedef enum 
40 {
41         COMPOSEBUTTON_MAIL,
42         COMPOSEBUTTON_NEWS
43 } ComposeButtonType;
44
45 typedef enum 
46 {
47         LEARN_SPAM,
48         LEARN_HAM
49 } LearnButtonType;
50
51 struct _Toolbar {
52         GtkWidget *toolbar;
53
54         GtkWidget *folders_btn;
55         GtkWidget *get_btn;
56         GtkWidget *getall_btn;
57         GtkWidget *send_btn;
58
59         GtkWidget *compose_mail_btn;
60         GtkWidget *compose_mail_icon;
61         GtkWidget *compose_news_icon;
62
63         GtkWidget *reply_btn;
64         GtkWidget *replysender_btn;
65         GtkWidget *replyall_btn;
66         GtkWidget *replylist_btn;
67
68         GtkWidget *fwd_btn;
69         
70         GtkWidget *trash_btn;
71         GtkWidget *delete_btn;
72         GtkWidget *prev_btn;
73         GtkWidget *next_btn;
74         GtkWidget *exec_btn;
75
76         GtkWidget *separator;
77         GtkWidget *learn_spam_btn;
78         GtkWidget *learn_spam_icon;
79         GtkWidget *learn_ham_icon;
80         
81         GtkWidget *cancel_inc_btn;
82         GtkWidget *cancel_send_btn;
83         GtkWidget *cancel_all_btn;
84         
85         ComposeButtonType compose_btn_type;
86         LearnButtonType learn_btn_type;
87
88         /* compose buttons */
89         GtkWidget *sendl_btn;
90         GtkWidget *draft_btn;
91         GtkWidget *insert_btn;
92         GtkWidget *attach_btn;
93         GtkWidget *sig_btn;
94         GtkWidget *repsig_btn;
95         GtkWidget *exteditor_btn;
96         GtkWidget *linewrap_current_btn;
97         GtkWidget *linewrap_all_btn;
98         GtkWidget *addrbook_btn;
99
100         GtkWidget *open_mail_btn;
101         GtkWidget *close_window_btn;
102
103         GtkWidget *preferences_btn;
104
105         GSList    *action_list;
106         GSList    *item_list;
107
108 #ifdef USE_ENCHANT
109         GtkWidget *spellcheck_btn;
110 #endif
111 };
112
113 struct _ToolbarItem {
114         gint             index;
115         gchar           *file;
116         gchar           *text;
117         ToolbarType      type;
118         gpointer         parent;
119 };
120
121 #define TOOLBAR_DESTROY_ITEMS(item_list) \
122 { \
123         ToolbarItem *item; \
124         while (item_list != NULL) { \
125                 item = (ToolbarItem*)item_list->data; \
126                 item_list = g_slist_remove(item_list, item); \
127                 if (item->file) \
128                         g_free(item->file); \
129                 if (item->text) \
130                         g_free(item->text); \
131                 g_free(item);\
132         }\
133         g_slist_free(item_list);\
134 }
135
136 #define TOOLBAR_DESTROY_ACTIONS(action_list) \
137 { \
138         ToolbarClawsActions *action; \
139         while (action_list != NULL) { \
140                 action = (ToolbarClawsActions*)action_list->data;\
141                 action_list = \
142                         g_slist_remove(action_list, action);\
143                 if (action->name) \
144                         g_free(action->name); \
145                 g_free(action); \
146         } \
147         g_slist_free(action_list); \
148 }
149
150
151
152
153 /* enum holds available actions for both
154    Compose Toolbar and Main Toolbar
155 */
156 enum {
157         /* main toolbar */
158         A_RECEIVE_ALL = 0,
159         A_RECEIVE_CUR,
160         A_SEND_QUEUED,
161         A_COMPOSE_EMAIL,
162         A_COMPOSE_NEWS,
163         A_REPLY_MESSAGE,
164         A_REPLY_SENDER,
165         A_REPLY_ALL,
166         A_REPLY_ML,
167         A_OPEN_MAIL,
168         A_FORWARD,
169         A_TRASH,
170         A_DELETE_REAL,
171         A_EXECUTE,
172         A_GOTO_PREV,
173         A_GOTO_NEXT,
174
175         A_IGNORE_THREAD,
176         A_WATCH_THREAD,
177         A_MARK,
178         A_UNMARK,
179         A_LOCK,
180         A_UNLOCK,
181         A_ALL_READ,
182         A_ALL_UNREAD,
183         A_READ,
184         A_UNREAD,
185
186         A_PRINT,
187         A_LEARN_SPAM,
188         A_GO_FOLDERS,
189         A_PREFERENCES,
190
191         /* compose toolbar */
192         A_SEND,
193         A_SEND_LATER,
194         A_DRAFT,
195         A_INSERT,
196         A_ATTACH,
197         A_SIG,
198         A_REP_SIG,
199         A_EXTEDITOR,
200         A_LINEWRAP_CURRENT,
201         A_LINEWRAP_ALL,
202         A_ADDRBOOK,
203 #ifdef USE_ENCHANT
204         A_CHECK_SPELLING,
205 #endif
206
207         /* common items */
208         A_CLAWS_ACTIONS,
209         A_CANCEL_INC,
210         A_CANCEL_SEND,
211         A_CANCEL_ALL,
212         A_CLOSE,
213
214         A_SEPARATOR,
215
216         A_CLAWS_PLUGINS,
217
218         N_ACTION_VAL
219 };
220
221 struct _ToolbarClawsActions {
222         GtkWidget *widget;
223         gchar     *name;
224 };
225
226
227 GList   *toolbar_get_action_items       (ToolbarType     source);
228
229 void    toolbar_save_config_file        (ToolbarType     source);
230 void    toolbar_read_config_file        (ToolbarType     source);
231
232 void    toolbar_set_default             (ToolbarType     source);
233 void    toolbar_clear_list              (ToolbarType     source);
234
235 GSList  *toolbar_get_list               (ToolbarType     source);
236 void    toolbar_set_list_item           (ToolbarItem    *t_item, 
237                                          ToolbarType     source);
238
239 gint    toolbar_ret_val_from_descr      (const gchar    *descr);
240 gchar   *toolbar_ret_descr_from_val     (gint            val);
241
242 void    toolbar_main_set_sensitive      (gpointer        data);
243 void    toolbar_comp_set_sensitive      (gpointer        data, 
244                                          gboolean        sensitive);
245
246 /* invoked by mainwindow entries and toolbar actions */
247 void    delete_msgview_cb               (gpointer        data, 
248                                          guint           action, 
249                                          GtkWidget      *widget);
250 void    inc_mail_cb                     (gpointer        data,
251                                          guint           action,
252                                          GtkWidget      *widget);
253 void    inc_all_account_mail_cb         (gpointer        data,
254                                          guint           action,
255                                          GtkWidget      *widget);
256 void    send_queue_cb                   (gpointer        data,
257                                          guint           action,
258                                          GtkWidget      *widget);
259 void    compose_mail_cb                 (gpointer       data, 
260                                          guint           action,
261                                          GtkWidget      *widget);
262 void    compose_news_cb                 (gpointer        data, 
263                                          guint           action,
264                                          GtkWidget      *widget);
265 /* END */
266
267 void    toolbar_toggle                  (guint           action,
268                                          gpointer        data);
269 void    toolbar_update                  (ToolbarType     type, 
270                                         gpointer         data);        
271 Toolbar *toolbar_create                 (ToolbarType     type, 
272                                          GtkWidget      *container,
273                                          gpointer        data);
274 void    toolbar_set_style               (GtkWidget      *toolbar_wid,
275                                          GtkWidget      *handlebox_wid,
276                                          guint           action);
277 void    toolbar_destroy                 (Toolbar        *toolbar);
278 void toolbar_set_learn_button           (Toolbar        *toolbar, 
279                                          LearnButtonType  learn_btn_type);
280 const gchar *toolbar_get_short_text     (int action);
281 int          toolbar_get_icon           (int action);
282 gboolean toolbar_check_action_btns      (ToolbarType    type);
283 #endif /* __CUSTOM_TOOLBAR_H__ */