2007-07-14 [colin] 2.10.0cvs25
[claws.git] / src / toolbar.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 2001-2007 Hiroyuki Yamamoto and the Claws Mail 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 3 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, see <http://www.gnu.org/licenses/>.
17  * 
18  */
19
20 /*
21  * General functions for accessing address book files.
22  */
23
24 #ifdef HAVE_CONFIG_H
25 #  include "config.h"
26 #endif
27
28 #include "defs.h"
29
30 #include <glib.h>
31 #include <glib/gi18n.h>
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <dirent.h>
35 #include <sys/stat.h>
36 #include <math.h>
37 #include <setjmp.h>
38
39 #include "main.h"
40 #include "mainwindow.h"
41 #include "summaryview.h"
42 #include "compose.h"
43 #include "utils.h"
44 #include "xml.h"
45 #include "mgutils.h"
46 #include "prefs_gtk.h"
47 #include "codeconv.h"
48 #include "stock_pixmap.h"
49 #include "manage_window.h"
50 #include "gtkutils.h"
51 #include "toolbar.h"
52 #include "menu.h"
53 #include "inc.h"
54 #include "action.h"
55 #include "prefs_actions.h"
56 #include "prefs_common.h"
57 #include "prefs_toolbar.h"
58 #include "alertpanel.h"
59 #include "imap.h"
60
61 /* elements */
62 #define TOOLBAR_TAG_INDEX        "toolbar"
63 #define TOOLBAR_TAG_ITEM         "item"
64 #define TOOLBAR_TAG_SEPARATOR    "separator"
65
66 #define TOOLBAR_ICON_FILE   "file"    
67 #define TOOLBAR_ICON_TEXT   "text"     
68 #define TOOLBAR_ICON_ACTION "action"    
69
70 static gboolean      toolbar_is_duplicate               (gint           action,
71                                                  ToolbarType    source);
72 static void   toolbar_parse_item                (XMLFile        *file,
73                                                  ToolbarType    source);
74
75 static gint   toolbar_ret_val_from_text         (const gchar    *text);
76 static gchar *toolbar_ret_text_from_val         (gint           val);
77
78 static void   toolbar_set_default_main          (void);
79 static void   toolbar_set_default_compose       (void);
80 static void   toolbar_set_default_msgview       (void);
81
82 static void     toolbar_style                   (ToolbarType     type, 
83                                                  guint           action, 
84                                                  gpointer        data);
85
86 static MainWindow *get_mainwin                  (gpointer data);
87 static void activate_compose_button             (Toolbar        *toolbar,
88                                                  ToolbarStyle    style,
89                                                  ComposeButtonType type);
90
91 /* toolbar callbacks */
92 static void toolbar_reply                       (gpointer        data, 
93                                                  guint           action);
94 static void toolbar_learn                       (gpointer        data, 
95                                                  guint           action);
96 static void toolbar_delete_cb                   (GtkWidget      *widget,
97                                                  gpointer        data);
98 static void toolbar_trash_cb                    (GtkWidget      *widget,
99                                                  gpointer        data);
100
101 static void toolbar_compose_cb                  (GtkWidget      *widget,
102                                                  gpointer        data);
103
104 static void toolbar_learn_cb                    (GtkWidget      *widget,
105                                                  gpointer        data);
106
107 static void toolbar_reply_cb                    (GtkWidget      *widget,
108                                                  gpointer        data);
109
110 static void toolbar_reply_to_all_cb             (GtkWidget      *widget,
111                                                  gpointer        data);
112
113 static void toolbar_reply_to_list_cb            (GtkWidget      *widget,
114                                                  gpointer        data);
115
116 static void toolbar_reply_to_sender_cb          (GtkWidget      *widget,
117                                                  gpointer        data);
118
119 static void toolbar_forward_cb                  (GtkWidget      *widget,
120                                                  gpointer        data);
121
122 static void toolbar_prev_unread_cb              (GtkWidget      *widget,
123                                                  gpointer        data);
124 static void toolbar_next_unread_cb              (GtkWidget      *widget,
125                                                  gpointer        data);
126
127 static void toolbar_ignore_thread_cb            (GtkWidget      *widget,
128                                                  gpointer        data);
129
130 static void toolbar_print_cb                    (GtkWidget      *widget,
131                                                  gpointer        data);
132
133 static void toolbar_actions_execute_cb          (GtkWidget      *widget,
134                                                  gpointer        data);
135
136
137 static void toolbar_send_cb                     (GtkWidget      *widget,
138                                                  gpointer        data);
139 static void toolbar_send_later_cb               (GtkWidget      *widget,
140                                                  gpointer        data);
141 static void toolbar_draft_cb                    (GtkWidget      *widget,
142                                                  gpointer        data);
143 static void toolbar_close_cb                    (GtkWidget      *widget,
144                                                  gpointer        data);
145 static void toolbar_open_mail_cb                (GtkWidget      *widget,
146                                                  gpointer        data);
147 static void toolbar_insert_cb                   (GtkWidget      *widget,
148                                                  gpointer        data);
149 static void toolbar_attach_cb                   (GtkWidget      *widget,
150                                                  gpointer        data);
151 static void toolbar_sig_cb                      (GtkWidget      *widget,
152                                                  gpointer        data);
153 static void toolbar_ext_editor_cb               (GtkWidget      *widget,
154                                                  gpointer        data);
155 static void toolbar_linewrap_current_cb         (GtkWidget      *widget,
156                                                  gpointer        data);
157 static void toolbar_linewrap_all_cb             (GtkWidget      *widget,
158                                                  gpointer        data);
159 static void toolbar_addrbook_cb                 (GtkWidget      *widget, 
160                                                  gpointer        data);
161 #ifdef USE_ASPELL
162 static void toolbar_check_spelling_cb           (GtkWidget      *widget, 
163                                                  gpointer        data);
164 #endif
165 static void toolbar_cancel_inc_cb               (GtkWidget      *widget,
166                                                  gpointer        data);
167
168 struct {
169         gchar *index_str;
170         const gchar *descr;
171 } toolbar_text [] = {
172         { "A_RECEIVE_ALL",      N_("Receive Mail on all Accounts")         },
173         { "A_RECEIVE_CUR",      N_("Receive Mail on current Account")      },
174         { "A_SEND_QUEUED",      N_("Send Queued Messages")                 },
175         { "A_COMPOSE_EMAIL",    N_("Compose Email")                        },
176         { "A_COMPOSE_NEWS",     N_("Compose News")                         },
177         { "A_REPLY_MESSAGE",    N_("Reply to Message")                     },
178         { "A_REPLY_SENDER",     N_("Reply to Sender")                      },
179         { "A_REPLY_ALL",        N_("Reply to All")                         },
180         { "A_REPLY_ML",         N_("Reply to Mailing-list")                },
181         { "A_OPEN_MAIL",        N_("Open email")                           },
182         { "A_FORWARD",          N_("Forward Message")                      }, 
183         { "A_TRASH",            N_("Trash Message")                        },
184         { "A_DELETE_REAL",      N_("Delete Message")                       },
185         { "A_EXECUTE",          N_("Execute")                              },
186         { "A_GOTO_PREV",        N_("Go to Previous Unread Message")        },
187         { "A_GOTO_NEXT",        N_("Go to Next Unread Message")            },
188         { "A_IGNORE_THREAD",    N_("Ignore thread")                        },
189         { "A_PRINT",            N_("Print")                                },
190         { "A_LEARN_SPAM",       N_("Learn Spam or Ham")                    },
191         { "A_GO_FOLDERS",       N_("Open folder/Go to folder list")        },
192
193         { "A_SEND",             N_("Send Message")                         },
194         { "A_SENDL",            N_("Put into queue folder and send later") },
195         { "A_DRAFT",            N_("Save to draft folder")                 },
196         { "A_INSERT",           N_("Insert file")                          },   
197         { "A_ATTACH",           N_("Attach file")                          },
198         { "A_SIG",              N_("Insert signature")                     },
199         { "A_EXTEDITOR",        N_("Edit with external editor")            },
200         { "A_LINEWRAP_CURRENT", N_("Wrap long lines of current paragraph") }, 
201         { "A_LINEWRAP_ALL",     N_("Wrap all long lines")                  }, 
202         { "A_ADDRBOOK",         N_("Address book")                         },
203 #ifdef USE_ASPELL
204         { "A_CHECK_SPELLING",   N_("Check spelling")                       },
205 #endif
206         { "A_SYL_ACTIONS",      N_("Claws Mail Actions Feature")           }, 
207         { "A_CANCEL_INC",       N_("Cancel receiving")                     },
208         { "A_CLOSE",            N_("Close window")                         },
209         { "A_SEPARATOR",        "Separator"                             }
210 };
211
212 /* struct holds configuration files and a list of
213  * currently active toolbar items 
214  * TOOLBAR_MAIN, TOOLBAR_COMPOSE and TOOLBAR_MSGVIEW
215  * give us an index
216  */
217 struct {
218         const gchar  *conf_file;
219         GSList       *item_list;
220 } toolbar_config[3] = {
221         { "toolbar_main.xml",    NULL},
222         { "toolbar_compose.xml", NULL}, 
223         { "toolbar_msgview.xml", NULL}
224 };
225
226 static GtkItemFactoryEntry reply_entries[] =
227 {
228         {N_("/Reply with _quote"), NULL,    toolbar_reply, COMPOSE_REPLY_WITH_QUOTE, NULL},
229         {N_("/_Reply without quote"), NULL, toolbar_reply, COMPOSE_REPLY_WITHOUT_QUOTE, NULL}
230 };
231 static GtkItemFactoryEntry replyall_entries[] =
232 {
233         {N_("/Reply to all with _quote"), "<shift>A", toolbar_reply, COMPOSE_REPLY_TO_ALL_WITH_QUOTE, NULL},
234         {N_("/_Reply to all without quote"), "a",     toolbar_reply, COMPOSE_REPLY_TO_ALL_WITHOUT_QUOTE, NULL}
235 };
236 static GtkItemFactoryEntry replylist_entries[] =
237 {
238         {N_("/Reply to list with _quote"),    NULL, toolbar_reply, COMPOSE_REPLY_TO_LIST_WITH_QUOTE, NULL},
239         {N_("/_Reply to list without quote"), NULL, toolbar_reply, COMPOSE_REPLY_TO_LIST_WITHOUT_QUOTE, NULL}
240 };
241 static GtkItemFactoryEntry replysender_entries[] =
242 {
243         {N_("/Reply to sender with _quote"),    NULL, toolbar_reply, COMPOSE_REPLY_TO_SENDER_WITH_QUOTE, NULL},
244         {N_("/_Reply to sender without quote"), NULL, toolbar_reply, COMPOSE_REPLY_TO_SENDER_WITHOUT_QUOTE, NULL}
245 };
246 static GtkItemFactoryEntry forward_entries[] =
247 {
248         {N_("/_Forward"),               "f",        toolbar_reply, COMPOSE_FORWARD_INLINE, NULL},
249         {N_("/For_ward as attachment"), "<shift>F", toolbar_reply, COMPOSE_FORWARD_AS_ATTACH, NULL},
250         {N_("/Redirec_t"),              NULL,       toolbar_reply, COMPOSE_REDIRECT, NULL}
251 };
252 static GtkItemFactoryEntry learn_entries[] =
253 {
254         {N_("/Learn as _Spam"),         NULL,   toolbar_learn, TRUE, NULL},
255         {N_("/Learn as _Ham"),          NULL,   toolbar_learn, FALSE, NULL}
256 };
257
258
259 gint toolbar_ret_val_from_descr(const gchar *descr)
260 {
261         gint i;
262
263         for (i = 0; i < N_ACTION_VAL; i++) {
264                 if (g_utf8_collate(gettext(toolbar_text[i].descr), descr) == 0)
265                                 return i;
266         }
267         
268         return -1;
269 }
270
271 gchar *toolbar_ret_descr_from_val(gint val)
272 {
273         g_return_val_if_fail(val >=0 && val < N_ACTION_VAL, NULL);
274
275         return gettext(toolbar_text[val].descr);
276 }
277
278 static gint toolbar_ret_val_from_text(const gchar *text)
279 {
280         gint i;
281         
282         for (i = 0; i < N_ACTION_VAL; i++) {
283                 if (g_utf8_collate(toolbar_text[i].index_str, text) == 0)
284                                 return i;
285         }
286
287         return -1;
288 }
289
290 static gchar *toolbar_ret_text_from_val(gint val)
291 {
292         g_return_val_if_fail(val >=0 && val < N_ACTION_VAL, NULL);
293
294         return toolbar_text[val].index_str;
295 }
296
297 static gboolean toolbar_is_duplicate(gint action, ToolbarType source)
298 {
299         GSList *cur;
300
301         if ((action == A_SEPARATOR) || (action == A_SYL_ACTIONS)) 
302                 return FALSE;
303
304         for (cur = toolbar_config[source].item_list; cur != NULL; cur = cur->next) {
305                 ToolbarItem *item = (ToolbarItem*) cur->data;
306                 
307                 if (item->index == action)
308                         return TRUE;
309         }
310         return FALSE;
311 }
312
313 /* depending on toolbar type this function 
314    returns a list of available toolbar events being 
315    displayed by prefs_toolbar
316 */
317 GList *toolbar_get_action_items(ToolbarType source)
318 {
319         GList *items = NULL;
320         gint i = 0;
321         
322         if (source == TOOLBAR_MAIN) {
323                 gint main_items[]   = { A_RECEIVE_ALL,   A_RECEIVE_CUR,   A_SEND_QUEUED,
324                                         A_COMPOSE_EMAIL, A_REPLY_MESSAGE, A_REPLY_SENDER, 
325                                         A_REPLY_ALL,     A_REPLY_ML,      A_OPEN_MAIL,  A_FORWARD, 
326                                         A_TRASH , A_DELETE_REAL,       A_EXECUTE,       A_GOTO_PREV, 
327                                         A_GOTO_NEXT,    A_IGNORE_THREAD,  A_PRINT,
328                                         A_ADDRBOOK,     A_LEARN_SPAM, A_GO_FOLDERS, 
329                                         A_SYL_ACTIONS, A_CANCEL_INC };
330
331                 for (i = 0; i < sizeof main_items / sizeof main_items[0]; i++)  {
332                         items = g_list_append(items, gettext(toolbar_text[main_items[i]].descr));
333                 }       
334         }
335         else if (source == TOOLBAR_COMPOSE) {
336                 gint comp_items[] =   { A_SEND,          A_SENDL,        A_DRAFT,
337                                         A_INSERT,        A_ATTACH,       A_SIG,
338                                         A_EXTEDITOR,     A_LINEWRAP_CURRENT,     
339                                         A_LINEWRAP_ALL,  A_ADDRBOOK,
340 #ifdef USE_ASPELL
341                                         A_CHECK_SPELLING, 
342 #endif
343                                         A_SYL_ACTIONS, A_CLOSE };       
344
345                 for (i = 0; i < sizeof comp_items / sizeof comp_items[0]; i++) 
346                         items = g_list_append(items, gettext(toolbar_text[comp_items[i]].descr));
347         }
348         else if (source == TOOLBAR_MSGVIEW) {
349                 gint msgv_items[] =   { A_COMPOSE_EMAIL, A_REPLY_MESSAGE, A_REPLY_SENDER,
350                                         A_REPLY_ALL,     A_REPLY_ML,      A_FORWARD,
351                                         A_TRASH, A_DELETE_REAL,       A_GOTO_PREV,        A_GOTO_NEXT,
352                                         A_ADDRBOOK,      A_LEARN_SPAM, A_SYL_ACTIONS, A_CLOSE };        
353
354                 for (i = 0; i < sizeof msgv_items / sizeof msgv_items[0]; i++) 
355                         items = g_list_append(items, gettext(toolbar_text[msgv_items[i]].descr));
356         }
357
358         return items;
359 }
360
361 static void toolbar_parse_item(XMLFile *file, ToolbarType source)
362 {
363         GList *attr;
364         gchar *name, *value;
365         ToolbarItem *item = NULL;
366         gboolean rewrite = FALSE;
367
368         attr = xml_get_current_tag_attr(file);
369         item = g_new0(ToolbarItem, 1);
370         while( attr ) {
371                 name = ((XMLAttr *)attr->data)->name;
372                 value = ((XMLAttr *)attr->data)->value;
373                 
374                 if (g_utf8_collate(name, TOOLBAR_ICON_FILE) == 0) 
375                         item->file = g_strdup (value);
376                 else if (g_utf8_collate(name, TOOLBAR_ICON_TEXT) == 0)
377                         item->text = g_strdup (gettext(value));
378                 else if (g_utf8_collate(name, TOOLBAR_ICON_ACTION) == 0)
379                         item->index = toolbar_ret_val_from_text(value);
380                 if (item->index == -1 && !strcmp(value, "A_DELETE")) {
381                         /* switch button */
382                         item->index = A_TRASH;
383                         g_free(item->file);
384                         item->file = g_strdup("trash_btn");
385                         g_free(item->text);
386                         item->text = g_strdup(_("Trash"));
387                         rewrite = TRUE;
388                 }
389                 attr = g_list_next(attr);
390         }
391         if (item->index != -1) {
392                 
393                 if (!toolbar_is_duplicate(item->index, source)) 
394                         toolbar_config[source].item_list = g_slist_append(toolbar_config[source].item_list,
395                                                                          item);
396         }
397         if (rewrite) {
398                 toolbar_save_config_file(source);
399         }
400 }
401
402 static void toolbar_set_default_main(void) 
403 {
404         struct {
405                 gint action;
406                 gint icon;
407                 gchar *text;
408         } default_toolbar[] = {
409 #ifdef MAEMO
410                 { A_GO_FOLDERS,    STOCK_PIXMAP_GO_FOLDERS,             _("Folders") },
411                 { A_SEPARATOR,     0,                                 ("")         }, 
412 #endif
413                 { A_RECEIVE_ALL,   STOCK_PIXMAP_MAIL_RECEIVE_ALL,     _("Get Mail")},
414                 { A_SEPARATOR,     0,                                 ("")         }, 
415                 { A_SEND_QUEUED,   STOCK_PIXMAP_MAIL_SEND_QUEUE,      _("Send")    },
416                 { A_COMPOSE_EMAIL, STOCK_PIXMAP_MAIL_COMPOSE,
417                         (gchar*)Q_("Toolbar|Compose") },
418                 { A_SEPARATOR,     0,                                 ("")         },
419 #ifdef MAEMO
420                 { A_OPEN_MAIL,     STOCK_PIXMAP_OPEN_MAIL,            _("Open")    },
421 #endif
422                 { A_REPLY_MESSAGE, STOCK_PIXMAP_MAIL_REPLY,           _("Reply")   }, 
423 #ifndef MAEMO
424                 { A_REPLY_ALL,     STOCK_PIXMAP_MAIL_REPLY_TO_ALL,    _("All")     },
425                 { A_REPLY_SENDER,  STOCK_PIXMAP_MAIL_REPLY_TO_AUTHOR, _("Sender")  },
426 #endif
427                 { A_FORWARD,       STOCK_PIXMAP_MAIL_FORWARD,         _("Forward") },
428                 { A_SEPARATOR,     0,                                 ("")         },
429                 { A_TRASH,         STOCK_PIXMAP_TRASH,                _("Trash")   },
430 #ifndef MAEMO
431 #if (defined(USE_SPAMASSASSIN_PLUGIN) || defined(USE_BOGOFILTER_PLUGIN))
432                 { A_LEARN_SPAM,    STOCK_PIXMAP_SPAM_BTN,             _("Spam")    },
433 #endif
434 #endif
435                 { A_SEPARATOR,     0,                                 ("")         },
436                 { A_GOTO_NEXT,     STOCK_PIXMAP_DOWN_ARROW,           _("Next")    }
437         };
438         
439         gint i;
440         
441         for (i = 0; i < sizeof(default_toolbar) / sizeof(default_toolbar[0]); i++) {
442                 
443                 ToolbarItem *toolbar_item = g_new0(ToolbarItem, 1);
444                 
445                 if (default_toolbar[i].action != A_SEPARATOR) {
446                         
447                         gchar *file = stock_pixmap_get_name((StockPixmap)default_toolbar[i].icon);
448                         
449                         toolbar_item->file  = g_strdup(file);
450                         toolbar_item->index = default_toolbar[i].action;
451                         toolbar_item->text  = g_strdup(default_toolbar[i].text);
452                 } else {
453
454                         toolbar_item->file  = g_strdup(TOOLBAR_TAG_SEPARATOR);
455                         toolbar_item->index = A_SEPARATOR;
456                 }
457                 
458                 if (toolbar_item->index != -1) {
459                         if ( !toolbar_is_duplicate(toolbar_item->index, TOOLBAR_MAIN)) 
460                                 toolbar_config[TOOLBAR_MAIN].item_list = 
461                                         g_slist_append(toolbar_config[TOOLBAR_MAIN].item_list, toolbar_item);
462                 }       
463         }
464 }
465
466 static void toolbar_set_default_compose(void)
467 {
468         struct {
469                 gint action;
470                 gint icon;
471                 gchar *text;
472         } default_toolbar[] = {
473                 { A_SEND,               STOCK_PIXMAP_MAIL_SEND,         _("Send")               },
474                 { A_SENDL,              STOCK_PIXMAP_MAIL_SEND_QUEUE,   _("Send later")         },
475                 { A_DRAFT,              STOCK_PIXMAP_MAIL,              _("Draft")              },
476                 { A_SEPARATOR,          0,                               ("")                   }, 
477 #ifndef MAEMO
478                 { A_INSERT,             STOCK_PIXMAP_INSERT_FILE,       _("Insert")             },
479 #endif
480                 { A_ATTACH,             STOCK_PIXMAP_MAIL_ATTACH,       _("Attach")             },
481                 { A_SEPARATOR,          0,                               ("")                   },
482                 { A_ADDRBOOK,           STOCK_PIXMAP_ADDRESS_BOOK,      _("Address")            }
483 #ifdef MAEMO
484                 ,
485                 { A_SEPARATOR,          0,                               ("")                   }, 
486                 { A_CLOSE,              STOCK_PIXMAP_CLOSE,             _("Close")              }
487 #endif
488         };
489         
490         gint i;
491
492         for (i = 0; i < sizeof(default_toolbar) / sizeof(default_toolbar[0]); i++) {
493                 
494                 ToolbarItem *toolbar_item = g_new0(ToolbarItem, 1);
495                 
496                 if (default_toolbar[i].action != A_SEPARATOR) {
497                         
498                         gchar *file = stock_pixmap_get_name((StockPixmap)default_toolbar[i].icon);
499                         
500                         toolbar_item->file  = g_strdup(file);
501                         toolbar_item->index = default_toolbar[i].action;
502                         toolbar_item->text  = g_strdup(default_toolbar[i].text);
503                 } else {
504
505                         toolbar_item->file  = g_strdup(TOOLBAR_TAG_SEPARATOR);
506                         toolbar_item->index = A_SEPARATOR;
507                 }
508                 
509                 if (toolbar_item->index != -1) {
510                         if ( !toolbar_is_duplicate(toolbar_item->index, TOOLBAR_COMPOSE)) 
511                                 toolbar_config[TOOLBAR_COMPOSE].item_list = 
512                                         g_slist_append(toolbar_config[TOOLBAR_COMPOSE].item_list, toolbar_item);
513                 }       
514         }
515 }
516
517 static void toolbar_set_default_msgview(void)
518 {
519         struct {
520                 gint action;
521                 gint icon;
522                 gchar *text;
523         } default_toolbar[] = {
524                 { A_REPLY_MESSAGE, STOCK_PIXMAP_MAIL_REPLY,           _("Reply")   }, 
525                 { A_REPLY_ALL,     STOCK_PIXMAP_MAIL_REPLY_TO_ALL,    _("All")     },
526                 { A_REPLY_SENDER,  STOCK_PIXMAP_MAIL_REPLY_TO_AUTHOR, _("Sender")  },
527                 { A_FORWARD,       STOCK_PIXMAP_MAIL_FORWARD,         _("Forward") },
528                 { A_SEPARATOR,     0,                                 ("")         },
529                 { A_TRASH,         STOCK_PIXMAP_TRASH,                _("Trash")   },
530 #ifndef MAEMO
531 #if (defined(USE_SPAMASSASSIN_PLUGIN) || defined(USE_BOGOFILTER_PLUGIN))
532                 { A_LEARN_SPAM,    STOCK_PIXMAP_SPAM_BTN,             _("Spam")    },
533 #endif
534 #endif
535                 { A_GOTO_NEXT,     STOCK_PIXMAP_DOWN_ARROW,           _("Next")    }
536 #ifdef MAEMO
537                 ,
538                 { A_SEPARATOR,          0,                               ("")      }, 
539                 { A_CLOSE,              STOCK_PIXMAP_CLOSE,             _("Close") }
540 #endif
541         };
542         
543         gint i;
544
545         for (i = 0; i < sizeof(default_toolbar) / sizeof(default_toolbar[0]); i++) {
546                 
547                 ToolbarItem *toolbar_item = g_new0(ToolbarItem, 1);
548                 
549                 if (default_toolbar[i].action != A_SEPARATOR) {
550                         
551                         gchar *file = stock_pixmap_get_name((StockPixmap)default_toolbar[i].icon);
552                         
553                         toolbar_item->file  = g_strdup(file);
554                         toolbar_item->index = default_toolbar[i].action;
555                         toolbar_item->text  = g_strdup(default_toolbar[i].text);
556                 } else {
557
558                         toolbar_item->file  = g_strdup(TOOLBAR_TAG_SEPARATOR);
559                         toolbar_item->index = A_SEPARATOR;
560                 }
561                 
562                 if (toolbar_item->index != -1) {
563                         if ( !toolbar_is_duplicate(toolbar_item->index, TOOLBAR_MSGVIEW)) 
564                                 toolbar_config[TOOLBAR_MSGVIEW].item_list = 
565                                         g_slist_append(toolbar_config[TOOLBAR_MSGVIEW].item_list, toolbar_item);
566                 }       
567         }
568 }
569
570 void toolbar_set_default(ToolbarType source)
571 {
572         if (source == TOOLBAR_MAIN)
573                 toolbar_set_default_main();
574         else if  (source == TOOLBAR_COMPOSE)
575                 toolbar_set_default_compose();
576         else if  (source == TOOLBAR_MSGVIEW)
577                 toolbar_set_default_msgview();
578 }
579
580 void toolbar_save_config_file(ToolbarType source)
581 {
582         GSList *cur;
583         FILE *fp;
584         PrefFile *pfile;
585         gchar *fileSpec = NULL;
586
587         debug_print("save Toolbar Configuration to %s\n", toolbar_config[source].conf_file);
588
589         fileSpec = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, toolbar_config[source].conf_file, NULL );
590         pfile = prefs_write_open(fileSpec);
591         g_free( fileSpec );
592         if( pfile ) {
593                 fp = pfile->fp;
594                 fprintf(fp, "<?xml version=\"1.0\" encoding=\"%s\" ?>\n", CS_INTERNAL);
595
596                 fprintf(fp, "<%s>\n", TOOLBAR_TAG_INDEX);
597
598                 for (cur = toolbar_config[source].item_list; cur != NULL; cur = cur->next) {
599                         ToolbarItem *toolbar_item = (ToolbarItem*) cur->data;
600                         
601                         if (toolbar_item->index != A_SEPARATOR) {
602                                 fprintf(fp, "\t<%s %s=\"%s\" %s=\"",
603                                         TOOLBAR_TAG_ITEM, 
604                                         TOOLBAR_ICON_FILE, toolbar_item->file,
605                                         TOOLBAR_ICON_TEXT);
606                                 xml_file_put_escape_str(fp, toolbar_item->text);
607                                 fprintf(fp, "\" %s=\"%s\"/>\n",
608                                         TOOLBAR_ICON_ACTION, 
609                                         toolbar_ret_text_from_val(toolbar_item->index));
610                         } else {
611                                 fprintf(fp, "\t<%s/>\n", TOOLBAR_TAG_SEPARATOR); 
612                         }
613                 }
614
615                 fprintf(fp, "</%s>\n", TOOLBAR_TAG_INDEX);      
616         
617                 if (prefs_file_close (pfile) < 0 ) 
618                         g_warning("failed to write toolbar configuration to file\n");
619         } else
620                 g_warning("failed to open toolbar configuration file for writing\n");
621 }
622
623 void toolbar_read_config_file(ToolbarType source)
624 {
625         XMLFile *file   = NULL;
626         gchar *fileSpec = NULL;
627         GList *attr;
628         gboolean retVal;
629         jmp_buf    jumper;
630
631         debug_print("read Toolbar Configuration from %s\n", toolbar_config[source].conf_file);
632
633         fileSpec = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, toolbar_config[source].conf_file, NULL );
634         file = xml_open_file(fileSpec);
635         g_free(fileSpec);
636
637         toolbar_clear_list(source);
638
639         if (file) {
640                 if ((setjmp(jumper))
641                 || (xml_get_dtd(file))
642                 || (xml_parse_next_tag(file))
643                 || (!xml_compare_tag(file, TOOLBAR_TAG_INDEX))) {
644                         xml_close_file(file);
645                         return;
646                 }
647
648                 attr = xml_get_current_tag_attr(file);
649                 
650                 retVal = TRUE;
651                 for (;;) {
652                         if (!file->level) 
653                                 break;
654                         /* Get item tag */
655                         if (xml_parse_next_tag(file)) 
656                                 longjmp(jumper, 1);
657
658                         /* Get next tag (icon, icon_text or icon_action) */
659                         if (xml_compare_tag(file, TOOLBAR_TAG_ITEM)) {
660                                 toolbar_parse_item(file, source);
661                         } else if (xml_compare_tag(file, TOOLBAR_TAG_SEPARATOR)) {
662                                 ToolbarItem *item = g_new0(ToolbarItem, 1);
663                         
664                                 item->file   = g_strdup(toolbar_ret_descr_from_val(A_SEPARATOR));
665                                 item->index  = A_SEPARATOR;
666                                 toolbar_config[source].item_list = 
667                                         g_slist_append(toolbar_config[source].item_list, item);
668                         }
669
670                 }
671                 xml_close_file(file);
672         }
673
674         if ((!file) || (g_slist_length(toolbar_config[source].item_list) == 0)) {
675
676                 if (source == TOOLBAR_MAIN) 
677                         toolbar_set_default(TOOLBAR_MAIN);
678                 else if (source == TOOLBAR_COMPOSE) 
679                         toolbar_set_default(TOOLBAR_COMPOSE);
680                 else if (source == TOOLBAR_MSGVIEW) 
681                         toolbar_set_default(TOOLBAR_MSGVIEW);
682                 else {          
683                         g_warning("failed to write Toolbar Configuration to %s\n", toolbar_config[source].conf_file);
684                         return;
685                 }
686
687                 toolbar_save_config_file(source);
688         }
689 }
690
691 /*
692  * clears list of toolbar items read from configuration files
693  */
694 void toolbar_clear_list(ToolbarType source)
695 {
696         while (toolbar_config[source].item_list != NULL) {
697                 ToolbarItem *item = (ToolbarItem*) toolbar_config[source].item_list->data;
698                 
699                 toolbar_config[source].item_list = 
700                         g_slist_remove(toolbar_config[source].item_list, item);
701
702                 g_free(item->file);
703                 g_free(item->text);
704                 g_free(item);   
705         }
706         g_slist_free(toolbar_config[source].item_list);
707 }
708
709
710 /* 
711  * return list of Toolbar items
712  */
713 GSList *toolbar_get_list(ToolbarType source)
714 {
715         GSList *list = NULL;
716
717         if ((source == TOOLBAR_MAIN) || (source == TOOLBAR_COMPOSE) || (source == TOOLBAR_MSGVIEW))
718                 list = toolbar_config[source].item_list;
719
720         return list;
721 }
722
723 void toolbar_set_list_item(ToolbarItem *t_item, ToolbarType source)
724 {
725         ToolbarItem *toolbar_item = g_new0(ToolbarItem, 1);
726
727         toolbar_item->file  = g_strdup(t_item->file);
728         toolbar_item->text  = g_strdup(t_item->text);
729         toolbar_item->index = t_item->index;
730         
731         toolbar_config[source].item_list = 
732                 g_slist_append(toolbar_config[source].item_list,
733                                toolbar_item);
734 }
735
736 void toolbar_action_execute(GtkWidget    *widget,
737                             GSList       *action_list, 
738                             gpointer     data,
739                             gint         source) 
740 {
741         GSList *cur, *lop;
742         gchar *action, *action_p;
743         gboolean found = FALSE;
744         gint i = 0;
745
746         for (cur = action_list; cur != NULL;  cur = cur->next) {
747                 ToolbarSylpheedActions *act = (ToolbarSylpheedActions*)cur->data;
748
749                 if (widget == act->widget) {
750                         
751                         for (lop = prefs_common.actions_list; lop != NULL; lop = lop->next) {
752                                 action = g_strdup((gchar*)lop->data);
753
754                                 action_p = strstr(action, ": ");
755                                 action_p[0] = 0x00;
756                                 if (g_utf8_collate(act->name, action) == 0) {
757                                         found = TRUE;
758                                         g_free(action);
759                                         break;
760                                 } else 
761                                         i++;
762                                 g_free(action);
763                         }
764                         if (found) 
765                                 break;
766                 }
767         }
768
769         if (found) 
770                 actions_execute(data, i, widget, source);
771         else
772                 g_warning ("Error: did not find Claws Action to execute");
773 }
774
775 static void activate_compose_button (Toolbar           *toolbar,
776                                      ToolbarStyle      style,
777                                      ComposeButtonType type)
778 {
779         if ((!toolbar->compose_mail_btn) || (!toolbar->compose_news_btn))
780                 return;
781         gtk_widget_hide(type == COMPOSEBUTTON_NEWS ? toolbar->compose_mail_btn 
782                         : toolbar->compose_news_btn);
783         gtk_widget_show_now(type == COMPOSEBUTTON_NEWS ? toolbar->compose_news_btn
784                         : toolbar->compose_mail_btn);
785         toolbar->compose_btn_type = type;
786         gtk_widget_queue_resize(toolbar->toolbar);
787         gtk_widget_show_now(toolbar->toolbar);
788         GTK_EVENTS_FLUSH();
789 }
790
791 void toolbar_set_compose_button(Toolbar            *toolbar, 
792                                 ComposeButtonType  compose_btn_type)
793 {
794         if (toolbar->compose_btn_type != compose_btn_type)
795                 activate_compose_button(toolbar, 
796                                         prefs_common.toolbar_style,
797                                         compose_btn_type);
798 }
799
800 static void activate_learn_button (Toolbar           *toolbar,
801                                      ToolbarStyle      style,
802                                      LearnButtonType type)
803 {
804         if ((!toolbar->learn_spam_btn) || (!toolbar->learn_ham_btn))
805                 return;
806
807         gtk_widget_hide(type == LEARN_SPAM ? toolbar->learn_ham_btn 
808                         : toolbar->learn_spam_btn);
809         gtk_widget_show_now(type == LEARN_SPAM ? toolbar->learn_spam_btn
810                         : toolbar->learn_ham_btn);
811         toolbar->learn_btn_type = type; 
812         gtk_widget_queue_resize(toolbar->toolbar);
813         gtk_widget_show_now(toolbar->toolbar);
814         GTK_EVENTS_FLUSH();
815 }
816
817 void toolbar_set_learn_button(Toolbar            *toolbar, 
818                                 LearnButtonType  learn_btn_type)
819 {
820         if (toolbar->learn_btn_type != learn_btn_type)
821                 activate_learn_button(toolbar, 
822                                         prefs_common.toolbar_style,
823                                         learn_btn_type);
824 }
825
826 void toolbar_toggle(guint action, gpointer data)
827 {
828         MainWindow *mainwin = (MainWindow*)data;
829         GList *list;
830         GList *cur;
831
832         g_return_if_fail(mainwin != NULL);
833
834         toolbar_style(TOOLBAR_MAIN, action, mainwin);
835
836         list = compose_get_compose_list();
837         for (cur = list; cur != NULL; cur = cur->next) {
838                 toolbar_style(TOOLBAR_COMPOSE, action, cur->data);
839         }
840         list = messageview_get_msgview_list();
841         for (cur = list; cur != NULL; cur = cur->next) {
842                 toolbar_style(TOOLBAR_MSGVIEW, action, cur->data);
843         }
844         
845 }
846
847 void toolbar_set_style(GtkWidget *toolbar_wid, GtkWidget *handlebox_wid, guint action)
848 {
849         switch ((ToolbarStyle)action) {
850         case TOOLBAR_NONE:
851                 gtk_widget_hide(handlebox_wid);
852                 break;
853         case TOOLBAR_ICON:
854                 gtk_toolbar_set_style(GTK_TOOLBAR(toolbar_wid),
855                                       GTK_TOOLBAR_ICONS);
856                 break;
857         case TOOLBAR_TEXT:
858                 gtk_toolbar_set_style(GTK_TOOLBAR(toolbar_wid),
859                                       GTK_TOOLBAR_TEXT);
860                 break;
861         case TOOLBAR_BOTH:
862                 gtk_toolbar_set_style(GTK_TOOLBAR(toolbar_wid),
863                                       GTK_TOOLBAR_BOTH);
864                 break;
865         case TOOLBAR_BOTH_HORIZ:
866                 gtk_toolbar_set_style(GTK_TOOLBAR(toolbar_wid),
867                                       GTK_TOOLBAR_BOTH_HORIZ);
868                 break;
869         default:
870                 return;
871         }
872
873         prefs_common.toolbar_style = (ToolbarStyle)action;
874         gtk_widget_set_size_request(handlebox_wid, 1, -1);
875         
876         if (prefs_common.toolbar_style != TOOLBAR_NONE) {
877                 gtk_widget_show(handlebox_wid);
878                 gtk_widget_queue_resize(handlebox_wid);
879         }
880 }
881 /*
882  * Change the style of toolbar
883  */
884 static void toolbar_style(ToolbarType type, guint action, gpointer data)
885 {
886         GtkWidget  *handlebox_wid;
887         GtkWidget  *toolbar_wid;
888         MainWindow *mainwin = (MainWindow*)data;
889         Compose    *compose = (Compose*)data;
890         MessageView *msgview = (MessageView*)data;
891         
892         g_return_if_fail(data != NULL);
893         
894         switch (type) {
895         case TOOLBAR_MAIN:
896                 handlebox_wid = mainwin->handlebox;
897                 toolbar_wid = mainwin->toolbar->toolbar;
898                 break;
899         case TOOLBAR_COMPOSE:
900                 handlebox_wid = compose->handlebox;
901                 toolbar_wid = compose->toolbar->toolbar;
902                 break;
903         case TOOLBAR_MSGVIEW: 
904                 handlebox_wid = msgview->handlebox;
905                 toolbar_wid = msgview->toolbar->toolbar;
906                 break;
907         default:
908
909                 return;
910         }
911         toolbar_set_style(toolbar_wid, handlebox_wid, action);
912 }
913
914 /* Toolbar handling */
915 static void toolbar_inc_cb(GtkWidget    *widget,
916                            gpointer      data)
917 {
918         ToolbarItem *toolbar_item = (ToolbarItem*)data;
919         MainWindow *mainwin;
920
921         g_return_if_fail(toolbar_item != NULL);
922
923         switch (toolbar_item->type) {
924         case TOOLBAR_MAIN:
925                 mainwin = (MainWindow*)toolbar_item->parent;    
926                 inc_mail_cb(mainwin, 0, NULL);
927                 break;
928         default:
929                 break;
930         }
931 }
932
933 static void toolbar_inc_all_cb(GtkWidget        *widget,
934                                gpointer          data)
935 {
936         ToolbarItem *toolbar_item = (ToolbarItem*)data;
937         MainWindow *mainwin;
938
939         g_return_if_fail(toolbar_item != NULL);
940
941         switch (toolbar_item->type) {
942         case TOOLBAR_MAIN:
943                 mainwin = (MainWindow*)toolbar_item->parent;
944                 inc_all_account_mail_cb(mainwin, 0, NULL);
945                 break;
946         default:
947                 break;
948         }
949 }
950
951 static void toolbar_send_queued_cb(GtkWidget *widget,gpointer data)
952 {
953         ToolbarItem *toolbar_item = (ToolbarItem*)data;
954         MainWindow *mainwin;
955
956         g_return_if_fail(toolbar_item != NULL);
957
958         switch (toolbar_item->type) {
959         case TOOLBAR_MAIN:
960                 mainwin = (MainWindow*)toolbar_item->parent;
961                 send_queue_cb(mainwin, 0, NULL);
962                 break;
963         default:
964                 break;
965         }
966 }
967
968 static void toolbar_exec_cb(GtkWidget   *widget,
969                             gpointer     data)
970 {
971         MainWindow *mainwin = get_mainwin(data);
972
973         g_return_if_fail(mainwin != NULL);
974         summary_execute(mainwin->summaryview);
975 }
976
977 /*
978  * Delete current/selected(s) message(s)
979  */
980 static void toolbar_trash_cb(GtkWidget *widget, gpointer data)
981 {
982         ToolbarItem *toolbar_item = (ToolbarItem*)data;
983         MainWindow *mainwin;
984
985         g_return_if_fail(toolbar_item != NULL);
986         g_return_if_fail(toolbar_item->parent);
987         
988         switch (toolbar_item->type) {
989         case TOOLBAR_MSGVIEW:
990                 messageview_delete((MessageView *)toolbar_item->parent);
991                 break;
992         case TOOLBAR_MAIN:
993                 mainwin = (MainWindow *)toolbar_item->parent;
994                 summary_delete_trash(mainwin->summaryview);
995                 break;
996         default: 
997                 debug_print("toolbar event not supported\n");
998                 break;
999         }
1000 }
1001
1002 /*
1003  * Delete current/selected(s) message(s)
1004  */
1005 static void toolbar_delete_cb(GtkWidget *widget, gpointer data)
1006 {
1007         ToolbarItem *toolbar_item = (ToolbarItem*)data;
1008         MainWindow *mainwin;
1009
1010         g_return_if_fail(toolbar_item != NULL);
1011         g_return_if_fail(toolbar_item->parent);
1012         
1013         switch (toolbar_item->type) {
1014         case TOOLBAR_MSGVIEW:
1015                 messageview_delete((MessageView *)toolbar_item->parent);
1016                 break;
1017         case TOOLBAR_MAIN:
1018                 mainwin = (MainWindow *)toolbar_item->parent;
1019                 summary_delete(mainwin->summaryview);
1020                 break;
1021         default: 
1022                 debug_print("toolbar event not supported\n");
1023                 break;
1024         }
1025 }
1026
1027
1028 /*
1029  * Compose new message
1030  */
1031 static void toolbar_compose_cb(GtkWidget *widget, gpointer data)
1032 {
1033         ToolbarItem *toolbar_item = (ToolbarItem*)data;
1034         MainWindow *mainwin;
1035         MessageView *msgview;
1036
1037         g_return_if_fail(toolbar_item != NULL);
1038
1039         switch (toolbar_item->type) {
1040         case TOOLBAR_MAIN:
1041                 mainwin = (MainWindow*)toolbar_item->parent;
1042                 if (mainwin->toolbar->compose_btn_type == COMPOSEBUTTON_NEWS) 
1043                         compose_news_cb(mainwin, 0, NULL);
1044                 else
1045                         compose_mail_cb(mainwin, 0, NULL);
1046                 break;
1047         case TOOLBAR_MSGVIEW:
1048                 msgview = (MessageView*)toolbar_item->parent;
1049                 compose_new_with_folderitem(NULL, 
1050                                             msgview->msginfo->folder, NULL);
1051                 break;  
1052         default:
1053                 debug_print("toolbar event not supported\n");
1054         }
1055 }
1056
1057 static void toolbar_learn(gpointer data, guint as_spam)
1058 {
1059         ToolbarItem *toolbar_item = (ToolbarItem*)data;
1060         MainWindow *mainwin;
1061         MessageView *msgview;
1062
1063         g_return_if_fail(toolbar_item != NULL);
1064
1065         switch (toolbar_item->type) {
1066         case TOOLBAR_MAIN:
1067                 mainwin = (MainWindow*)toolbar_item->parent;
1068                 if (as_spam) 
1069                         mainwindow_learn(mainwin, TRUE);
1070                 else
1071                         mainwindow_learn(mainwin, FALSE);
1072                 break;
1073         case TOOLBAR_MSGVIEW:
1074                 msgview = (MessageView*)toolbar_item->parent;
1075                 if (as_spam) 
1076                         messageview_learn(msgview, TRUE);
1077                 else
1078                         messageview_learn(msgview, FALSE);
1079                 break;
1080         default:
1081                 debug_print("toolbar event not supported\n");
1082         }
1083 }
1084
1085 static void toolbar_learn_cb(GtkWidget *widget, gpointer data)
1086 {
1087         ToolbarItem *toolbar_item = (ToolbarItem*)data;
1088         MainWindow *mainwin;
1089         MessageView *msgview;
1090
1091         g_return_if_fail(toolbar_item != NULL);
1092
1093         switch (toolbar_item->type) {
1094         case TOOLBAR_MAIN:
1095                 mainwin = (MainWindow*)toolbar_item->parent;
1096                 if (mainwin->toolbar->learn_btn_type == LEARN_SPAM) 
1097                         mainwindow_learn(mainwin, TRUE);
1098                 else
1099                         mainwindow_learn(mainwin, FALSE);
1100                 break;
1101         case TOOLBAR_MSGVIEW:
1102                 msgview = (MessageView*)toolbar_item->parent;
1103                 if (msgview->toolbar->learn_btn_type == LEARN_SPAM) 
1104                         messageview_learn(msgview, TRUE);
1105                 else
1106                         messageview_learn(msgview, FALSE);
1107                 break;
1108         default:
1109                 debug_print("toolbar event not supported\n");
1110         }
1111 }
1112
1113
1114 /*
1115  * Reply Message
1116  */
1117 static void toolbar_reply_cb(GtkWidget *widget, gpointer data)
1118 {
1119         toolbar_reply(data, prefs_common.reply_with_quote ? 
1120                       COMPOSE_REPLY_WITH_QUOTE : COMPOSE_REPLY_WITHOUT_QUOTE);
1121 }
1122
1123
1124 /*
1125  * Reply message to Sender and All recipients
1126  */
1127 static void toolbar_reply_to_all_cb(GtkWidget *widget, gpointer data)
1128 {
1129         toolbar_reply(data,
1130                       prefs_common.reply_with_quote ? COMPOSE_REPLY_TO_ALL_WITH_QUOTE 
1131                       : COMPOSE_REPLY_TO_ALL_WITHOUT_QUOTE);
1132 }
1133
1134
1135 /*
1136  * Reply to Mailing List
1137  */
1138 static void toolbar_reply_to_list_cb(GtkWidget *widget, gpointer data)
1139 {
1140         toolbar_reply(data, 
1141                       prefs_common.reply_with_quote ? COMPOSE_REPLY_TO_LIST_WITH_QUOTE 
1142                       : COMPOSE_REPLY_TO_LIST_WITHOUT_QUOTE);
1143 }
1144
1145
1146 /*
1147  * Reply to sender of message
1148  */ 
1149 static void toolbar_reply_to_sender_cb(GtkWidget *widget, gpointer data)
1150 {
1151         toolbar_reply(data, 
1152                       prefs_common.reply_with_quote ? COMPOSE_REPLY_TO_SENDER_WITH_QUOTE 
1153                       : COMPOSE_REPLY_TO_SENDER_WITHOUT_QUOTE);
1154 }
1155
1156 /*
1157  * Open addressbook
1158  */ 
1159 static void toolbar_addrbook_cb(GtkWidget *widget, gpointer data)
1160 {
1161         ToolbarItem *toolbar_item = (ToolbarItem*)data;
1162         Compose *compose;
1163
1164         g_return_if_fail(toolbar_item != NULL);
1165
1166         switch (toolbar_item->type) {
1167         case TOOLBAR_MAIN:
1168         case TOOLBAR_MSGVIEW:
1169                 compose = NULL;
1170                 break;
1171         case TOOLBAR_COMPOSE:
1172                 compose = (Compose *)toolbar_item->parent;
1173                 break;
1174         default:
1175                 return;
1176         }
1177         addressbook_open(compose);
1178 }
1179
1180
1181 /*
1182  * Forward current/selected(s) message(s)
1183  */
1184 static void toolbar_forward_cb(GtkWidget *widget, gpointer data)
1185 {
1186         toolbar_reply(data, COMPOSE_FORWARD);
1187 }
1188
1189 /*
1190  * Goto Prev Unread Message
1191  */
1192 static void toolbar_prev_unread_cb(GtkWidget *widget, gpointer data)
1193 {
1194         ToolbarItem *toolbar_item = (ToolbarItem*)data;
1195         MainWindow *mainwin;
1196         MessageView *msgview;
1197
1198         g_return_if_fail(toolbar_item != NULL);
1199
1200         switch (toolbar_item->type) {
1201         case TOOLBAR_MAIN:
1202                 mainwin = (MainWindow*)toolbar_item->parent;
1203                 summary_select_prev_unread(mainwin->summaryview);
1204                 break;
1205                 
1206         case TOOLBAR_MSGVIEW:
1207                 msgview = (MessageView*)toolbar_item->parent;
1208                 msgview->updating = TRUE;
1209                 summary_select_prev_unread(msgview->mainwin->summaryview);
1210                 msgview->updating = FALSE;
1211
1212                 if (msgview->deferred_destroy) {
1213                         debug_print("messageview got away!\n");
1214                         messageview_destroy(msgview);
1215                         return;
1216                 }
1217                 
1218                 /* Now we need to update the messageview window */
1219                 if (msgview->mainwin->summaryview->selected) {
1220                         MsgInfo * msginfo = summary_get_selected_msg(msgview->mainwin->summaryview);
1221                        
1222                         if (msginfo)
1223                                 messageview_show(msgview, msginfo, 
1224                                          msgview->all_headers);
1225                 } else {
1226                         gtk_widget_destroy(msgview->window);
1227                 }
1228                 break;
1229         default:
1230                 debug_print("toolbar event not supported\n");
1231         }
1232 }
1233
1234 /*
1235  * Goto Next Unread Message
1236  */
1237 static void toolbar_next_unread_cb(GtkWidget *widget, gpointer data)
1238 {
1239         ToolbarItem *toolbar_item = (ToolbarItem*)data;
1240         MainWindow *mainwin;
1241         MessageView *msgview;
1242
1243         g_return_if_fail(toolbar_item != NULL);
1244
1245         switch (toolbar_item->type) {
1246         case TOOLBAR_MAIN:
1247                 mainwin = (MainWindow*)toolbar_item->parent;
1248                 summary_select_next_unread(mainwin->summaryview);
1249                 break;
1250                 
1251         case TOOLBAR_MSGVIEW:
1252                 msgview = (MessageView*)toolbar_item->parent;
1253                 msgview->updating = TRUE;
1254                 summary_select_next_unread(msgview->mainwin->summaryview);
1255                 msgview->updating = FALSE;
1256
1257                 if (msgview->deferred_destroy) {
1258                         debug_print("messageview got away!\n");
1259                         messageview_destroy(msgview);
1260                         return;
1261                 }
1262
1263                 /* Now we need to update the messageview window */
1264                 if (msgview->mainwin->summaryview->selected) {
1265                         MsgInfo * msginfo = summary_get_selected_msg(msgview->mainwin->summaryview);
1266                         
1267                         if (msginfo)
1268                                 messageview_show(msgview, msginfo, 
1269                                          msgview->all_headers);
1270                 } else {
1271                         gtk_widget_destroy(msgview->window);
1272                 }
1273                 break;
1274         default:
1275                 debug_print("toolbar event not supported\n");
1276         }
1277 }
1278
1279 static void toolbar_ignore_thread_cb(GtkWidget *widget, gpointer data)
1280 {
1281         ToolbarItem *toolbar_item = (ToolbarItem*)data;
1282         MainWindow *mainwin;
1283
1284         g_return_if_fail(toolbar_item != NULL);
1285
1286         switch (toolbar_item->type) {
1287         case TOOLBAR_MAIN:
1288                 mainwin = (MainWindow *) toolbar_item->parent;
1289                 summary_toggle_ignore_thread(mainwin->summaryview);
1290                 break;
1291         case TOOLBAR_MSGVIEW:
1292                 /* TODO: see toolbar_next_unread_cb() if you need
1293                  * this in the message view */
1294                 break;
1295         default:
1296                 debug_print("toolbar event not supported\n");
1297                 break;
1298         }
1299 }
1300
1301 static void toolbar_cancel_inc_cb(GtkWidget *widget, gpointer data)
1302 {
1303         ToolbarItem *toolbar_item = (ToolbarItem*)data;
1304
1305         g_return_if_fail(toolbar_item != NULL);
1306         inc_cancel_all();
1307         imap_cancel_all();
1308 }
1309
1310
1311 static void toolbar_print_cb(GtkWidget *widget, gpointer data)
1312 {
1313         ToolbarItem *toolbar_item = (ToolbarItem*)data;
1314         MainWindow *mainwin;
1315
1316         g_return_if_fail(toolbar_item != NULL);
1317
1318         switch (toolbar_item->type) {
1319         case TOOLBAR_MAIN:
1320                 mainwin = (MainWindow *) toolbar_item->parent;
1321                 summary_print(mainwin->summaryview);
1322                 break;
1323         case TOOLBAR_MSGVIEW:
1324                 /* TODO: see toolbar_next_unread_cb() if you need
1325                  * this in the message view */
1326                 break;
1327         default:
1328                 debug_print("toolbar event not supported\n");
1329                 break;
1330         }
1331 }
1332
1333 static void toolbar_send_cb(GtkWidget *widget, gpointer data)
1334 {
1335         compose_toolbar_cb(A_SEND, data);
1336 }
1337
1338 static void toolbar_send_later_cb(GtkWidget *widget, gpointer data)
1339 {
1340         compose_toolbar_cb(A_SENDL, data);
1341 }
1342
1343 static void toolbar_draft_cb(GtkWidget *widget, gpointer data)
1344 {
1345         compose_toolbar_cb(A_DRAFT, data);
1346 }
1347
1348 static void toolbar_close_cb(GtkWidget *widget, gpointer data)
1349 {
1350         ToolbarItem *toolbar_item = (ToolbarItem*)data;
1351         MainWindow *mainwin;
1352         MessageView *messageview;
1353         Compose *compose;
1354
1355         g_return_if_fail(toolbar_item != NULL);
1356
1357         switch (toolbar_item->type) {
1358         case TOOLBAR_MAIN:
1359                 mainwin = (MainWindow *) toolbar_item->parent;
1360                 app_will_exit(NULL, mainwin);
1361                 break;
1362         case TOOLBAR_MSGVIEW:
1363                 messageview = (MessageView *)toolbar_item->parent;
1364                 messageview_destroy(messageview);
1365                 break;
1366         case TOOLBAR_COMPOSE:
1367                 compose = (Compose *)toolbar_item->parent;
1368                 compose_close_toolbar(compose);
1369                 break;
1370         }
1371 }
1372
1373 static void toolbar_open_mail_cb(GtkWidget *widget, gpointer data)
1374 {
1375         ToolbarItem *toolbar_item = (ToolbarItem*)data;
1376         MainWindow *mainwin;
1377
1378         g_return_if_fail(toolbar_item != NULL);
1379
1380         switch (toolbar_item->type) {
1381         case TOOLBAR_MAIN:
1382                 mainwin = (MainWindow *) toolbar_item->parent;
1383                 summary_open_row(NULL, mainwin->summaryview);
1384                 break;
1385         case TOOLBAR_MSGVIEW:
1386                 debug_print("toolbar event not supported\n");
1387                 break;
1388         case TOOLBAR_COMPOSE:
1389                 debug_print("toolbar event not supported\n");
1390                 break;
1391         }
1392 }
1393
1394 static void toolbar_insert_cb(GtkWidget *widget, gpointer data)
1395 {
1396         compose_toolbar_cb(A_INSERT, data);
1397 }
1398
1399 static void toolbar_attach_cb(GtkWidget *widget, gpointer data)
1400 {
1401         compose_toolbar_cb(A_ATTACH, data);
1402 }
1403
1404 static void toolbar_sig_cb(GtkWidget *widget, gpointer data)
1405 {
1406         compose_toolbar_cb(A_SIG, data);
1407 }
1408
1409 static void toolbar_ext_editor_cb(GtkWidget *widget, gpointer data)
1410 {
1411         compose_toolbar_cb(A_EXTEDITOR, data);
1412 }
1413
1414 static void toolbar_linewrap_current_cb(GtkWidget *widget, gpointer data)
1415 {
1416         compose_toolbar_cb(A_LINEWRAP_CURRENT, data);
1417 }
1418
1419 static void toolbar_linewrap_all_cb(GtkWidget *widget, gpointer data)
1420 {
1421         compose_toolbar_cb(A_LINEWRAP_ALL, data);
1422 }
1423
1424 #ifdef USE_ASPELL
1425 static void toolbar_check_spelling_cb(GtkWidget *widget, gpointer data)
1426 {
1427         compose_toolbar_cb(A_CHECK_SPELLING, data);
1428 }
1429 #endif
1430 /*
1431  * Execute actions from toolbar
1432  */
1433 static void toolbar_actions_execute_cb(GtkWidget *widget, gpointer data)
1434 {
1435         ToolbarItem *toolbar_item = (ToolbarItem*)data;
1436         GSList *action_list;
1437         MainWindow *mainwin;
1438         Compose *compose;
1439         MessageView *msgview;
1440         gpointer parent = toolbar_item->parent;
1441
1442         g_return_if_fail(toolbar_item != NULL);
1443
1444         switch (toolbar_item->type) {
1445         case TOOLBAR_MAIN:
1446                 mainwin = (MainWindow*)parent;
1447                 action_list = mainwin->toolbar->action_list;
1448                 break;
1449         case TOOLBAR_COMPOSE:
1450                 compose = (Compose*)parent;
1451                 action_list = compose->toolbar->action_list;
1452                 break;
1453         case TOOLBAR_MSGVIEW:
1454                 msgview = (MessageView*)parent;
1455                 action_list = msgview->toolbar->action_list;
1456                 break;
1457         default:
1458                 debug_print("toolbar event not supported\n");
1459                 return;
1460         }
1461         toolbar_action_execute(widget, action_list, parent, toolbar_item->type);        
1462 }
1463
1464 static MainWindow *get_mainwin(gpointer data)
1465 {
1466         ToolbarItem *toolbar_item = (ToolbarItem*)data;
1467         MainWindow *mainwin = NULL;
1468         MessageView *msgview;
1469
1470         g_return_val_if_fail(toolbar_item != NULL, NULL);
1471
1472         switch(toolbar_item->type) {
1473         case TOOLBAR_MAIN:
1474                 mainwin = (MainWindow*)toolbar_item->parent;
1475                 break;
1476         case TOOLBAR_MSGVIEW:
1477                 msgview = (MessageView*)toolbar_item->parent;
1478                 mainwin = (MainWindow*)msgview->mainwin;
1479                 break;
1480         default:
1481                 break;
1482         }
1483
1484         return mainwin;
1485 }
1486
1487 static void toolbar_go_folders_cb(GtkWidget *widget, gpointer data)
1488 {
1489         ToolbarItem *toolbar_item = (ToolbarItem*)data;
1490         MainWindow *mainwin = NULL;
1491         switch(toolbar_item->type) {
1492         case TOOLBAR_MAIN:
1493                 mainwin = (MainWindow*)toolbar_item->parent;
1494                 break;
1495         default:
1496                 g_warning("wrong toolbar type\n");
1497                 return;
1498         }
1499
1500         if (!mainwin->in_folder) {
1501                 FolderItem *item = folderview_get_selected_item(mainwin->folderview);
1502                 if (item) {
1503                         folderview_select(mainwin->folderview, item);
1504                 }
1505         } else {
1506                 gtk_widget_grab_focus(mainwin->folderview->ctree);
1507                 mainwindow_exit_folder(mainwin);
1508         }
1509 }
1510
1511 static void toolbar_buttons_cb(GtkWidget   *widget, 
1512                                ToolbarItem *item)
1513 {
1514         gint num_items;
1515         gint i;
1516         struct {
1517                 gint   index;
1518                 void (*func)(GtkWidget *widget, gpointer data);
1519         } callbacks[] = {
1520                 { A_RECEIVE_ALL,        toolbar_inc_all_cb              },
1521                 { A_RECEIVE_CUR,        toolbar_inc_cb                  },
1522                 { A_SEND_QUEUED,        toolbar_send_queued_cb          },
1523                 { A_COMPOSE_EMAIL,      toolbar_compose_cb              },
1524                 { A_COMPOSE_NEWS,       toolbar_compose_cb              },
1525                 { A_REPLY_MESSAGE,      toolbar_reply_cb                },
1526                 { A_REPLY_SENDER,       toolbar_reply_to_sender_cb      },
1527                 { A_REPLY_ALL,          toolbar_reply_to_all_cb         },
1528                 { A_REPLY_ML,           toolbar_reply_to_list_cb        },
1529                 { A_FORWARD,            toolbar_forward_cb              },
1530                 { A_TRASH,              toolbar_trash_cb                },
1531                 { A_DELETE_REAL,        toolbar_delete_cb               },
1532                 { A_EXECUTE,            toolbar_exec_cb                 },
1533                 { A_GOTO_PREV,          toolbar_prev_unread_cb          },
1534                 { A_GOTO_NEXT,          toolbar_next_unread_cb          },
1535                 { A_IGNORE_THREAD,      toolbar_ignore_thread_cb        },
1536                 { A_PRINT,              toolbar_print_cb                },
1537                 { A_LEARN_SPAM,         toolbar_learn_cb                },
1538                 { A_GO_FOLDERS,         toolbar_go_folders_cb           },
1539
1540                 { A_SEND,               toolbar_send_cb                 },
1541                 { A_SENDL,              toolbar_send_later_cb           },
1542                 { A_DRAFT,              toolbar_draft_cb                },
1543                 { A_OPEN_MAIL,          toolbar_open_mail_cb            },
1544                 { A_CLOSE,              toolbar_close_cb                },
1545                 { A_INSERT,             toolbar_insert_cb               },
1546                 { A_ATTACH,             toolbar_attach_cb               },
1547                 { A_SIG,                toolbar_sig_cb                  },
1548                 { A_EXTEDITOR,          toolbar_ext_editor_cb           },
1549                 { A_LINEWRAP_CURRENT,   toolbar_linewrap_current_cb     },
1550                 { A_LINEWRAP_ALL,       toolbar_linewrap_all_cb         },
1551                 { A_ADDRBOOK,           toolbar_addrbook_cb             },
1552 #ifdef USE_ASPELL
1553                 { A_CHECK_SPELLING,     toolbar_check_spelling_cb       },
1554 #endif
1555                 { A_SYL_ACTIONS,        toolbar_actions_execute_cb      },
1556                 { A_CANCEL_INC,         toolbar_cancel_inc_cb           }
1557         };
1558
1559         num_items = sizeof(callbacks)/sizeof(callbacks[0]);
1560
1561         for (i = 0; i < num_items; i++) {
1562                 if (callbacks[i].index == item->index) {
1563                         callbacks[i].func(widget, item);
1564                         return;
1565                 }
1566         }
1567 }
1568
1569 #define TOOLBAR_ITEM(item,icon,text,tooltip) {                                                          \
1570         item = GTK_WIDGET(gtk_tool_button_new(icon, text));                                             \
1571         gtk_tool_item_set_homogeneous(GTK_TOOL_ITEM(item), FALSE);                                      \
1572         gtk_tool_item_set_is_important(GTK_TOOL_ITEM(item), TRUE);                                      \
1573         g_signal_connect (G_OBJECT(item), "clicked", G_CALLBACK(toolbar_buttons_cb), toolbar_item);     \
1574         gtk_toolbar_insert(GTK_TOOLBAR(toolbar), GTK_TOOL_ITEM(item), -1);                              \
1575         gtk_tool_item_set_tooltip(GTK_TOOL_ITEM(item), GTK_TOOLTIPS(toolbar_tips),                      \
1576                         tooltip, NULL);                                                                 \
1577 }
1578
1579 #define TOOLBAR_MENUITEM(item,icon,text,tooltip,menutip) {                                              \
1580         GtkWidget *child = NULL, *btn = NULL, *arr = NULL;                                              \
1581         GList *gchild = NULL;                                                                           \
1582         item = GTK_WIDGET(gtk_menu_tool_button_new(icon, text));                                        \
1583         gtk_tool_item_set_homogeneous(GTK_TOOL_ITEM(item), FALSE);                              \
1584         gtk_tool_item_set_is_important(GTK_TOOL_ITEM(item), TRUE);                                      \
1585         g_signal_connect (G_OBJECT(item), "clicked", G_CALLBACK(toolbar_buttons_cb), toolbar_item);     \
1586         gtk_toolbar_insert(GTK_TOOLBAR(toolbar), GTK_TOOL_ITEM(item), -1);                              \
1587         gtk_tool_item_set_tooltip(GTK_TOOL_ITEM(item), GTK_TOOLTIPS(toolbar_tips),                      \
1588                         tooltip, NULL);                                                                 \
1589         gtk_menu_tool_button_set_arrow_tooltip(GTK_MENU_TOOL_BUTTON(item),                              \
1590                                 GTK_TOOLTIPS(toolbar_tips), menutip, NULL);                             \
1591         child = gtk_bin_get_child(GTK_BIN(item));                                                       \
1592         gchild = gtk_container_get_children(                                                            \
1593                         GTK_CONTAINER(child));                                                          \
1594         btn = (GtkWidget *)gchild->data;                                                                \
1595         arr = (GtkWidget *)(gchild->next?gchild->next->data:NULL);                                      \
1596         gchild = gtk_container_get_children(GTK_CONTAINER(arr));                                        \
1597         gtk_widget_set_size_request(GTK_WIDGET(gchild->data), 9, -1);                                   \
1598 }
1599
1600 #define MAKE_MENU(entries,path,btn) {                                                                   \
1601         n_menu_entries = sizeof(entries) /                                                              \
1602                 sizeof(entries[0]);                                                                     \
1603         menu = menu_create_items(entries, n_menu_entries, path, &factory, toolbar_item);                \
1604         gtk_menu_tool_button_set_menu(GTK_MENU_TOOL_BUTTON(btn), menu);                                 \
1605 }
1606
1607 /**
1608  * Create a new toolbar with specified type
1609  * if a callback list is passed it will be used before the 
1610  * common callback list
1611  **/
1612 Toolbar *toolbar_create(ToolbarType      type, 
1613                         GtkWidget       *container,
1614                         gpointer         data)
1615 {
1616         ToolbarItem *toolbar_item;
1617
1618         GtkWidget *toolbar;
1619         GtkWidget *icon_wid = NULL;
1620         GtkWidget *icon_news;
1621         GtkWidget *icon_ham;
1622         GtkWidget *item;
1623         GtkWidget *menu;
1624         guint n_menu_entries;
1625         GtkItemFactory *factory;
1626         GtkTooltips *toolbar_tips;
1627         ToolbarSylpheedActions *action_item;
1628         GSList *cur;
1629         GSList *toolbar_list;
1630         Toolbar *toolbar_data;
1631
1632         
1633         toolbar_tips = gtk_tooltips_new();
1634         
1635         toolbar_read_config_file(type);
1636         toolbar_list = toolbar_get_list(type);
1637
1638         toolbar_data = g_new0(Toolbar, 1); 
1639
1640         toolbar = gtk_toolbar_new();
1641
1642         gtk_toolbar_set_orientation(GTK_TOOLBAR(toolbar), GTK_ORIENTATION_HORIZONTAL);
1643         gtk_toolbar_set_style(GTK_TOOLBAR(toolbar), GTK_TOOLBAR_BOTH);
1644         gtk_toolbar_set_show_arrow(GTK_TOOLBAR(toolbar), TRUE);
1645         
1646         for (cur = toolbar_list; cur != NULL; cur = cur->next) {
1647
1648                 if (g_ascii_strcasecmp(((ToolbarItem*)cur->data)->file, TOOLBAR_TAG_SEPARATOR) == 0) {
1649                         gtk_toolbar_insert(GTK_TOOLBAR(toolbar), gtk_separator_tool_item_new(), -1);
1650                         continue;
1651                 }
1652                 
1653                 toolbar_item = g_new0(ToolbarItem, 1); 
1654                 toolbar_item->index = ((ToolbarItem*)cur->data)->index;
1655                 toolbar_item->file = g_strdup(((ToolbarItem*)cur->data)->file);
1656                 toolbar_item->text = g_strdup(((ToolbarItem*)cur->data)->text);
1657                 toolbar_item->parent = data;
1658                 toolbar_item->type = type;
1659
1660                 /* collect toolbar items in list to keep track */
1661                 toolbar_data->item_list = 
1662                         g_slist_append(toolbar_data->item_list, 
1663                                        toolbar_item);
1664                 icon_wid = stock_pixmap_widget(container, stock_pixmap_get_icon(toolbar_item->file));
1665                         
1666                 switch (toolbar_item->index) {
1667
1668                 case A_GO_FOLDERS:
1669                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Go to folder list"));
1670                         toolbar_data->folders_btn = item;
1671                         break;
1672                 case A_RECEIVE_ALL:
1673                         TOOLBAR_MENUITEM(item,icon_wid,toolbar_item->text,
1674                                 _("Receive Mail on all Accounts"),
1675                                 _("Receive Mail on selected Account"));
1676                         toolbar_data->getall_btn = item;
1677                         break;
1678                 case A_RECEIVE_CUR:
1679                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text, _("Receive Mail on current Account"));
1680                         toolbar_data->get_btn = item;
1681                         break;
1682                 case A_SEND_QUEUED:
1683                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Send Queued Messages"));
1684                         toolbar_data->send_btn = item; 
1685                         break;
1686                 case A_CLOSE:
1687                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Close window"));
1688                         toolbar_data->close_window_btn = item; 
1689                         break;
1690                 case A_OPEN_MAIL:
1691                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Open email"));
1692                         toolbar_data->open_mail_btn = item; 
1693                         break;
1694                 case A_COMPOSE_EMAIL:
1695 #ifndef MAEMO
1696                         TOOLBAR_MENUITEM(item,icon_wid,toolbar_item->text,
1697                                 _("Compose Email"),
1698                                 _("Compose with selected Account"));
1699                         toolbar_data->compose_mail_btn = item; 
1700
1701                         icon_news = stock_pixmap_widget(container, STOCK_PIXMAP_NEWS_COMPOSE);
1702                         TOOLBAR_MENUITEM(item,icon_news,_("Compose"),
1703                                 _("Compose News"),
1704                                 _("Compose with selected Account"));
1705                         toolbar_data->compose_news_btn = item; 
1706 #else
1707                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,
1708                                 _("Compose Email"));
1709                         toolbar_data->compose_mail_btn = item; 
1710
1711                         icon_news = stock_pixmap_widget(container, STOCK_PIXMAP_NEWS_COMPOSE);
1712                         TOOLBAR_ITEM(item,icon_news,_("Compose"),
1713                                 _("Compose News"));
1714                         toolbar_data->compose_news_btn = item; 
1715 #endif
1716                         break;
1717                 case A_LEARN_SPAM:
1718                         TOOLBAR_MENUITEM(item,icon_wid,toolbar_item->text,
1719                                 _("Learn Spam"),
1720                                 _("Learn as..."));
1721                         toolbar_data->learn_spam_btn = item; 
1722
1723                         icon_ham = stock_pixmap_widget(container, STOCK_PIXMAP_HAM_BTN);
1724                         TOOLBAR_MENUITEM(item,icon_ham,_("Ham"),
1725                                 _("Learn Ham"),
1726                                 _("Learn as..."));
1727                         toolbar_data->learn_ham_btn = item; 
1728
1729                         MAKE_MENU(learn_entries,"<LearnSpam>",toolbar_data->learn_spam_btn);
1730                         MAKE_MENU(learn_entries,"<LearnHam>",toolbar_data->learn_ham_btn);
1731                         break;
1732                 case A_REPLY_MESSAGE:
1733 #ifndef MAEMO
1734                         TOOLBAR_MENUITEM(item,icon_wid,toolbar_item->text,
1735                                 _("Reply to Message"),
1736                                 _("Reply to Message options"));
1737                         toolbar_data->reply_btn = item;
1738
1739                         MAKE_MENU(reply_entries,"<Reply>",toolbar_data->reply_btn);
1740 #else
1741                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,
1742                                 _("Reply to Message"));
1743                         toolbar_data->reply_btn = item;
1744 #endif
1745                         break;
1746                 case A_REPLY_SENDER:
1747 #ifndef MAEMO
1748                         TOOLBAR_MENUITEM(item,icon_wid,toolbar_item->text,
1749                                 _("Reply to Sender"),
1750                                 _("Reply to Sender options"));
1751                         toolbar_data->replysender_btn = item;
1752
1753                         MAKE_MENU(replysender_entries,"<ReplySender>",toolbar_data->replysender_btn);
1754 #else
1755                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,
1756                                 _("Reply to Sender"));
1757                         toolbar_data->replysender_btn = item;
1758 #endif
1759                         break;
1760                 case A_REPLY_ALL:
1761 #ifndef MAEMO
1762                         TOOLBAR_MENUITEM(item,icon_wid,toolbar_item->text,
1763                                 _("Reply to All"),
1764                                 _("Reply to All options"));
1765                         toolbar_data->replyall_btn = item;
1766
1767                         MAKE_MENU(replyall_entries,"<ReplyAll>",toolbar_data->replyall_btn);
1768 #else
1769                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,
1770                                 _("Reply to All"));
1771                         toolbar_data->replyall_btn = item;
1772 #endif
1773                         break;
1774                 case A_REPLY_ML:
1775 #ifndef MAEMO
1776                         TOOLBAR_MENUITEM(item,icon_wid,toolbar_item->text,
1777                                 _("Reply to Mailing-list"),
1778                                 _("Reply to Mailing-list options"));
1779                         toolbar_data->replylist_btn = item;
1780
1781                         MAKE_MENU(replylist_entries,"<ReplyList>",toolbar_data->replylist_btn);
1782 #else
1783                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,
1784                                 _("Reply to Mailing-list"));
1785                         toolbar_data->replylist_btn = item;
1786 #endif
1787                         break;
1788                 case A_FORWARD:
1789 #ifndef MAEMO
1790                         TOOLBAR_MENUITEM(item,icon_wid,toolbar_item->text,
1791                                 _("Forward Message"),
1792                                 _("Forward Message options"));
1793                         toolbar_data->fwd_btn = item;
1794
1795                         MAKE_MENU(forward_entries,"<Forward>",toolbar_data->fwd_btn);
1796 #else
1797                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,
1798                                 _("Forward Message"));
1799                         toolbar_data->fwd_btn = item;
1800 #endif
1801                         break;
1802                 case A_TRASH:
1803                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Trash Message"));
1804                         toolbar_data->trash_btn = item;
1805                         break;
1806                 case A_DELETE_REAL:
1807                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Delete Message"));
1808                         toolbar_data->delete_btn = item;
1809                         break;
1810                 case A_EXECUTE:
1811                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Execute"));
1812                         toolbar_data->exec_btn = item;
1813                         break;
1814                 case A_GOTO_PREV:
1815                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Go to Previous Unread Message"));
1816                         toolbar_data->prev_btn = item;
1817                         break;
1818                 case A_GOTO_NEXT:
1819                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Go to Next Unread Message"));
1820                         toolbar_data->next_btn = item;
1821                         break;
1822                 
1823                 /* Compose Toolbar */
1824                 case A_SEND:
1825                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Send Message"));
1826                         toolbar_data->send_btn = item;
1827                         break;
1828                 case A_SENDL:
1829                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Put into queue folder and send later"));
1830                         toolbar_data->sendl_btn = item;
1831                         break;
1832                 case A_DRAFT:
1833                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Save to draft folder"));
1834                         toolbar_data->draft_btn = item; 
1835                         break;
1836                 case A_INSERT:
1837                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Insert file"));
1838                         toolbar_data->insert_btn = item; 
1839                         break;
1840                 case A_ATTACH:
1841                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Attach file"));
1842                         toolbar_data->attach_btn = item;
1843                         break;
1844                 case A_SIG:
1845                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Insert signature"));
1846                         toolbar_data->sig_btn = item;
1847                         break;
1848                 case A_EXTEDITOR:
1849                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Edit with external editor"));
1850                         toolbar_data->exteditor_btn = item;
1851                         break;
1852                 case A_LINEWRAP_CURRENT:
1853                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Wrap long lines of current paragraph"));
1854                         toolbar_data->linewrap_current_btn = item;
1855                         break;
1856                 case A_LINEWRAP_ALL:
1857                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Wrap all long lines"));
1858                         toolbar_data->linewrap_all_btn = item;
1859                         break;
1860                 case A_ADDRBOOK:
1861                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Address book"));
1862                         toolbar_data->addrbook_btn = item;
1863                         break;
1864 #ifdef USE_ASPELL
1865                 case A_CHECK_SPELLING:
1866                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Check spelling"));
1867                         toolbar_data->spellcheck_btn = item;
1868                         break;
1869 #endif
1870
1871                 case A_SYL_ACTIONS:
1872                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,toolbar_item->text);
1873                         action_item = g_new0(ToolbarSylpheedActions, 1);
1874                         action_item->widget = item;
1875                         action_item->name   = g_strdup(toolbar_item->text);
1876
1877                         toolbar_data->action_list = 
1878                                 g_slist_append(toolbar_data->action_list,
1879                                                action_item);
1880                         break;
1881                 case A_CANCEL_INC:
1882                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,_("Cancel receiving"));
1883                         toolbar_data->cancel_inc_btn = item;
1884                         break;
1885                 default:
1886                         TOOLBAR_ITEM(item,icon_wid,toolbar_item->text,
1887                                 toolbar_ret_descr_from_val(toolbar_item->index));
1888                         /* find and set the tool tip text */
1889                         break;
1890                 }
1891
1892         }
1893         toolbar_data->toolbar = toolbar;
1894         gtk_widget_show_all(toolbar);
1895
1896         if (type == TOOLBAR_MAIN) {
1897 #ifdef MAEMO
1898                 MainWindow *mainwin = mainwindow_get_mainwindow();
1899                 GtkWidget *progressbar = gtk_progress_bar_new();
1900                 item = gtk_tool_item_new();
1901                 gtk_container_add (GTK_CONTAINER (item), progressbar);
1902                 gtk_widget_show(item);
1903                 gtk_widget_show(progressbar);
1904                 gtk_widget_set_size_request(progressbar, 70, -1);
1905                 gtk_toolbar_insert(GTK_TOOLBAR(toolbar), GTK_TOOL_ITEM(item), -1);                              \
1906                 mainwin->progressbar = progressbar;
1907 #endif
1908                 activate_compose_button(toolbar_data, 
1909                                         prefs_common.toolbar_style, 
1910                                         toolbar_data->compose_btn_type);
1911         }
1912         if (type != TOOLBAR_COMPOSE)
1913                 activate_learn_button(toolbar_data, prefs_common.toolbar_style,
1914                                 LEARN_SPAM);
1915         
1916 #ifndef MAEMO
1917         gtk_container_add(GTK_CONTAINER(container), toolbar);
1918         gtk_container_set_border_width(GTK_CONTAINER(container), 2);
1919 #else
1920         if ( GTK_IS_WINDOW(container) ) {
1921                 hildon_window_add_toolbar (HILDON_WINDOW(container), GTK_TOOLBAR(toolbar));
1922                 gtk_widget_show_all (container);
1923         } else {
1924                 gtk_container_add(GTK_CONTAINER(container), toolbar);
1925                 gtk_container_set_border_width(GTK_CONTAINER(container), 2);
1926         }
1927 #endif
1928         return toolbar_data; 
1929 }
1930
1931 /**
1932  * Free toolbar structures
1933  */ 
1934 void toolbar_destroy(Toolbar * toolbar) {
1935
1936         TOOLBAR_DESTROY_ITEMS(toolbar->item_list);      
1937         TOOLBAR_DESTROY_ACTIONS(toolbar->action_list);
1938 }
1939
1940 void toolbar_update(ToolbarType type, gpointer data)
1941 {
1942         Toolbar *toolbar_data;
1943         GtkWidget *handlebox;
1944         MainWindow *mainwin = (MainWindow*)data;
1945         Compose    *compose = (Compose*)data;
1946         MessageView *msgview = (MessageView*)data;
1947
1948         switch(type) {
1949         case TOOLBAR_MAIN:
1950                 toolbar_data = mainwin->toolbar;
1951                 handlebox    = mainwin->handlebox;
1952                 break;
1953         case TOOLBAR_COMPOSE:
1954                 toolbar_data = compose->toolbar;
1955                 handlebox    = compose->handlebox;
1956                 break;
1957         case TOOLBAR_MSGVIEW:
1958                 toolbar_data = msgview->toolbar;
1959                 handlebox    = msgview->handlebox;
1960                 break;
1961         default:
1962                 return;
1963         }
1964
1965         gtk_container_remove(GTK_CONTAINER(handlebox), 
1966                              GTK_WIDGET(toolbar_data->toolbar));
1967
1968         toolbar_init(toolbar_data);
1969         toolbar_data = toolbar_create(type, handlebox, data);
1970         switch(type) {
1971         case TOOLBAR_MAIN:
1972                 mainwin->toolbar = toolbar_data;
1973                 break;
1974         case TOOLBAR_COMPOSE:
1975                 compose->toolbar = toolbar_data;
1976                 break;
1977         case TOOLBAR_MSGVIEW:
1978                 msgview->toolbar = toolbar_data;
1979                 break;
1980         }
1981
1982         toolbar_style(type, prefs_common.toolbar_style, data);
1983
1984         if (type == TOOLBAR_MAIN) {
1985                 toolbar_main_set_sensitive((MainWindow*)data);
1986                 account_set_menu_only_toolbar();
1987         }
1988 }
1989
1990 #define GTK_BUTTON_SET_SENSITIVE(widget,sensitive) {            \
1991         gboolean in_btn1 = FALSE, in_btn2 = FALSE;              \
1992         if (GTK_IS_BUTTON(widget))                              \
1993                 in_btn1 = GTK_BUTTON(widget)->in_button;        \
1994         else if (GTK_IS_MENU_TOOL_BUTTON(widget)) {             \
1995                 GtkWidget *child = gtk_bin_get_child(           \
1996                         GTK_BIN(widget));                       \
1997                 GList *gchild = gtk_container_get_children(     \
1998                         GTK_CONTAINER(child));                  \
1999                 GtkWidget *btn = (GtkWidget *)gchild->data;     \
2000                 GtkWidget *arr = (GtkWidget *)                  \
2001                         (gchild->next?gchild->next->data:NULL); \
2002                 if (GTK_IS_BUTTON(btn))                         \
2003                         in_btn1 = GTK_BUTTON(btn)->in_button;   \
2004                 if (GTK_IS_BUTTON(arr))                         \
2005                         in_btn2 = GTK_BUTTON(arr)->in_button;   \
2006         }                                                       \
2007         else if (GTK_IS_TOOL_ITEM(widget)) {                    \
2008                 GtkWidget *child = gtk_bin_get_child(           \
2009                         GTK_BIN(widget));                       \
2010                 if (GTK_IS_BUTTON(child))                       \
2011                         in_btn1 = GTK_BUTTON(child)->in_button; \
2012         }                                                       \
2013         gtk_widget_set_sensitive(widget, sensitive);            \
2014         if (GTK_IS_BUTTON(widget))                              \
2015                 GTK_BUTTON(widget)->in_button = in_btn1;        \
2016         else if (GTK_IS_MENU_TOOL_BUTTON(widget)) {             \
2017                 GtkWidget *child = gtk_bin_get_child(           \
2018                         GTK_BIN(widget));                       \
2019                 GList *gchild = gtk_container_get_children(     \
2020                         GTK_CONTAINER(child));                  \
2021                 GtkWidget *btn = (GtkWidget *)gchild->data;     \
2022                 GtkWidget *arr = (GtkWidget *)                  \
2023                         (gchild->next?gchild->next->data:NULL); \
2024                 if (GTK_IS_BUTTON(btn))                         \
2025                         GTK_BUTTON(btn)->in_button = in_btn1;   \
2026                 if (GTK_IS_BUTTON(arr))                         \
2027                         GTK_BUTTON(arr)->in_button = in_btn2;   \
2028         }                                                       \
2029         else if (GTK_IS_TOOL_ITEM(widget)) {                    \
2030                 GtkWidget *child = gtk_bin_get_child(           \
2031                         GTK_BIN(widget));                       \
2032                 if (GTK_IS_BUTTON(child))                       \
2033                         GTK_BUTTON(child)->in_button = in_btn2; \
2034         }                                                       \
2035 }
2036
2037 void toolbar_main_set_sensitive(gpointer data)
2038 {
2039         SensitiveCond state;
2040         gboolean sensitive;
2041         MainWindow *mainwin = (MainWindow*)data;
2042         Toolbar *toolbar = mainwin->toolbar;
2043         GSList *cur;
2044         GSList *entry_list = NULL;
2045         
2046         typedef struct _Entry Entry;
2047         struct _Entry {
2048                 GtkWidget *widget;
2049                 SensitiveCond cond;
2050                 gboolean empty;
2051         };
2052
2053 #define SET_WIDGET_COND(w, c)     \
2054 { \
2055         Entry *e = g_new0(Entry, 1); \
2056         e->widget = w; \
2057         e->cond   = c; \
2058         entry_list = g_slist_append(entry_list, e); \
2059 }
2060
2061         
2062         if (toolbar->get_btn)
2063                 SET_WIDGET_COND(toolbar->get_btn, 
2064                         M_HAVE_ACCOUNT|M_UNLOCKED);
2065
2066         if (toolbar->getall_btn) {
2067                 SET_WIDGET_COND(toolbar->getall_btn, 
2068                         M_HAVE_ACCOUNT|M_UNLOCKED);
2069         }
2070         if (toolbar->send_btn) {
2071                 SET_WIDGET_COND(toolbar->send_btn,
2072                         M_HAVE_QUEUED_MAILS);
2073         }
2074         if (toolbar->compose_mail_btn) {
2075                 SET_WIDGET_COND(toolbar->compose_news_btn, 
2076                         M_HAVE_ACCOUNT);
2077         }
2078         if (toolbar->close_window_btn) {
2079                 SET_WIDGET_COND(toolbar->compose_news_btn, 
2080                         M_UNLOCKED);
2081         }
2082         if (toolbar->open_mail_btn) {
2083                 SET_WIDGET_COND(toolbar->open_mail_btn, 
2084                         M_TARGET_EXIST);
2085         }
2086         if (toolbar->reply_btn) {
2087                 SET_WIDGET_COND(toolbar->reply_btn,
2088                         M_HAVE_ACCOUNT|M_TARGET_EXIST);
2089         }
2090         if (toolbar->replyall_btn) {
2091                 SET_WIDGET_COND(toolbar->replyall_btn,
2092                         M_HAVE_ACCOUNT|M_TARGET_EXIST);
2093         }
2094         if (toolbar->replylist_btn) {
2095                 SET_WIDGET_COND(toolbar->replylist_btn,
2096                         M_HAVE_ACCOUNT|M_TARGET_EXIST);
2097         }
2098         if (toolbar->replysender_btn) {
2099                 SET_WIDGET_COND(toolbar->replysender_btn,
2100                         M_HAVE_ACCOUNT|M_TARGET_EXIST);
2101         }
2102         if (toolbar->fwd_btn) {
2103                 SET_WIDGET_COND(toolbar->fwd_btn, 
2104                         M_HAVE_ACCOUNT|M_TARGET_EXIST);
2105         }
2106
2107         if (prefs_common.next_unread_msg_dialog == NEXTUNREADMSGDIALOG_ASSUME_NO) {
2108                 SET_WIDGET_COND(toolbar->next_btn, M_MSG_EXIST);
2109         } else {
2110                 SET_WIDGET_COND(toolbar->next_btn, 0);
2111         }
2112         
2113         if (toolbar->trash_btn)
2114                 SET_WIDGET_COND(toolbar->trash_btn,
2115                         M_TARGET_EXIST|M_ALLOW_DELETE);
2116
2117         if (toolbar->delete_btn)
2118                 SET_WIDGET_COND(toolbar->delete_btn,
2119                         M_TARGET_EXIST|M_ALLOW_DELETE);
2120
2121         if (toolbar->exec_btn)
2122                 SET_WIDGET_COND(toolbar->exec_btn, 
2123                         M_DELAY_EXEC);
2124         
2125         if (toolbar->learn_ham_btn)
2126                 SET_WIDGET_COND(toolbar->learn_ham_btn,
2127                         M_TARGET_EXIST|M_CAN_LEARN_SPAM);
2128
2129         if (toolbar->learn_spam_btn)
2130                 SET_WIDGET_COND(toolbar->learn_spam_btn, 
2131                         M_TARGET_EXIST|M_CAN_LEARN_SPAM);
2132
2133         if (toolbar->cancel_inc_btn)
2134                 SET_WIDGET_COND(toolbar->cancel_inc_btn,
2135                                 M_INC_ACTIVE);
2136
2137         for (cur = toolbar->action_list; cur != NULL;  cur = cur->next) {
2138                 ToolbarSylpheedActions *act = (ToolbarSylpheedActions*)cur->data;
2139                 
2140                 SET_WIDGET_COND(act->widget, M_TARGET_EXIST|M_UNLOCKED);
2141         }
2142
2143 #undef SET_WIDGET_COND
2144
2145         state = main_window_get_current_state(mainwin);
2146
2147         for (cur = entry_list; cur != NULL; cur = cur->next) {
2148                 Entry *e = (Entry*) cur->data;
2149
2150                 if (e->widget != NULL) {
2151                         sensitive = ((e->cond & state) == e->cond);
2152                         GTK_BUTTON_SET_SENSITIVE(e->widget, sensitive); 
2153                 }
2154         }
2155         
2156         while (entry_list != NULL) {
2157                 Entry *e = (Entry*) entry_list->data;
2158
2159                 g_free(e);
2160                 entry_list = g_slist_remove(entry_list, e);
2161         }
2162
2163         g_slist_free(entry_list);
2164
2165         activate_compose_button(toolbar, 
2166                                 prefs_common.toolbar_style,
2167                                 toolbar->compose_btn_type);
2168         
2169 }
2170
2171 void toolbar_comp_set_sensitive(gpointer data, gboolean sensitive)
2172 {
2173         Compose *compose = (Compose*)data;
2174         GSList *items = compose->toolbar->action_list;
2175
2176         if (compose->toolbar->send_btn)
2177                 GTK_BUTTON_SET_SENSITIVE(compose->toolbar->send_btn, sensitive);
2178         if (compose->toolbar->sendl_btn)
2179                 GTK_BUTTON_SET_SENSITIVE(compose->toolbar->sendl_btn, sensitive);
2180         if (compose->toolbar->draft_btn )
2181                 GTK_BUTTON_SET_SENSITIVE(compose->toolbar->draft_btn , sensitive);
2182         if (compose->toolbar->insert_btn )
2183                 GTK_BUTTON_SET_SENSITIVE(compose->toolbar->insert_btn , sensitive);
2184         if (compose->toolbar->attach_btn)
2185                 GTK_BUTTON_SET_SENSITIVE(compose->toolbar->attach_btn, sensitive);
2186         if (compose->toolbar->sig_btn)
2187                 GTK_BUTTON_SET_SENSITIVE(compose->toolbar->sig_btn, sensitive);
2188         if (compose->toolbar->exteditor_btn)
2189                 GTK_BUTTON_SET_SENSITIVE(compose->toolbar->exteditor_btn, sensitive);
2190         if (compose->toolbar->linewrap_current_btn)
2191                 GTK_BUTTON_SET_SENSITIVE(compose->toolbar->linewrap_current_btn, sensitive);
2192         if (compose->toolbar->linewrap_all_btn)
2193                 GTK_BUTTON_SET_SENSITIVE(compose->toolbar->linewrap_all_btn, sensitive);
2194         if (compose->toolbar->addrbook_btn)
2195                 GTK_BUTTON_SET_SENSITIVE(compose->toolbar->addrbook_btn, sensitive);
2196 #ifdef USE_ASPELL
2197         if (compose->toolbar->spellcheck_btn)
2198                 GTK_BUTTON_SET_SENSITIVE(compose->toolbar->spellcheck_btn, sensitive);
2199 #endif
2200         for (; items != NULL; items = g_slist_next(items)) {
2201                 ToolbarSylpheedActions *item = (ToolbarSylpheedActions *)items->data;
2202                 GTK_BUTTON_SET_SENSITIVE(item->widget, sensitive);
2203         }
2204 }
2205
2206 /**
2207  * Initialize toolbar structure
2208  **/
2209 void toolbar_init(Toolbar * toolbar) {
2210
2211         toolbar->toolbar                = NULL;
2212         toolbar->folders_btn            = NULL;
2213         toolbar->get_btn                = NULL;
2214         toolbar->getall_btn             = NULL;
2215         toolbar->send_btn               = NULL;
2216         toolbar->compose_mail_btn       = NULL;
2217         toolbar->compose_news_btn       = NULL;
2218         toolbar->reply_btn              = NULL;
2219         toolbar->replysender_btn        = NULL;
2220         toolbar->replyall_btn           = NULL;
2221         toolbar->replylist_btn          = NULL;
2222         toolbar->fwd_btn                = NULL;
2223         toolbar->trash_btn              = NULL;
2224         toolbar->delete_btn             = NULL;
2225         toolbar->prev_btn               = NULL;
2226         toolbar->next_btn               = NULL;
2227         toolbar->exec_btn               = NULL;
2228         toolbar->open_mail_btn          = NULL;
2229         toolbar->close_window_btn       = NULL;
2230         /* compose buttons */ 
2231         toolbar->sendl_btn              = NULL;
2232         toolbar->draft_btn              = NULL;
2233         toolbar->insert_btn             = NULL;
2234         toolbar->attach_btn             = NULL;
2235         toolbar->sig_btn                = NULL; 
2236         toolbar->exteditor_btn          = NULL; 
2237         toolbar->linewrap_current_btn   = NULL; 
2238         toolbar->linewrap_all_btn       = NULL; 
2239         toolbar->addrbook_btn           = NULL; 
2240 #ifdef USE_ASPELL
2241         toolbar->spellcheck_btn         = NULL;
2242 #endif
2243
2244         toolbar_destroy(toolbar);
2245 }
2246
2247 /*
2248  */
2249 static void toolbar_reply(gpointer data, guint action)
2250 {
2251         ToolbarItem *toolbar_item = (ToolbarItem*)data;
2252         MainWindow *mainwin;
2253         MessageView *msgview;
2254         GSList *msginfo_list = NULL;
2255
2256         g_return_if_fail(toolbar_item != NULL);
2257
2258         switch (toolbar_item->type) {
2259         case TOOLBAR_MAIN:
2260                 mainwin = (MainWindow*)toolbar_item->parent;
2261                 msginfo_list = summary_get_selection(mainwin->summaryview);
2262                 msgview = (MessageView*)mainwin->messageview;
2263                 break;
2264         case TOOLBAR_MSGVIEW:
2265                 msgview = (MessageView*)toolbar_item->parent;
2266                 g_return_if_fail(msgview != NULL);      
2267                 msginfo_list = g_slist_append(msginfo_list, msgview->msginfo);
2268                 break;
2269         default:
2270                 return;
2271         }
2272
2273         g_return_if_fail(msgview != NULL);
2274         g_return_if_fail(msginfo_list != NULL);
2275         compose_reply_from_messageview(msgview, msginfo_list, action);
2276         g_slist_free(msginfo_list);
2277
2278         /* TODO: update reply state ion summaryview */
2279 }
2280
2281
2282 /* exported functions */
2283
2284 void inc_mail_cb(gpointer data, guint action, GtkWidget *widget)
2285 {
2286         MainWindow *mainwin = (MainWindow*)data;
2287
2288         inc_mail(mainwin, prefs_common.newmail_notify_manu);
2289 }
2290
2291 void inc_all_account_mail_cb(gpointer data, guint action, GtkWidget *widget)
2292 {
2293         MainWindow *mainwin = (MainWindow*)data;
2294
2295         inc_all_account_mail(mainwin, FALSE, prefs_common.newmail_notify_manu);
2296 }
2297
2298 void send_queue_cb(gpointer data, guint action, GtkWidget *widget)
2299 {
2300         GList *list;
2301         gboolean found;
2302         gboolean got_error = FALSE;
2303         gchar *errstr = NULL;
2304
2305         if (prefs_common.work_offline)
2306                 if (alertpanel(_("Offline warning"), 
2307                                _("You're working offline. Override?"),
2308                                GTK_STOCK_NO, GTK_STOCK_YES,
2309                                NULL) != G_ALERTALTERNATE)
2310                 return;
2311
2312         /* ask for confirmation before sending queued messages only
2313            in online mode and if there is at least one message queued
2314            in any of the folder queue
2315         */
2316         if (prefs_common.confirm_send_queued_messages) {
2317                 found = FALSE;
2318                 /* check if there's a queued message */
2319                 for (list = folder_get_list(); !found && list != NULL; list = list->next) {
2320                         Folder *folder = list->data;
2321
2322                         found = !procmsg_queue_is_empty(folder->queue);
2323                 }
2324                 /* if necessary, ask for confirmation before sending */
2325                 if (found && !prefs_common.work_offline) {
2326                         if (alertpanel(_("Send queued messages"), 
2327                                    _("Send all queued messages?"),
2328                                    GTK_STOCK_CANCEL, _("_Send"),
2329                                    NULL) != G_ALERTALTERNATE)
2330                                 return;
2331                 }
2332         }
2333
2334         for (list = folder_get_list(); list != NULL; list = list->next) {
2335                 Folder *folder = list->data;
2336
2337                 if (folder->queue) {
2338                         if (procmsg_send_queue(folder->queue, 
2339                                                prefs_common.savemsg,
2340                                                &errstr) < 0)
2341                                 got_error = TRUE;
2342                 }
2343         }
2344         if (got_error) {
2345                 if (!errstr)
2346                         alertpanel_error_log(_("Some errors occurred while "
2347                                            "sending queued messages."));
2348                 else {
2349                         gchar *tmp = g_strdup_printf(_("Some errors occurred "
2350                                         "while sending queued messages:\n%s"), errstr);
2351                         g_free(errstr);
2352                         alertpanel_error_log(tmp);
2353                         g_free(tmp);
2354                 }
2355         }
2356 }
2357
2358 void compose_mail_cb(gpointer data, guint action, GtkWidget *widget)
2359 {
2360         MainWindow *mainwin = (MainWindow*)data;
2361         PrefsAccount *ac = NULL;
2362         FolderItem *item = mainwin->summaryview->folder_item;   
2363         GList * list;
2364         GList * cur;
2365         
2366         if (item) {
2367                 ac = account_find_from_item(item);
2368                 if (ac && ac->protocol != A_NNTP) {
2369                         compose_new_with_folderitem(ac, item, NULL);            /* CLAWS */
2370                         return;
2371                 }
2372         }
2373
2374         /*
2375          * CLAWS - use current account
2376          */
2377         if (cur_account && (cur_account->protocol != A_NNTP)) {
2378                 compose_new_with_folderitem(cur_account, item, NULL);
2379                 return;
2380         }
2381
2382         /*
2383          * CLAWS - just get the first one
2384          */
2385         list = account_get_list();
2386         for (cur = list ; cur != NULL ; cur = g_list_next(cur)) {
2387                 ac = (PrefsAccount *) cur->data;
2388                 if (ac->protocol != A_NNTP) {
2389                         compose_new_with_folderitem(ac, item, NULL);
2390                         return;
2391                 }
2392         }
2393 }
2394
2395 void compose_news_cb(gpointer data, guint action, GtkWidget *widget)
2396 {
2397         MainWindow *mainwin = (MainWindow*)data;
2398         PrefsAccount * ac = NULL;
2399         GList * list;
2400         GList * cur;
2401
2402         if (mainwin->summaryview->folder_item) {
2403                 ac = mainwin->summaryview->folder_item->folder->account;
2404                 if (ac && ac->protocol == A_NNTP) {
2405                         compose_new_with_folderitem(ac,
2406                                     mainwin->summaryview->folder_item, NULL);
2407                         return;
2408                 }
2409         }
2410
2411         list = account_get_list();
2412         for(cur = list ; cur != NULL ; cur = g_list_next(cur)) {
2413                 ac = (PrefsAccount *) cur->data;
2414                 if (ac->protocol == A_NNTP) {
2415                         compose_new_with_folderitem(ac,
2416                                     mainwin->summaryview->folder_item, NULL);
2417                         return;
2418                 }
2419         }
2420 }