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