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