2 * Claws Mail -- a GTK based, lightweight, and fast e-mail client
3 * Copyright (C) 2001-2017 Hiroyuki Yamamoto and the Claws Mail team
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 3 of the License, or
8 * (at your option) any later version.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #ifndef __CUSTOM_TOOLBAR_H__
20 #define __CUSTOM_TOOLBAR_H__
22 #include "gtk/gtkutils.h"
24 #define SEPARATOR_PIXMAP "---"
26 typedef struct _Toolbar Toolbar
;
27 typedef struct _ToolbarItem ToolbarItem
;
28 typedef struct _ToolbarClawsActions ToolbarClawsActions
;
36 #define NUM_TOOLBARS 3
53 GtkWidget
*folders_btn
;
55 GtkWidget
*getall_btn
;
58 GtkWidget
*compose_mail_btn
;
59 GtkWidget
*compose_mail_icon
;
60 GtkWidget
*compose_news_icon
;
63 GtkWidget
*replysender_btn
;
64 GtkWidget
*replyall_btn
;
65 GtkWidget
*replylist_btn
;
70 GtkWidget
*delete_btn
;
71 GtkWidget
*delete_dup_btn
;
77 GtkWidget
*learn_spam_btn
;
78 GtkWidget
*learn_spam_icon
;
79 GtkWidget
*learn_ham_icon
;
81 GtkWidget
*cancel_inc_btn
;
82 GtkWidget
*cancel_send_btn
;
83 GtkWidget
*cancel_all_btn
;
85 ComposeButtonType compose_btn_type
;
86 LearnButtonType learn_btn_type
;
91 GtkWidget
*insert_btn
;
92 GtkWidget
*attach_btn
;
94 GtkWidget
*repsig_btn
;
95 GtkWidget
*exteditor_btn
;
96 GtkWidget
*linewrap_current_btn
;
97 GtkWidget
*linewrap_all_btn
;
98 GtkWidget
*addrbook_btn
;
100 GtkWidget
*open_mail_btn
;
101 GtkWidget
*close_window_btn
;
103 GtkWidget
*preferences_btn
;
109 GtkWidget
*spellcheck_btn
;
112 GtkWidget
*privacy_sign_btn
;
113 GtkWidget
*privacy_encrypt_btn
;
116 struct _ToolbarItem
{
124 #define TOOLBAR_DESTROY_ITEMS(item_list) \
127 while (item_list != NULL) { \
128 item = (ToolbarItem*)item_list->data; \
129 item_list = g_slist_remove(item_list, item); \
130 toolbar_item_destroy(item); \
132 g_slist_free(item_list);\
135 #define TOOLBAR_DESTROY_ACTIONS(action_list) \
137 ToolbarClawsActions *action; \
138 while (action_list != NULL) { \
139 action = (ToolbarClawsActions*)action_list->data;\
141 g_slist_remove(action_list, action);\
143 g_free(action->name); \
146 g_slist_free(action_list); \
152 /* enum holds available actions for both
153 Compose Toolbar and Main Toolbar
192 /* compose toolbar */
224 struct _ToolbarClawsActions
{
230 GList
*toolbar_get_action_items (ToolbarType source
);
232 void toolbar_save_config_file (ToolbarType source
);
233 void toolbar_read_config_file (ToolbarType source
);
235 void toolbar_set_default (ToolbarType source
);
236 void toolbar_clear_list (ToolbarType source
);
238 GSList
*toolbar_get_list (ToolbarType source
);
239 void toolbar_set_list_item (ToolbarItem
*t_item
,
242 gint
toolbar_ret_val_from_descr (const gchar
*descr
);
243 gchar
*toolbar_ret_descr_from_val (gint val
);
245 void toolbar_main_set_sensitive (gpointer data
);
246 void toolbar_comp_set_sensitive (gpointer data
,
249 /* invoked by mainwindow entries and toolbar actions */
250 void delete_msgview_cb (gpointer data
,
253 void inc_mail_cb (gpointer data
,
256 void inc_all_account_mail_cb (gpointer data
,
259 void send_queue_cb (gpointer data
,
262 void compose_mail_cb (gpointer data
,
265 void compose_news_cb (gpointer data
,
270 void toolbar_toggle (guint action
,
272 void toolbar_update (ToolbarType type
,
274 Toolbar
*toolbar_create (ToolbarType type
,
275 GtkWidget
*container
,
277 void toolbar_set_style (GtkWidget
*toolbar_wid
,
278 GtkWidget
*handlebox_wid
,
280 void toolbar_destroy (Toolbar
*toolbar
);
281 void toolbar_item_destroy (ToolbarItem
*toolbar_item
);
283 void toolbar_set_learn_button (Toolbar
*toolbar
,
284 LearnButtonType learn_btn_type
);
285 const gchar
*toolbar_get_short_text (int action
);
286 int toolbar_get_icon (int action
);
287 gboolean
toolbar_check_action_btns (ToolbarType type
);
288 #endif /* __CUSTOM_TOOLBAR_H__ */