2008-05-18 [colin] 3.4.0cvs50
[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 _ToolbarClawsActions ToolbarClawsActions;
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         GtkWidget *preferences_btn;
102
103         GSList    *action_list;
104         GSList    *item_list;
105
106         GtkTooltips *tooltips;
107 };
108
109 struct _ToolbarItem {
110         gint             index;
111         gchar           *file;
112         gchar           *text;
113         ToolbarType      type;
114         gpointer         parent;
115 };
116
117 #define TOOLBAR_DESTROY_ITEMS(item_list) \
118 { \
119         ToolbarItem *item; \
120         while (item_list != NULL) { \
121                 item = (ToolbarItem*)item_list->data; \
122                 item_list = g_slist_remove(item_list, item); \
123                 if (item->file) \
124                         g_free(item->file); \
125                 if (item->text) \
126                         g_free(item->text); \
127                 g_free(item);\
128         }\
129         g_slist_free(item_list);\
130 }
131
132 #define TOOLBAR_DESTROY_ACTIONS(action_list) \
133 { \
134         ToolbarClawsActions *action; \
135         while (action_list != NULL) { \
136                 action = (ToolbarClawsActions*)action_list->data;\
137                 action_list = \
138                         g_slist_remove(action_list, action);\
139                 if (action->name) \
140                         g_free(action->name); \
141                 g_free(action); \
142         } \
143         g_slist_free(action_list); \
144 }
145
146
147
148
149 /* enum holds available actions for both 
150    Compose Toolbar and Main Toolbar 
151 */
152 enum {
153         /* main toolbar */
154         A_RECEIVE_ALL = 0,
155         A_RECEIVE_CUR,
156         A_SEND_QUEUED,
157         A_COMPOSE_EMAIL,
158         A_COMPOSE_NEWS,
159         A_REPLY_MESSAGE,
160         A_REPLY_SENDER,
161         A_REPLY_ALL,
162         A_REPLY_ML,
163         A_OPEN_MAIL,
164         A_FORWARD,
165         A_TRASH,
166         A_DELETE_REAL,
167         A_EXECUTE,
168         A_GOTO_PREV,
169         A_GOTO_NEXT,
170         A_IGNORE_THREAD,
171         A_WATCH_THREAD,
172         A_PRINT,
173         A_LEARN_SPAM,
174         A_GO_FOLDERS,
175         A_PREFERENCES,
176
177         /* compose toolbar */
178         A_SEND,
179         A_SENDL,
180         A_DRAFT,
181         A_INSERT,
182         A_ATTACH,
183         A_SIG,
184         A_EXTEDITOR,
185         A_LINEWRAP_CURRENT,
186         A_LINEWRAP_ALL,
187         A_ADDRBOOK,
188 #ifdef USE_ASPELL
189         A_CHECK_SPELLING,
190 #endif
191
192         /* common items */
193         A_CLAWS_ACTIONS,
194         A_CANCEL_INC,
195         A_CLOSE,
196
197         A_SEPARATOR,
198
199         N_ACTION_VAL
200 };
201
202 struct _ToolbarClawsActions {
203         GtkWidget *widget;
204         gchar     *name;
205 };
206
207
208 GList   *toolbar_get_action_items       (ToolbarType     source);
209
210 void    toolbar_save_config_file        (ToolbarType     source);
211 void    toolbar_read_config_file        (ToolbarType     source);
212
213 void    toolbar_set_default             (ToolbarType     source);
214 void    toolbar_clear_list              (ToolbarType     source);
215
216 GSList  *toolbar_get_list               (ToolbarType     source);
217 void    toolbar_set_list_item           (ToolbarItem    *t_item, 
218                                          ToolbarType     source);
219
220 gint    toolbar_ret_val_from_descr      (const gchar    *descr);
221 gchar   *toolbar_ret_descr_from_val     (gint            val);
222
223 void    toolbar_main_set_sensitive      (gpointer        data);
224 void    toolbar_comp_set_sensitive      (gpointer        data, 
225                                          gboolean        sensitive);
226
227 /* invoked by mainwindow entries and toolbar actions */
228 void    delete_msgview_cb               (gpointer        data, 
229                                          guint           action, 
230                                          GtkWidget      *widget);
231 void    inc_mail_cb                     (gpointer        data,
232                                          guint           action,
233                                          GtkWidget      *widget);
234 void    inc_all_account_mail_cb         (gpointer        data,
235                                          guint           action,
236                                          GtkWidget      *widget);
237 void    send_queue_cb                   (gpointer        data,
238                                          guint           action,
239                                          GtkWidget      *widget);
240 void    compose_mail_cb                 (gpointer       data, 
241                                          guint           action,
242                                          GtkWidget      *widget);
243 void    compose_news_cb                 (gpointer        data, 
244                                          guint           action,
245                                          GtkWidget      *widget);
246 /* END */
247
248 void    toolbar_toggle                  (guint           action,
249                                          gpointer        data);
250 void    toolbar_update                  (ToolbarType     type, 
251                                         gpointer         data);        
252 Toolbar *toolbar_create                 (ToolbarType     type, 
253                                          GtkWidget      *container,
254                                          gpointer        data);
255 void    toolbar_set_style               (GtkWidget      *toolbar_wid,
256                                          GtkWidget      *handlebox_wid,
257                                          guint           action);
258 void    toolbar_destroy                 (Toolbar        *toolbar);
259 void toolbar_set_learn_button           (Toolbar        *toolbar, 
260                                          LearnButtonType  learn_btn_type);
261 const gchar *toolbar_get_short_text     (int action);
262 int          toolbar_get_icon           (int action);
263 #endif /* __CUSTOM_TOOLBAR_H__ */