revert to get ldap into it previous working state and add new Taiwanese translation
[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
150         /* compose toolbar */
151         A_SEND,
152         A_SENDL,
153         A_DRAFT,
154         A_INSERT,
155         A_ATTACH,
156         A_SIG,
157         A_EXTEDITOR,
158         A_LINEWRAP,
159         A_ADDRBOOK,
160
161         /* common items */
162         A_SYL_ACTIONS,
163         A_SEPARATOR,
164
165         N_ACTION_VAL
166 };
167
168 struct _ToolbarSylpheedActions {
169         GtkWidget *widget;
170         gchar     *name;
171 };
172
173
174 void    toolbar_action_execute          (GtkWidget      *widget,
175                                          GSList         *action_list, 
176                                          gpointer        data,
177                                          gint            source);
178
179 GList   *toolbar_get_action_items       (ToolbarType     source);
180
181 void    toolbar_save_config_file        (ToolbarType     source);
182 void    toolbar_read_config_file        (ToolbarType     source);
183
184 void    toolbar_set_default             (ToolbarType     source);
185 void    toolbar_clear_list              (ToolbarType     source);
186
187 GSList  *toolbar_get_list               (ToolbarType     source);
188 void    toolbar_set_list_item           (ToolbarItem    *t_item, 
189                                          ToolbarType     source);
190
191 gint    toolbar_ret_val_from_descr      (const gchar    *descr);
192 gchar   *toolbar_ret_descr_from_val     (gint            val);
193
194 void    toolbar_main_set_sensitive      (gpointer        data);
195 void    toolbar_comp_set_sensitive      (gpointer        data, 
196                                          gboolean        sensitive);
197
198 /* invoked by mainwindow entries and toolbar actions */
199 void    delete_msgview_cb               (gpointer        data, 
200                                          guint           action, 
201                                          GtkWidget      *widget);
202 void    inc_mail_cb                     (gpointer        data,
203                                          guint           action,
204                                          GtkWidget      *widget);
205 void    inc_all_account_mail_cb         (gpointer        data,
206                                          guint           action,
207                                          GtkWidget      *widget);
208 void    send_queue_cb                   (gpointer        data,
209                                          guint           action,
210                                          GtkWidget      *widget);
211 void    compose_mail_cb                 (gpointer       data, 
212                                          guint           action,
213                                          GtkWidget      *widget);
214 void    compose_news_cb                 (gpointer        data, 
215                                          guint           action,
216                                          GtkWidget      *widget);
217 /* END */
218
219 void    toolbar_toggle                  (guint           action,
220                                          gpointer        data);
221 void    toolbar_update                  (ToolbarType     type, 
222                                         gpointer         data);        
223 Toolbar *toolbar_create                 (ToolbarType     type, 
224                                          GtkWidget      *container,
225                                          gpointer        data);
226 void    toolbar_set_style               (GtkWidget      *toolbar_wid,
227                                          GtkWidget      *handlebox_wid,
228                                          guint           action);
229 void    toolbar_destroy                 (Toolbar        *toolbar);
230 void    toolbar_init                    (Toolbar        *toolbar);
231
232 #endif /* __CUSTOM_TOOLBAR_H__ */