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