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