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