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