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