tools/textviewer.sh ** NEW **
[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 #define SEPARATOR_PIXMAP     "---"
24
25 typedef struct _Toolbar Toolbar;
26 typedef struct _ToolbarItem ToolbarItem;
27 typedef struct _ToolbarSylpheedActions ToolbarSylpheedActions;
28
29 typedef enum {
30         TOOLBAR_MAIN = 0,       
31         TOOLBAR_COMPOSE,
32         TOOLBAR_MSGVIEW
33 } ToolbarType;
34
35 typedef enum 
36 {
37         COMPOSEBUTTON_MAIL,
38         COMPOSEBUTTON_NEWS
39 } ComposeButtonType;
40
41 struct _Toolbar {
42         GtkWidget *toolbar;
43
44         GtkWidget *get_btn;
45         GtkWidget *getall_btn;
46         GtkWidget *send_btn;
47
48         GtkWidget *compose_mail_btn;
49         GtkWidget *compose_news_btn;
50
51         GtkWidget *reply_btn;
52         GtkWidget *replysender_btn;
53         GtkWidget *replyall_btn;
54         GtkWidget *replylist_btn;
55
56         GtkWidget *fwd_btn;
57
58         GtkWidget *delete_btn;
59         GtkWidget *next_btn;
60         GtkWidget *exec_btn;
61
62         GtkWidget *separator;
63
64         /* for the reply buttons */
65         GtkWidget *reply_popup;
66         GtkWidget *replyall_popup;
67         GtkWidget *replylist_popup;
68         GtkWidget *replysender_popup;
69         
70         /* the forward button similar to the reply buttons*/
71         GtkWidget *fwd_popup;
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_btn;
83         GtkWidget *addrbook_btn;
84 #ifdef USE_ASPELL
85         GtkWidget *spellcheck_btn;
86 #endif
87
88         GSList    *action_list;
89         GSList    *item_list;
90
91 };
92
93 struct _ToolbarItem {
94         gint             index;
95         gchar           *file;
96         gchar           *text;
97         ToolbarType      type;
98         gpointer         parent;
99 };
100
101 #define TOOLBAR_DESTROY_ITEMS(item_list) \
102 { \
103         ToolbarItem *item; \
104         while (item_list != NULL) { \
105                 item = (ToolbarItem*)item_list->data; \
106                 item_list = g_slist_remove(item_list, item); \
107                 if (item->file) \
108                         g_free(item->file); \
109                 if (item->text) \
110                         g_free(item->text); \
111                 g_free(item);\
112         }\
113         g_slist_free(item_list);\
114 }
115
116 #define TOOLBAR_DESTROY_ACTIONS(action_list) \
117 { \
118         ToolbarSylpheedActions *action; \
119         while (action_list != NULL) { \
120                 action = (ToolbarSylpheedActions*)action_list->data;\
121                 action_list = \
122                         g_slist_remove(action_list, action);\
123                 if (action->name) \
124                         g_free(action->name); \
125                 g_free(action); \
126         } \
127         g_slist_free(action_list); \
128 }
129
130
131
132
133 /* enum holds available actions for both 
134    Compose Toolbar and Main Toolbar 
135 */
136 enum {
137         /* main toolbar */
138         A_RECEIVE_ALL = 0,
139         A_RECEIVE_CUR,
140         A_SEND_QUEUED,
141         A_COMPOSE_EMAIL,
142         A_COMPOSE_NEWS,
143         A_REPLY_MESSAGE,
144         A_REPLY_SENDER,
145         A_REPLY_ALL,
146         A_REPLY_ML,
147         A_FORWARD,
148         A_DELETE,
149         A_EXECUTE,
150         A_GOTO_NEXT,
151         A_IGNORE_THREAD,
152         A_PRINT,
153
154         /* compose toolbar */
155         A_SEND,
156         A_SENDL,
157         A_DRAFT,
158         A_INSERT,
159         A_ATTACH,
160         A_SIG,
161         A_EXTEDITOR,
162         A_LINEWRAP,
163         A_ADDRBOOK,
164 #ifdef USE_ASPELL
165         A_CHECK_SPELLING,
166 #endif
167
168         /* common items */
169         A_SYL_ACTIONS,
170         A_SEPARATOR,
171
172         N_ACTION_VAL
173 };
174
175 struct _ToolbarSylpheedActions {
176         GtkWidget *widget;
177         gchar     *name;
178 };
179
180
181 void    toolbar_action_execute          (GtkWidget      *widget,
182                                          GSList         *action_list, 
183                                          gpointer        data,
184                                          gint            source);
185
186 GList   *toolbar_get_action_items       (ToolbarType     source);
187
188 void    toolbar_save_config_file        (ToolbarType     source);
189 void    toolbar_read_config_file        (ToolbarType     source);
190
191 void    toolbar_set_default             (ToolbarType     source);
192 void    toolbar_clear_list              (ToolbarType     source);
193
194 GSList  *toolbar_get_list               (ToolbarType     source);
195 void    toolbar_set_list_item           (ToolbarItem    *t_item, 
196                                          ToolbarType     source);
197
198 gint    toolbar_ret_val_from_descr      (const gchar    *descr);
199 gchar   *toolbar_ret_descr_from_val     (gint            val);
200
201 void    toolbar_main_set_sensitive      (gpointer        data);
202 void    toolbar_comp_set_sensitive      (gpointer        data, 
203                                          gboolean        sensitive);
204
205 /* invoked by mainwindow entries and toolbar actions */
206 void    delete_msgview_cb               (gpointer        data, 
207                                          guint           action, 
208                                          GtkWidget      *widget);
209 void    inc_mail_cb                     (gpointer        data,
210                                          guint           action,
211                                          GtkWidget      *widget);
212 void    inc_all_account_mail_cb         (gpointer        data,
213                                          guint           action,
214                                          GtkWidget      *widget);
215 void    send_queue_cb                   (gpointer        data,
216                                          guint           action,
217                                          GtkWidget      *widget);
218 void    compose_mail_cb                 (gpointer       data, 
219                                          guint           action,
220                                          GtkWidget      *widget);
221 void    compose_news_cb                 (gpointer        data, 
222                                          guint           action,
223                                          GtkWidget      *widget);
224 /* END */
225
226 void    toolbar_toggle                  (guint           action,
227                                          gpointer        data);
228 void    toolbar_update                  (ToolbarType     type, 
229                                         gpointer         data);        
230 Toolbar *toolbar_create                 (ToolbarType     type, 
231                                          GtkWidget      *container,
232                                          gpointer        data);
233 void    toolbar_set_style               (GtkWidget      *toolbar_wid,
234                                          GtkWidget      *handlebox_wid,
235                                          guint           action);
236 void    toolbar_destroy                 (Toolbar        *toolbar);
237 void    toolbar_init                    (Toolbar        *toolbar);
238
239 #endif /* __CUSTOM_TOOLBAR_H__ */