empty toolbar issue
[claws.git] / src / toolbar.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 2001 Hiroyuki Yamamoto
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 "utils.h"
40 #include "xml.h"
41 #include "mgutils.h"
42 #include "prefs.h"
43 #include "codeconv.h"
44 #include "stock_pixmap.h"
45 #include "mainwindow.h"
46 #include "prefs_common.h"
47 #include "menu.h"
48 #include "prefs_actions.h"
49 #include "manage_window.h"
50
51 #include "toolbar.h"
52 #include "prefs_toolbar.h"
53
54 /* elements */
55 #define TOOLBAR_TAG_INDEX        "toolbar"
56 #define TOOLBAR_TAG_ITEM         "item"
57 #define TOOLBAR_TAG_SEPARATOR    SEPARATOR
58
59 jmp_buf    jumper;
60
61 GSList *toolbar_list;
62
63 MainWindow *mwin;
64
65 #define TOOLBAR_ICON_FILE   "file"    
66 #define TOOLBAR_ICON_TEXT   "text"     
67 #define TOOLBAR_ICON_ACTION "action"    
68
69 gboolean      toolbar_is_duplicate           (gint action);
70 static void   toolbar_parse_item             (XMLFile *file);
71 static gint   toolbar_ret_val_from_text      (gchar *text);
72
73
74 /* callback functions */
75 static void toolbar_inc_cb                      (GtkWidget      *widget,
76                                         gpointer                 data);
77
78 static void toolbar_inc_all_cb          (GtkWidget      *widget,
79                                         gpointer                 data);
80
81 static void toolbar_send_cb             (GtkWidget      *widget,
82                                         gpointer                 data);
83
84 static void toolbar_compose_news_cb             (GtkWidget      *widget,
85                                         gpointer                 data);
86
87 static void toolbar_compose_mail_cb             (GtkWidget      *widget,
88                                         gpointer                 data);
89
90 static void toolbar_reply_cb            (GtkWidget      *widget,
91                                         gpointer                 data);
92
93 static void toolbar_reply_to_all_cb             (GtkWidget      *widget,
94                                         gpointer                 data);
95
96 static void toolbar_reply_to_sender_cb       (GtkWidget *widget,
97                                         gpointer                 data);
98
99 static void toolbar_forward_cb          (GtkWidget      *widget,
100                                         gpointer                  data);
101
102 static void toolbar_delete_cb           (GtkWidget      *widget,
103                                         gpointer                 data);
104
105 static void toolbar_exec_cb             (GtkWidget      *widget,
106                                         gpointer                 data);
107
108 static void toolbar_next_unread_cb      (GtkWidget      *widget,
109                                  gpointer        data);
110
111 static void toolbar_actions_execute_cb       (GtkWidget *widget,
112                                          gpointer        data);
113
114 static void toolbar_reply_popup_cb      (GtkWidget      *widget,
115                                          GdkEventButton *event,
116                                          gpointer        data);
117 static void toolbar_reply_popup_closed_cb(GtkMenuShell  *menu_shell,
118                                          gpointer        data);
119
120 static void toolbar_reply_to_all_popup_cb(GtkWidget     *widget,
121                                          GdkEventButton *event,
122                                          gpointer        data);
123
124 static void toolbar_reply_to_all_popup_closed_cb(GtkMenuShell   *menu_shell,
125                                          gpointer        data);
126
127 static void toolbar_reply_to_sender_popup_cb(GtkWidget  *widget,
128                                          GdkEventButton *event,
129                                          gpointer        data);
130 static void toolbar_reply_to_sender_popup_closed_cb(GtkMenuShell        *menu_shell,
131                                          gpointer        data);
132
133 static void toolbar_forward_popup_cb     (GtkWidget      *widget,
134                                          GdkEventButton    *event,
135                                          gpointer        data);
136
137 static void toolbar_forward_popup_closed_cb   (GtkMenuShell     *menu_shell,
138                                          gpointer        data);
139
140 static ToolbarAction t_action[] = 
141 {
142         { "A_RECEIVE_ALL",   N_("Receive Mail on all Accounts"),    toolbar_inc_all_cb               },
143         { "A_RECEIVE_CUR",   N_("Receive Mail on current Account"), toolbar_inc_cb                   },
144         { "A_SEND_QUEUD",    N_("Send Queud Message(s)"),           toolbar_send_cb                  },
145         { "A_COMPOSE_EMAIL", N_("Compose Email"),                   toolbar_compose_mail_cb          },
146         { "A_REPLY_MESSAGE", N_("Reply to Message"),                toolbar_reply_cb                 },
147         { "A_REPLY_SENDER",  N_("Reply to Sender"),                 toolbar_reply_to_sender_cb       },
148         { "A_REPLY_ALL",     N_("Reply to All"),                    toolbar_reply_to_all_cb          },
149         { "A_FORWARD",       N_("Forward Message"),                 toolbar_forward_cb               },
150         { "A_DELETE",        N_("Delete Message"),                  toolbar_delete_cb                },
151         { "A_EXECUTE",       N_("Execute"),                         toolbar_exec_cb                  },
152         { "A_GOTO_NEXT",     N_("Goto Next Message"),               toolbar_next_unread_cb           },
153         { "A_SYL_ACTIONS",   N_("Sylpheed Actions Feature"),        toolbar_actions_execute_cb       },
154
155         { "A_COMPOSE_NEWS",  N_("Compose News"),                    toolbar_compose_news_cb          },    
156         { "A_SEPARATOR",     SEPARATOR,                             NULL                             },
157 };
158
159 static GtkItemFactoryEntry reply_popup_entries[] =
160 {
161         {N_("/Reply with _quote"), NULL, reply_cb, COMPOSE_REPLY_WITH_QUOTE, NULL},
162         {N_("/_Reply without quote"), NULL, reply_cb, COMPOSE_REPLY_WITHOUT_QUOTE, NULL}
163 };
164 static GtkItemFactoryEntry replyall_popup_entries[] =
165 {
166         {N_("/Reply to all with _quote"), "<shift>A", reply_cb, COMPOSE_REPLY_TO_ALL_WITH_QUOTE, NULL},
167         {N_("/_Reply to all without quote"), "a", reply_cb, COMPOSE_REPLY_TO_ALL_WITHOUT_QUOTE, NULL}
168 };
169 static GtkItemFactoryEntry replysender_popup_entries[] =
170 {
171         {N_("/Reply to sender with _quote"), NULL, reply_cb, COMPOSE_REPLY_TO_SENDER_WITH_QUOTE, NULL},
172         {N_("/_Reply to sender without quote"), NULL, reply_cb, COMPOSE_REPLY_TO_SENDER_WITHOUT_QUOTE, NULL}
173 };
174 static GtkItemFactoryEntry fwd_popup_entries[] =
175 {
176         {N_("/_Forward message (inline style)"), "f", reply_cb, COMPOSE_FORWARD_INLINE, NULL},
177         {N_("/Forward message as _attachment"), "<shift>F", reply_cb, COMPOSE_FORWARD_AS_ATTACH, NULL}
178 };
179
180
181 void toolbar_actions_cb(GtkWidget *widget, ToolbarItem *toolbar_item)
182 {
183         if (toolbar_item->action < sizeof (t_action) / sizeof (t_action[0]))
184                 t_action[toolbar_item->action].func(widget, mwin);
185 }
186
187 gint toolbar_ret_val_from_descr(gchar *descr)
188 {
189         gint i;
190         
191         for (i = 0; i < sizeof (t_action) / sizeof (t_action[0]); i++) {
192                 if (g_strcasecmp (t_action[i].descr, descr) == 0)
193                                 return i;
194         }
195         
196         return -1;
197 }
198
199 gchar *toolbar_ret_descr_from_val(gint val)
200 {
201         g_return_val_if_fail (val >=0 && val <= sizeof(t_action) / sizeof(t_action[0]), NULL);
202
203         return t_action[val].descr;
204
205 }
206
207 static gint toolbar_ret_val_from_text(gchar *text)
208 {
209         gint i;
210         
211         for (i = 0; i < sizeof (t_action) / sizeof (t_action[0]); i++) {
212                 if (g_strcasecmp (t_action[i].action_text, text) == 0)
213                                 return i;
214         }
215         
216         return -1;
217 }
218
219 gchar *toolbar_ret_text_from_val(gint val)
220 {
221         g_return_val_if_fail (val >=0 && val <= sizeof(t_action) / sizeof(t_action[0]), NULL);
222
223         return t_action[val].action_text;
224 }
225
226 gboolean toolbar_is_duplicate(gint action)
227 {
228         GSList *cur;
229
230         if ((action == A_SEPARATOR) || (action == A_SYL_ACTIONS)) 
231                 return FALSE;
232
233         for (cur = toolbar_list; cur != NULL; cur = cur->next) {
234                 ToolbarItem *item = (ToolbarItem*) cur->data;
235                 
236                 if (item->action == action)
237                         return TRUE;
238         }
239         return FALSE;
240 }
241
242 GList *toolbar_get_action_items(void)
243 {
244         GList *items = NULL;
245         gint i;
246         
247         for (i = 0; i < N_ACTION_VAL; i++) {
248                 items = g_list_append (items, t_action[i].descr);
249         }
250
251         return items;
252 }
253
254 static void toolbar_parse_item(XMLFile *file)
255 {
256         GList *attr;
257         gchar *name, *value;
258         ToolbarItem *item = NULL;
259
260         attr = xml_get_current_tag_attr(file);
261         item = g_new0 (ToolbarItem, 1);
262         while( attr ) {
263                 name = ((XMLAttr *)attr->data)->name;
264                 value = ((XMLAttr *)attr->data)->value;
265                 
266                 if (strcmp (name, TOOLBAR_ICON_FILE) == 0) 
267                         item->file = g_strdup (value);
268                 else if (strcmp (name, TOOLBAR_ICON_TEXT) == 0)
269                         item->text = g_strdup (value);
270                 else if (strcmp (name, TOOLBAR_ICON_ACTION) == 0)
271                         item->action = toolbar_ret_val_from_text(value);
272
273                 attr = g_list_next (attr);
274         }
275         if (item->action != -1) {
276                 
277                 if ( !toolbar_is_duplicate(item->action)) 
278                         toolbar_list = g_slist_append (toolbar_list, item);
279         }
280 }
281
282 void toolbar_set_default_toolbar(void)
283 {
284         gint i;
285         /* create default toolbar */
286         struct _default_toolbar {
287                 gint action;
288                 gint icon;
289                 gchar *text;
290         } default_toolbar[] = {
291                 { A_RECEIVE_CUR,   STOCK_PIXMAP_MAIL_RECEIVE,         _("Get")     },
292                 { A_RECEIVE_ALL,   STOCK_PIXMAP_MAIL_RECEIVE_ALL,     _("Get All") },
293                 { A_SEPARATOR,     0,                                 ("")         }, 
294                 { A_SEND_QUEUD,    STOCK_PIXMAP_MAIL_SEND_QUEUE,      _("Send")    },
295                 { A_COMPOSE_EMAIL, STOCK_PIXMAP_MAIL_COMPOSE,         _("Email")   },
296                 { A_SEPARATOR,     0,                                 ("")         },
297                 { A_REPLY_MESSAGE, STOCK_PIXMAP_MAIL_REPLY,           _("Reply")   }, 
298                 { A_REPLY_ALL,     STOCK_PIXMAP_MAIL_REPLY_TO_ALL,    _("All")     },
299                 { A_REPLY_SENDER,  STOCK_PIXMAP_MAIL_REPLY_TO_AUTHOR, _("Sender")  },
300                 { A_FORWARD,       STOCK_PIXMAP_MAIL_FORWARD,         _("Forward") },
301                 { A_SEPARATOR,     0,                                 ("")         },
302                 { A_DELETE,        STOCK_PIXMAP_DELETED,              _("Delete")  },
303                 { A_EXECUTE,       STOCK_PIXMAP_EXEC,                 _("Execute") },
304                 { A_GOTO_NEXT,     STOCK_PIXMAP_DOWN_ARROW,           _("Next")    },
305         };
306                 
307         for (i = 0; i < sizeof (default_toolbar) / sizeof (default_toolbar[0]); i++) {
308                 
309                 ToolbarItem *toolbar_item = g_new0 (ToolbarItem, 1);
310                 
311                 if (default_toolbar[i].action != A_SEPARATOR) {
312                         
313                         gchar *file = stock_pixmap_get_name ((StockPixmap)default_toolbar[i].icon);
314                         
315                         toolbar_item->file   = g_strdup (file);
316                         toolbar_item->action = default_toolbar[i].action;
317                         toolbar_item->text   = g_strdup (default_toolbar[i].text);
318                 } else {
319
320                         toolbar_item->file   = g_strdup (SEPARATOR);
321                         toolbar_item->action = A_SEPARATOR;
322                 }
323                 
324                 if (toolbar_item->action != -1) {
325                         
326                         if ( !toolbar_is_duplicate(toolbar_item->action)) 
327                                 toolbar_list = g_slist_append (toolbar_list, toolbar_item);
328                 }       
329         }
330 }
331
332 void toolbar_save_config_file ()
333 {
334         GSList *cur;
335         FILE *fp;
336         PrefFile *pfile;
337         gchar *fileSpec = NULL;
338
339         debug_print("save Toolbar Configuration\n");
340
341         fileSpec = g_strconcat (get_rc_dir(), G_DIR_SEPARATOR_S, TOOLBAR_FILE, NULL );
342         pfile = prefs_write_open (fileSpec);
343         g_free( fileSpec );
344         if( pfile ) {
345                 fp = pfile->fp;
346                 fprintf (fp, "<?xml version=\"1.0\" encoding=\"%s\" ?>\n",
347                                 conv_get_current_charset_str());
348
349                 fprintf (fp, "<%s>\n", TOOLBAR_TAG_INDEX);
350
351                 for (cur = toolbar_list; cur != NULL; cur = cur->next) {
352                         ToolbarItem *toolbar_item = (ToolbarItem*) cur->data;
353                         
354                         if (g_strcasecmp (toolbar_item->file, SEPARATOR) != 0) 
355                                 fprintf (fp, "\t<%s %s=\"%s\" %s=\"%s\" %s=\"%s\"/>\n",
356                                          TOOLBAR_TAG_ITEM, 
357                                          TOOLBAR_ICON_FILE, toolbar_item->file,
358                                          TOOLBAR_ICON_TEXT, toolbar_item->text,
359                                          TOOLBAR_ICON_ACTION, 
360                                          toolbar_ret_text_from_val (toolbar_item->action));
361                         else 
362                                 fprintf (fp, "\t<%s/>\n", TOOLBAR_TAG_SEPARATOR); 
363                 }
364
365                 fprintf (fp, "</%s>\n", TOOLBAR_TAG_INDEX);     
366         
367                 if( prefs_write_close (pfile) < 0 ) 
368                         g_warning(_("failed to write toolbar configuration to file\n"));
369         } else
370                 g_warning(_("failed to open toolbar configuration file for writing\n"));
371 }
372
373 void toolbar_clear_list()
374 {
375         while (toolbar_list != NULL) {
376                 ToolbarItem *item = (ToolbarItem*) toolbar_list->data;
377                 
378                 toolbar_list = g_slist_remove (toolbar_list, item);
379                 if (item->file)
380                         g_free (item->file);
381                 if (item->text)
382                         g_free (item->text);
383         }
384         g_slist_free (toolbar_list);
385 }
386
387 void toolbar_read_config_file ()
388 {
389         XMLFile *file   = NULL;
390         gchar *fileSpec = NULL;
391         GList *attr;
392         gboolean retVal;
393
394         debug_print("read Toolbar Configuration\n");
395
396         fileSpec = g_strconcat (get_rc_dir(), G_DIR_SEPARATOR_S, TOOLBAR_FILE, NULL );
397         file = xml_open_file (fileSpec);
398         g_free (fileSpec);
399
400         toolbar_clear_list();
401
402         if (file) {
403
404                 if (setjmp (jumper)) {
405                         xml_close_file (file);
406                         return;
407                 }
408
409                 if (xml_get_dtd (file)) 
410                         return;
411                 if (xml_parse_next_tag (file)) 
412                         return;
413                 if (!xml_compare_tag (file, TOOLBAR_TAG_INDEX)) 
414                         return;
415                                 
416                 attr = xml_get_current_tag_attr (file);
417                 
418                 retVal = TRUE;
419                 for (;;) {
420                         if (!file->level) 
421                                 break;
422                         /* Get item tag */
423                         if (xml_parse_next_tag (file)) 
424                                 longjmp (jumper, 1);
425
426                         /* Get next tag (icon, icon_text or icon_action) */
427                         if (xml_compare_tag (file, TOOLBAR_TAG_ITEM)) {
428                                 toolbar_parse_item (file);
429                         } else if (xml_compare_tag (file, TOOLBAR_TAG_SEPARATOR)) {
430                                 ToolbarItem *item = g_new0 (ToolbarItem, 1);
431                         
432                                 item->file   = g_strdup (SEPARATOR);
433                                 item->action = A_SEPARATOR;
434                                 toolbar_list = g_slist_append (toolbar_list, item);
435                         }
436
437                 }
438         }
439         else {  
440                 /* save default toolbar */
441                 toolbar_set_default_toolbar();
442                 toolbar_save_config_file();
443         }
444 }
445
446 static void toolbar_actions_execute_cb (GtkWidget       *widget,
447                                  gpointer        data)
448 {
449         gint i = 0;
450         GSList *cur, *lop;
451         MainWindow *mainwin = (MainWindow*)data;
452         gchar *action, *action_p;
453         gboolean found = FALSE;
454
455         for (cur = mainwin->toolbar->syl_action; cur != NULL;  cur = cur->next) {
456                 ToolbarSylpheedActions *act = (ToolbarSylpheedActions*)cur->data;
457
458                 if (widget == act->widget) {
459                         
460                         for (lop = prefs_common.actions_list; lop != NULL; lop = lop->next) {
461                                 action = g_strdup((gchar*)lop->data);
462
463                                 action_p = strstr(action, ": ");
464                                 action_p[0] = 0x00;
465                                 if (g_strcasecmp(act->name, action) == 0) {
466                                         found = TRUE;
467                                         g_free (action);
468                                         break;
469                                 } else 
470                                         i++;
471                                 g_free (action);
472                         }
473                         if (found) 
474                                 break;
475                 }
476         }
477
478         if (found)
479                 actions_execute(mwin, i, widget);
480         else
481                 g_warning (_("Error: did not find Sylpheed Action to execute"));
482 }
483
484 static void toolbar_inc_cb               (GtkWidget     *widget,
485                                  gpointer        data)
486 {
487         MainWindow *mainwin = (MainWindow *)data;
488
489         inc_mail_cb(mainwin, 0, NULL);
490 }
491
492 static void toolbar_inc_all_cb  (GtkWidget      *widget,
493                                  gpointer        data)
494 {
495         MainWindow *mainwin = (MainWindow *)data;
496
497         inc_all_account_mail_cb(mainwin, 0, NULL);
498 }
499
500 static void toolbar_send_cb     (GtkWidget      *widget,
501                                  gpointer        data)
502 {
503         MainWindow *mainwin = (MainWindow *)data;
504
505         send_queue_cb(mainwin, 0, NULL);
506 }
507
508 static void toolbar_compose_news_cb     (GtkWidget      *widget,
509                                  gpointer        data)
510 {
511         MainWindow *mainwin = (MainWindow *)data;
512
513         compose_news_cb(mainwin, 0, NULL);
514 }
515
516 static void toolbar_compose_mail_cb     (GtkWidget      *widget,
517                                  gpointer        data)
518 {
519         MainWindow *mainwin = (MainWindow *)data;
520
521         compose_mail_cb(mainwin, 0, NULL);
522 }
523
524 static void toolbar_reply_cb(GtkWidget *widget, gpointer data)
525 {
526         MainWindow *mainwin = (MainWindow *)data;
527
528         reply_cb(mainwin, 
529                  prefs_common.reply_with_quote ? COMPOSE_REPLY_WITH_QUOTE 
530                  : COMPOSE_REPLY_WITHOUT_QUOTE,
531                  NULL);
532 }
533
534 static void toolbar_reply_to_all_cb(GtkWidget *widget, gpointer data)
535 {
536         MainWindow *mainwin = (MainWindow *)data;
537
538         reply_cb(mainwin, 
539                  prefs_common.reply_with_quote ? COMPOSE_REPLY_TO_ALL_WITH_QUOTE 
540                  : COMPOSE_REPLY_TO_ALL_WITHOUT_QUOTE, 
541                  NULL);
542 }
543
544
545 static void toolbar_reply_to_sender_cb(GtkWidget *widget, gpointer data)
546 {
547         MainWindow *mainwin = (MainWindow *)data;
548
549         reply_cb(mainwin, 
550                  prefs_common.reply_with_quote ? COMPOSE_REPLY_TO_SENDER_WITH_QUOTE 
551                  : COMPOSE_REPLY_TO_SENDER_WITHOUT_QUOTE, 
552                  NULL);
553 }
554
555 static void toolbar_forward_cb  (GtkWidget      *widget,
556                                  gpointer        data)
557 {
558         MainWindow *mainwin = (MainWindow *)data;
559
560         if (prefs_common.forward_as_attachment)
561                 reply_cb(mainwin, COMPOSE_FORWARD_AS_ATTACH, NULL);
562         else
563                 reply_cb(mainwin, COMPOSE_FORWARD, NULL);
564 }
565
566 static void toolbar_delete_cb   (GtkWidget      *widget,
567                                  gpointer        data)
568 {
569         MainWindow *mainwin = (MainWindow *)data;
570
571         summary_delete(mainwin->summaryview);
572 }
573
574 static void toolbar_exec_cb     (GtkWidget      *widget,
575                                  gpointer        data)
576 {
577         MainWindow *mainwin = (MainWindow *)data;
578
579         summary_execute(mainwin->summaryview);
580 }
581
582 static void toolbar_next_unread_cb      (GtkWidget      *widget,
583                                          gpointer        data)
584 {
585         MainWindow *mainwin = (MainWindow *)data;
586
587         next_unread_cb(mainwin, 0, NULL);
588 }
589
590 /* popup callback functions */
591 static void toolbar_reply_popup_cb(GtkWidget *widget, GdkEventButton *event, gpointer data)
592 {
593         MainWindow *mainwindow = (MainWindow *) data;
594         
595         if (!event) return;
596
597         if (event->button == 3) {
598                 gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
599                 gtk_menu_popup(GTK_MENU(mainwindow->toolbar->reply_popup), NULL, NULL,
600                        menu_button_position, widget,
601                        event->button, event->time);
602         }
603 }
604
605 static void toolbar_reply_popup_closed_cb(GtkMenuShell *menu_shell, gpointer data)
606 {
607         MainWindow *mainwin = (MainWindow *)data;
608
609         gtk_button_set_relief(GTK_BUTTON(mainwin->toolbar->reply_btn), GTK_RELIEF_NONE);
610         manage_window_focus_in(mainwin->window, NULL, NULL);
611 }
612
613 static void toolbar_reply_to_all_popup_cb(GtkWidget *widget, GdkEventButton *event, gpointer data)
614 {
615         MainWindow *mainwindow = (MainWindow *) data;
616         
617         if (!event) return;
618
619         if (event->button == 3) {
620                 gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
621                 gtk_menu_popup(GTK_MENU(mainwindow->toolbar->replyall_popup), NULL, NULL,
622                        menu_button_position, widget,
623                        event->button, event->time);
624         }
625 }
626
627 static void toolbar_reply_to_all_popup_closed_cb(GtkMenuShell *menu_shell, gpointer data)
628 {
629         MainWindow *mainwin = (MainWindow *)data;
630
631         gtk_button_set_relief(GTK_BUTTON(mainwin->toolbar->replyall_btn), GTK_RELIEF_NONE);
632         manage_window_focus_in(mainwin->window, NULL, NULL);
633 }
634
635 static void toolbar_reply_to_sender_popup_cb(GtkWidget *widget, GdkEventButton *event, gpointer data)
636 {
637         MainWindow *mainwindow = (MainWindow *) data;
638
639         if (!event) return;
640
641         if (event->button == 3) {
642                 gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
643                 gtk_menu_popup(GTK_MENU(mainwindow->toolbar->replysender_popup), NULL, NULL,
644                        menu_button_position, widget,
645                        event->button, event->time);
646         }
647 }
648
649 static void toolbar_reply_to_sender_popup_closed_cb(GtkMenuShell *menu_shell, gpointer data)
650 {
651         MainWindow *mainwin = (MainWindow *)data;
652
653         gtk_button_set_relief(GTK_BUTTON(mainwin->toolbar->replysender_btn), GTK_RELIEF_NONE);
654         manage_window_focus_in(mainwin->window, NULL, NULL);
655 }
656
657 static void toolbar_forward_popup_cb(GtkWidget *widget, GdkEventButton *event, gpointer data)
658 {
659         MainWindow *mainwindow = (MainWindow *) data;
660         
661         if (!event) return;
662
663         if (event->button == 3) {
664                 gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
665                 gtk_menu_popup(GTK_MENU(mainwindow->toolbar->fwd_popup), NULL, NULL,
666                        menu_button_position, widget,
667                        event->button, event->time);
668         }
669 }
670
671 static void toolbar_forward_popup_closed_cb(GtkMenuShell *menu_shell, gpointer data)
672 {
673         MainWindow *mainwin = (MainWindow *)data;
674
675         gtk_button_set_relief(GTK_BUTTON(mainwin->toolbar->fwd_btn), GTK_RELIEF_NONE);
676         manage_window_focus_in(mainwin->window, NULL, NULL);
677 }
678
679 static void activate_compose_button (MainToolbar *toolbar,
680                                 ToolbarStyle style,
681                                 ComposeButtonType type)
682 {
683         if (style == TOOLBAR_NONE) 
684                 return;
685
686         if ((!toolbar->compose_mail_btn) || (!toolbar->compose_news_btn))
687                 return;
688
689         gtk_widget_hide(type == COMPOSEBUTTON_NEWS ? toolbar->compose_mail_btn 
690                         : toolbar->compose_news_btn);
691         gtk_widget_show(type == COMPOSEBUTTON_NEWS ? toolbar->compose_news_btn
692                         : toolbar->compose_mail_btn);
693         toolbar->compose_btn_type = type;       
694 }
695
696 void toolbar_reflect_prefs_pixmap_theme(MainWindow *mainwin)
697 {
698         gtk_container_remove(GTK_CONTAINER(mainwin->handlebox), 
699                              GTK_WIDGET(mainwin->toolbar->toolbar));
700
701         mainwin->toolbar->toolbar = NULL;
702         toolbar_create(mainwin, mainwin->handlebox);
703
704 }
705
706 void toolbar_set_compose_button(MainToolbar *toolbar, ComposeButtonType compose_btn_type)
707 {
708         if (toolbar->compose_btn_type != compose_btn_type)
709                 activate_compose_button(toolbar, 
710                                         prefs_common.toolbar_style,
711                                         compose_btn_type);
712 }
713
714 void toolbar_set_sensitive(MainWindow *mainwin)
715 {
716         SensitiveCond state;
717         gboolean sensitive;
718         MainToolbar *toolbar = mainwin->toolbar;
719         gint i = 0;
720         gint total = 0;
721
722         struct {
723                 GtkWidget *widget;
724                 SensitiveCond cond;
725                 gboolean empty;
726         } entry[11];
727
728 #define SET_WIDGET_COND(w, c)     \
729 {                              \
730          entry[total].widget = w; \
731         entry[total].cond   = c; \
732         total++;                       \
733 }
734
735         SET_WIDGET_COND(toolbar->get_btn, M_HAVE_ACCOUNT|M_UNLOCKED);
736         SET_WIDGET_COND(toolbar->getall_btn, M_HAVE_ACCOUNT|M_UNLOCKED);
737         SET_WIDGET_COND(toolbar->compose_news_btn, M_HAVE_ACCOUNT);
738         SET_WIDGET_COND(toolbar->reply_btn,
739                         M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST);
740         SET_WIDGET_COND(toolbar->replyall_btn,
741                         M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST);
742         SET_WIDGET_COND(toolbar->replysender_btn,
743                         M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST);
744         SET_WIDGET_COND(toolbar->fwd_btn, M_HAVE_ACCOUNT|M_TARGET_EXIST);
745
746         SET_WIDGET_COND(toolbar->next_btn, M_MSG_EXIST);
747         SET_WIDGET_COND(toolbar->delete_btn,
748                         M_TARGET_EXIST|M_ALLOW_DELETE|M_UNLOCKED);
749         SET_WIDGET_COND(toolbar->exec_btn, M_MSG_EXIST|M_EXEC|M_UNLOCKED);
750
751 #undef SET_WIDGET_COND
752
753         state = main_window_get_current_state(mainwin);
754
755         for (i = 0; i < total; i++) {
756                 
757                 if (entry[i].widget == NULL) continue;
758                 sensitive = ((entry[i].cond & state) == entry[i].cond);
759                 gtk_widget_set_sensitive(entry[i].widget, sensitive);
760         }
761
762         activate_compose_button(toolbar, 
763                         prefs_common.toolbar_style,
764                         toolbar->compose_btn_type);
765 }
766
767 void toolbar_popups_create(MainWindow *mainwin, GtkWidget *window)
768 {
769         guint n_menu_entries;
770         GtkWidget *reply_popup;
771         GtkWidget *replyall_popup;
772         GtkWidget *replysender_popup;
773         GtkWidget *fwd_popup;
774
775         if (mainwin->toolbar != NULL)
776                 g_free (mainwin->toolbar);
777
778         mainwin->toolbar = g_new0(MainToolbar, 1); 
779         
780         /* store mainwin localy */
781         mwin = mainwin;
782
783         n_menu_entries = sizeof(reply_popup_entries) /
784                         sizeof(reply_popup_entries[0]);
785         reply_popup = popupmenu_create(window, reply_popup_entries, n_menu_entries,
786                                       "<ReplyPopup>", mainwin);
787         gtk_signal_connect(GTK_OBJECT(reply_popup), "selection_done",
788                            GTK_SIGNAL_FUNC(toolbar_reply_popup_closed_cb), mainwin);
789         n_menu_entries = sizeof(replyall_popup_entries) /
790                         sizeof(replyall_popup_entries[0]);
791         replyall_popup = popupmenu_create(window, replyall_popup_entries, n_menu_entries,
792                                       "<ReplyAllPopup>", mainwin);
793         gtk_signal_connect(GTK_OBJECT(replyall_popup), "selection_done",
794                            GTK_SIGNAL_FUNC(toolbar_reply_to_all_popup_closed_cb), mainwin);
795         n_menu_entries = sizeof(replysender_popup_entries) /
796                         sizeof(replysender_popup_entries[0]);
797         replysender_popup = popupmenu_create(window, replysender_popup_entries, n_menu_entries,
798                                       "<ReplySenderPopup>", mainwin);
799         gtk_signal_connect(GTK_OBJECT(replysender_popup), "selection_done",
800                            GTK_SIGNAL_FUNC(toolbar_reply_to_sender_popup_closed_cb), mainwin);
801         /* create the popup menu for the forward button */
802         n_menu_entries = sizeof(fwd_popup_entries) /
803                         sizeof(fwd_popup_entries[0]);
804         fwd_popup = popupmenu_create(window, fwd_popup_entries, n_menu_entries,
805                                       "<ForwardPopup>", mainwin);
806         gtk_signal_connect(GTK_OBJECT(fwd_popup), "selection_done",
807                            GTK_SIGNAL_FUNC(toolbar_forward_popup_closed_cb), mainwin);
808
809         mainwin->toolbar->reply_popup       = reply_popup;
810         mainwin->toolbar->replyall_popup    = replyall_popup;
811         mainwin->toolbar->replysender_popup = replysender_popup;
812         mainwin->toolbar->fwd_popup         = fwd_popup;
813 }
814
815 void toolbar_destroy(MainWindow *mainwin)
816 {
817         ToolbarSylpheedActions *syl_action;
818
819         toolbar_clear_list();
820         
821         while (mainwin->toolbar->syl_action != NULL) {
822                 syl_action = (ToolbarSylpheedActions*)mainwin->toolbar->syl_action->data;
823
824                 if (syl_action->name)
825                         g_free (syl_action->name);
826                 mainwin->toolbar->syl_action = g_slist_remove(mainwin->toolbar->syl_action, syl_action);
827         }
828
829         g_slist_free (mainwin->toolbar->syl_action);
830 }
831
832 void toolbar_create(MainWindow *mainwin,
833                     GtkWidget *container)
834 {
835         ToolbarItem *toolbar_item;
836
837         GtkWidget *toolbar;
838         GtkWidget *icon_wid  = NULL;
839         GtkWidget *icon_news = NULL;
840         GtkWidget *item_news = NULL;
841         GtkWidget *item;
842         ToolbarSylpheedActions *syl_action;
843         GSList *cur;
844
845         toolbar_destroy(mainwin);
846         toolbar_read_config_file();
847
848         toolbar = gtk_toolbar_new(GTK_ORIENTATION_HORIZONTAL,
849                                   GTK_TOOLBAR_BOTH);
850         gtk_container_add(GTK_CONTAINER(container), toolbar);
851         gtk_container_set_border_width(GTK_CONTAINER(container), 2);
852         gtk_toolbar_set_button_relief(GTK_TOOLBAR(toolbar), GTK_RELIEF_NONE);
853         gtk_toolbar_set_space_style(GTK_TOOLBAR(toolbar),
854                                     GTK_TOOLBAR_SPACE_LINE);
855         
856         mainwin->toolbar->exec_btn = NULL;
857
858         for (cur = toolbar_list; cur != NULL; cur = cur->next) {
859                 toolbar_item  = (ToolbarItem*) cur->data;
860                 
861
862                 if (g_strcasecmp (toolbar_item->file, SEPARATOR) == 0) {
863                         gtk_toolbar_append_space (GTK_TOOLBAR (toolbar));
864                         continue;
865                 }
866
867                 icon_wid = stock_pixmap_widget(container, stock_pixmap_get_icon (toolbar_item->file));
868                 item  = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
869                                                 toolbar_item->text,
870                                                 toolbar_ret_descr_from_val (toolbar_item->action),
871                                                 (""),
872                                                 icon_wid, toolbar_actions_cb, 
873                                                 toolbar_item);
874                 
875                 switch (toolbar_item->action) {
876                 case A_RECEIVE_ALL:
877                         mainwin->toolbar->getall_btn = item;
878                         break;
879                 case A_RECEIVE_CUR:
880                         mainwin->toolbar->get_btn = item;
881                         break;
882                 case A_SEND_QUEUD:
883                         mainwin->toolbar->send_btn = item; 
884                         break;
885                 case A_COMPOSE_EMAIL:
886                         icon_news = stock_pixmap_widget(container, STOCK_PIXMAP_NEWS_COMPOSE);
887                         item_news = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
888                                                             _("News"),
889                                                             toolbar_ret_descr_from_val (A_COMPOSE_NEWS),
890                                                             (""),
891                                                             icon_news, toolbar_actions_cb, 
892                                                             toolbar_item);
893                         mainwin->toolbar->compose_mail_btn = item; 
894                         mainwin->toolbar->compose_news_btn = item_news;
895                         break;
896                 case A_REPLY_MESSAGE:
897                         mainwin->toolbar->reply_btn = item;
898                         gtk_signal_connect(GTK_OBJECT(mainwin->toolbar->reply_btn), 
899                                            "button_press_event",
900                                            GTK_SIGNAL_FUNC(toolbar_reply_popup_cb),
901                                            mainwin);
902                         break;
903                 case A_REPLY_SENDER:
904                         mainwin->toolbar->replysender_btn = item;
905                         gtk_signal_connect(GTK_OBJECT(mainwin->toolbar->replysender_btn), 
906                                            "button_press_event",
907                                            GTK_SIGNAL_FUNC(toolbar_reply_to_sender_popup_cb),
908                                            mainwin);
909                         break;
910                 case A_REPLY_ALL:
911                         mainwin->toolbar->replyall_btn = item;
912                         gtk_signal_connect(GTK_OBJECT(mainwin->toolbar->replyall_btn), 
913                                            "button_press_event",
914                                            GTK_SIGNAL_FUNC(toolbar_reply_to_all_popup_cb),
915                                            mainwin);
916                         break;
917                 case A_FORWARD:
918                         mainwin->toolbar->fwd_btn = item;
919                         gtk_signal_connect(GTK_OBJECT(mainwin->toolbar->fwd_btn), 
920                                            "button_press_event",
921                                            GTK_SIGNAL_FUNC(toolbar_forward_popup_cb),
922                                            mainwin);
923                         break;
924                 case A_DELETE:
925                         mainwin->toolbar->delete_btn = item;
926                         break;
927                 case A_EXECUTE:
928                         mainwin->toolbar->exec_btn = item;
929                         break;
930                 case A_GOTO_NEXT:
931                         mainwin->toolbar->next_btn = item;
932                         break;
933                 case A_SYL_ACTIONS:
934                         syl_action = g_new0(ToolbarSylpheedActions, 1);
935                         syl_action->widget = item;
936                         syl_action->name   = g_strdup(toolbar_item->text);
937
938                         mainwin->toolbar->syl_action = g_slist_append(mainwin->toolbar->syl_action,
939                                                                       syl_action);
940                         gtk_widget_show (item);
941                         break;
942                 default:
943                         break;
944                 }
945         }
946
947         /* we always create an exec button, if there isn't one yet */
948         if (!mainwin->toolbar->exec_btn) {
949                 toolbar_item = g_new0(ToolbarItem, 1);
950                 toolbar_item->action = A_EXECUTE;
951                 toolbar_item->file   = stock_pixmap_get_name (STOCK_PIXMAP_EXEC);
952                 toolbar_item->text   = toolbar_ret_text_from_val(A_EXECUTE);
953
954                 icon_wid = stock_pixmap_widget(container, STOCK_PIXMAP_EXEC);
955                 item = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
956                                                _("Execute"),
957                                                toolbar_ret_descr_from_val (A_EXECUTE),
958                                                (""),
959                                                icon_wid, toolbar_actions_cb,
960                                                toolbar_item);
961                 mainwin->toolbar->exec_btn = item;
962                 g_free (toolbar_item);
963         }
964         
965         mainwin->toolbar->toolbar = toolbar;
966         
967         activate_compose_button(mainwin->toolbar, 
968                                 prefs_common.toolbar_style, 
969                                 mainwin->toolbar->compose_btn_type);
970
971         gtk_widget_show_all(toolbar);
972 }