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