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