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