Custom Toolbar Final
[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         toolbar_clear_list();
373 }
374
375 void toolbar_clear_list()
376 {
377         while (toolbar_list != NULL) {
378                 ToolbarItem *item = (ToolbarItem*) toolbar_list->data;
379                 
380                 toolbar_list = g_slist_remove (toolbar_list, item);
381                 if (item->file)
382                         g_free (item->file);
383                 if (item->text)
384                         g_free (item->text);
385         }
386         g_slist_free (toolbar_list);
387 }
388
389 void toolbar_read_config_file ()
390 {
391         XMLFile *file   = NULL;
392         gchar *fileSpec = NULL;
393         GList *attr;
394         gboolean retVal;
395
396         debug_print("read Toolbar Configuration\n");
397
398         fileSpec = g_strconcat (get_rc_dir(), G_DIR_SEPARATOR_S, TOOLBAR_FILE, NULL );
399         file = xml_open_file (fileSpec);
400         g_free (fileSpec);
401
402         toolbar_clear_list();
403
404         if (file) {
405
406                 if (setjmp (jumper)) {
407                         xml_close_file (file);
408                         return;
409                 }
410
411                 if (xml_get_dtd (file)) 
412                         return;
413                 if (xml_parse_next_tag (file)) 
414                         return;
415                 if (!xml_compare_tag (file, TOOLBAR_TAG_INDEX)) 
416                         return;
417                                 
418                 attr = xml_get_current_tag_attr (file);
419                 
420                 retVal = TRUE;
421                 for (;;) {
422                         if (!file->level) 
423                                 break;
424                         /* Get item tag */
425                         if (xml_parse_next_tag (file)) 
426                                 longjmp (jumper, 1);
427
428                         /* Get next tag (icon, icon_text or icon_action) */
429                         if (xml_compare_tag (file, TOOLBAR_TAG_ITEM)) {
430                                 toolbar_parse_item (file);
431                         } else if (xml_compare_tag (file, TOOLBAR_TAG_SEPARATOR)) {
432                                 ToolbarItem *item = g_new0 (ToolbarItem, 1);
433                         
434                                 item->file   = g_strdup (SEPARATOR);
435                                 item->action = A_SEPARATOR;
436                                 toolbar_list = g_slist_append (toolbar_list, item);
437                         }
438
439                 }
440         }
441         else {  
442                 /* save default toolbar */
443                 toolbar_set_default_toolbar();
444                 toolbar_save_config_file();
445         }
446 }
447
448 static void toolbar_actions_execute_cb (GtkWidget       *widget,
449                                  gpointer        data)
450 {
451         gint i = 0;
452         GSList *cur, *lop;
453         MainWindow *mainwin = (MainWindow*)data;
454         gchar *action, *action_p;
455         gboolean found = FALSE;
456
457         for (cur = mainwin->toolbar->syl_action; cur != NULL;  cur = cur->next) {
458                 ToolbarSylpheedActions *act = (ToolbarSylpheedActions*)cur->data;
459
460                 if (widget == act->widget) {
461                         
462                         for (lop = prefs_common.actions_list; lop != NULL; lop = lop->next) {
463                                 action = g_strdup((gchar*)lop->data);
464
465                                 action_p = strstr(action, ": ");
466                                 action_p[0] = 0x00;
467                                 if (g_strcasecmp(act->name, action) == 0) {
468                                         found = TRUE;
469                                         g_free (action);
470                                         break;
471                                 } else 
472                                         i++;
473                                 g_free (action);
474                         }
475                         if (found) 
476                                 break;
477                 }
478         }
479
480         if (found)
481                 actions_execute(mwin, i, widget);
482         else
483                 g_warning (_("Error: did not find Sylpheed Action to execute"));
484 }
485
486 static void toolbar_inc_cb               (GtkWidget     *widget,
487                                  gpointer        data)
488 {
489         MainWindow *mainwin = (MainWindow *)data;
490
491         inc_mail_cb(mainwin, 0, NULL);
492 }
493
494 static void toolbar_inc_all_cb  (GtkWidget      *widget,
495                                  gpointer        data)
496 {
497         MainWindow *mainwin = (MainWindow *)data;
498
499         inc_all_account_mail_cb(mainwin, 0, NULL);
500 }
501
502 static void toolbar_send_cb     (GtkWidget      *widget,
503                                  gpointer        data)
504 {
505         MainWindow *mainwin = (MainWindow *)data;
506
507         send_queue_cb(mainwin, 0, NULL);
508 }
509
510 static void toolbar_compose_news_cb     (GtkWidget      *widget,
511                                  gpointer        data)
512 {
513         MainWindow *mainwin = (MainWindow *)data;
514
515         compose_news_cb(mainwin, 0, NULL);
516 }
517
518 static void toolbar_compose_mail_cb     (GtkWidget      *widget,
519                                  gpointer        data)
520 {
521         MainWindow *mainwin = (MainWindow *)data;
522
523         compose_mail_cb(mainwin, 0, NULL);
524 }
525
526 static void toolbar_reply_cb(GtkWidget *widget, gpointer data)
527 {
528         MainWindow *mainwin = (MainWindow *)data;
529
530         reply_cb(mainwin, 
531                  prefs_common.reply_with_quote ? COMPOSE_REPLY_WITH_QUOTE 
532                  : COMPOSE_REPLY_WITHOUT_QUOTE,
533                  NULL);
534 }
535
536 static void toolbar_reply_to_all_cb(GtkWidget *widget, gpointer data)
537 {
538         MainWindow *mainwin = (MainWindow *)data;
539
540         reply_cb(mainwin, 
541                  prefs_common.reply_with_quote ? COMPOSE_REPLY_TO_ALL_WITH_QUOTE 
542                  : COMPOSE_REPLY_TO_ALL_WITHOUT_QUOTE, 
543                  NULL);
544 }
545
546
547 static void toolbar_reply_to_sender_cb(GtkWidget *widget, gpointer data)
548 {
549         MainWindow *mainwin = (MainWindow *)data;
550
551         reply_cb(mainwin, 
552                  prefs_common.reply_with_quote ? COMPOSE_REPLY_TO_SENDER_WITH_QUOTE 
553                  : COMPOSE_REPLY_TO_SENDER_WITHOUT_QUOTE, 
554                  NULL);
555 }
556
557 static void toolbar_forward_cb  (GtkWidget      *widget,
558                                  gpointer        data)
559 {
560         MainWindow *mainwin = (MainWindow *)data;
561
562         if (prefs_common.forward_as_attachment)
563                 reply_cb(mainwin, COMPOSE_FORWARD_AS_ATTACH, NULL);
564         else
565                 reply_cb(mainwin, COMPOSE_FORWARD, NULL);
566 }
567
568 static void toolbar_delete_cb   (GtkWidget      *widget,
569                                  gpointer        data)
570 {
571         MainWindow *mainwin = (MainWindow *)data;
572
573         summary_delete(mainwin->summaryview);
574 }
575
576 static void toolbar_exec_cb     (GtkWidget      *widget,
577                                  gpointer        data)
578 {
579         MainWindow *mainwin = (MainWindow *)data;
580
581         summary_execute(mainwin->summaryview);
582 }
583
584 static void toolbar_next_unread_cb      (GtkWidget      *widget,
585                                          gpointer        data)
586 {
587         MainWindow *mainwin = (MainWindow *)data;
588
589         next_unread_cb(mainwin, 0, NULL);
590 }
591
592 /* popup callback functions */
593 static void toolbar_reply_popup_cb(GtkWidget *widget, GdkEventButton *event, gpointer data)
594 {
595         MainWindow *mainwindow = (MainWindow *) data;
596         
597         if (!event) return;
598
599         if (event->button == 3) {
600                 gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
601                 gtk_menu_popup(GTK_MENU(mainwindow->toolbar->reply_popup), NULL, NULL,
602                        menu_button_position, widget,
603                        event->button, event->time);
604         }
605 }
606
607 static void toolbar_reply_popup_closed_cb(GtkMenuShell *menu_shell, gpointer data)
608 {
609         MainWindow *mainwin = (MainWindow *)data;
610
611         gtk_button_set_relief(GTK_BUTTON(mainwin->toolbar->reply_btn), GTK_RELIEF_NONE);
612         manage_window_focus_in(mainwin->window, NULL, NULL);
613 }
614
615 static void toolbar_reply_to_all_popup_cb(GtkWidget *widget, GdkEventButton *event, gpointer data)
616 {
617         MainWindow *mainwindow = (MainWindow *) data;
618         
619         if (!event) return;
620
621         if (event->button == 3) {
622                 gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
623                 gtk_menu_popup(GTK_MENU(mainwindow->toolbar->replyall_popup), NULL, NULL,
624                        menu_button_position, widget,
625                        event->button, event->time);
626         }
627 }
628
629 static void toolbar_reply_to_all_popup_closed_cb(GtkMenuShell *menu_shell, gpointer data)
630 {
631         MainWindow *mainwin = (MainWindow *)data;
632
633         gtk_button_set_relief(GTK_BUTTON(mainwin->toolbar->replyall_btn), GTK_RELIEF_NONE);
634         manage_window_focus_in(mainwin->window, NULL, NULL);
635 }
636
637 static void toolbar_reply_to_sender_popup_cb(GtkWidget *widget, GdkEventButton *event, gpointer data)
638 {
639         MainWindow *mainwindow = (MainWindow *) data;
640
641         if (!event) return;
642
643         if (event->button == 3) {
644                 gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
645                 gtk_menu_popup(GTK_MENU(mainwindow->toolbar->replysender_popup), NULL, NULL,
646                        menu_button_position, widget,
647                        event->button, event->time);
648         }
649 }
650
651 static void toolbar_reply_to_sender_popup_closed_cb(GtkMenuShell *menu_shell, gpointer data)
652 {
653         MainWindow *mainwin = (MainWindow *)data;
654
655         gtk_button_set_relief(GTK_BUTTON(mainwin->toolbar->replysender_btn), GTK_RELIEF_NONE);
656         manage_window_focus_in(mainwin->window, NULL, NULL);
657 }
658
659 static void toolbar_forward_popup_cb(GtkWidget *widget, GdkEventButton *event, gpointer data)
660 {
661         MainWindow *mainwindow = (MainWindow *) data;
662         
663         if (!event) return;
664
665         if (event->button == 3) {
666                 gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
667                 gtk_menu_popup(GTK_MENU(mainwindow->toolbar->fwd_popup), NULL, NULL,
668                        menu_button_position, widget,
669                        event->button, event->time);
670         }
671 }
672
673 static void toolbar_forward_popup_closed_cb(GtkMenuShell *menu_shell, gpointer data)
674 {
675         MainWindow *mainwin = (MainWindow *)data;
676
677         gtk_button_set_relief(GTK_BUTTON(mainwin->toolbar->fwd_btn), GTK_RELIEF_NONE);
678         manage_window_focus_in(mainwin->window, NULL, NULL);
679 }
680
681 static void activate_compose_button (MainToolbar *toolbar,
682                                 ToolbarStyle style,
683                                 ComposeButtonType type)
684 {
685         if (style == TOOLBAR_NONE) 
686                 return;
687
688         if ((!toolbar->compose_mail_btn) || (!toolbar->compose_news_btn))
689                 return;
690
691         gtk_widget_hide(type == COMPOSEBUTTON_NEWS ? toolbar->compose_mail_btn 
692                         : toolbar->compose_news_btn);
693         gtk_widget_show(type == COMPOSEBUTTON_NEWS ? toolbar->compose_news_btn
694                         : toolbar->compose_mail_btn);
695         toolbar->compose_btn_type = type;       
696 }
697
698 void toolbar_reflect_prefs_pixmap_theme(MainWindow *mainwin)
699 {
700         gtk_container_remove(GTK_CONTAINER(mainwin->handlebox), 
701                              GTK_WIDGET(mainwin->toolbar->toolbar));
702
703         mainwin->toolbar->toolbar = NULL;
704         toolbar_create(mainwin, mainwin->handlebox);
705
706 }
707
708 void toolbar_set_compose_button(MainToolbar *toolbar, ComposeButtonType compose_btn_type)
709 {
710         if (toolbar->compose_btn_type != compose_btn_type)
711                 activate_compose_button(toolbar, 
712                                         prefs_common.toolbar_style,
713                                         compose_btn_type);
714 }
715
716 void toolbar_set_sensitive(MainWindow *mainwin)
717 {
718         SensitiveCond state;
719         gboolean sensitive;
720         MainToolbar *toolbar = mainwin->toolbar;
721         gint i = 0;
722         gint total = 0;
723
724         struct {
725                 GtkWidget *widget;
726                 SensitiveCond cond;
727                 gboolean empty;
728         } entry[11];
729
730 #define SET_WIDGET_COND(w, c)     \
731 {                              \
732          entry[total].widget = w; \
733         entry[total].cond   = c; \
734         total++;                       \
735 }
736
737         SET_WIDGET_COND(toolbar->get_btn, M_HAVE_ACCOUNT|M_UNLOCKED);
738         SET_WIDGET_COND(toolbar->getall_btn, M_HAVE_ACCOUNT|M_UNLOCKED);
739         SET_WIDGET_COND(toolbar->compose_news_btn, M_HAVE_ACCOUNT);
740         SET_WIDGET_COND(toolbar->reply_btn,
741                         M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST);
742         SET_WIDGET_COND(toolbar->replyall_btn,
743                         M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST);
744         SET_WIDGET_COND(toolbar->replysender_btn,
745                         M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST);
746         SET_WIDGET_COND(toolbar->fwd_btn, M_HAVE_ACCOUNT|M_TARGET_EXIST);
747
748         SET_WIDGET_COND(toolbar->next_btn, M_MSG_EXIST);
749         SET_WIDGET_COND(toolbar->delete_btn,
750                         M_TARGET_EXIST|M_ALLOW_DELETE|M_UNLOCKED);
751         SET_WIDGET_COND(toolbar->exec_btn, M_MSG_EXIST|M_EXEC|M_UNLOCKED);
752
753 #undef SET_WIDGET_COND
754
755         state = main_window_get_current_state(mainwin);
756
757         for (i = 0; i < total; i++) {
758                 
759                 if (entry[i].widget == NULL) continue;
760                 sensitive = ((entry[i].cond & state) == entry[i].cond);
761                 gtk_widget_set_sensitive(entry[i].widget, sensitive);
762         }
763
764         activate_compose_button(toolbar, 
765                         prefs_common.toolbar_style,
766                         toolbar->compose_btn_type);
767 }
768
769 void toolbar_popups_create(MainWindow *mainwin, GtkWidget *window)
770 {
771         guint n_menu_entries;
772         GtkWidget *reply_popup;
773         GtkWidget *replyall_popup;
774         GtkWidget *replysender_popup;
775         GtkWidget *fwd_popup;
776
777         if (mainwin->toolbar != NULL)
778                 g_free (mainwin->toolbar);
779
780         mainwin->toolbar = g_new0(MainToolbar, 1); 
781         
782         /* store mainwin localy */
783         mwin = mainwin;
784
785         n_menu_entries = sizeof(reply_popup_entries) /
786                         sizeof(reply_popup_entries[0]);
787         reply_popup = popupmenu_create(window, reply_popup_entries, n_menu_entries,
788                                       "<ReplyPopup>", mainwin);
789         gtk_signal_connect(GTK_OBJECT(reply_popup), "selection_done",
790                            GTK_SIGNAL_FUNC(toolbar_reply_popup_closed_cb), mainwin);
791         n_menu_entries = sizeof(replyall_popup_entries) /
792                         sizeof(replyall_popup_entries[0]);
793         replyall_popup = popupmenu_create(window, replyall_popup_entries, n_menu_entries,
794                                       "<ReplyAllPopup>", mainwin);
795         gtk_signal_connect(GTK_OBJECT(replyall_popup), "selection_done",
796                            GTK_SIGNAL_FUNC(toolbar_reply_to_all_popup_closed_cb), mainwin);
797         n_menu_entries = sizeof(replysender_popup_entries) /
798                         sizeof(replysender_popup_entries[0]);
799         replysender_popup = popupmenu_create(window, replysender_popup_entries, n_menu_entries,
800                                       "<ReplySenderPopup>", mainwin);
801         gtk_signal_connect(GTK_OBJECT(replysender_popup), "selection_done",
802                            GTK_SIGNAL_FUNC(toolbar_reply_to_sender_popup_closed_cb), mainwin);
803         /* create the popup menu for the forward button */
804         n_menu_entries = sizeof(fwd_popup_entries) /
805                         sizeof(fwd_popup_entries[0]);
806         fwd_popup = popupmenu_create(window, fwd_popup_entries, n_menu_entries,
807                                       "<ForwardPopup>", mainwin);
808         gtk_signal_connect(GTK_OBJECT(fwd_popup), "selection_done",
809                            GTK_SIGNAL_FUNC(toolbar_forward_popup_closed_cb), mainwin);
810
811         mainwin->toolbar->reply_popup       = reply_popup;
812         mainwin->toolbar->replyall_popup    = replyall_popup;
813         mainwin->toolbar->replysender_popup = replysender_popup;
814         mainwin->toolbar->fwd_popup         = fwd_popup;
815 }
816
817 void toolbar_destroy(MainWindow *mainwin)
818 {
819         ToolbarSylpheedActions *syl_action;
820
821         toolbar_clear_list();
822         
823         while (mainwin->toolbar->syl_action != NULL) {
824                 syl_action = (ToolbarSylpheedActions*)mainwin->toolbar->syl_action->data;
825
826                 if (syl_action->name)
827                         g_free (syl_action->name);
828                 mainwin->toolbar->syl_action = g_slist_remove(mainwin->toolbar->syl_action, syl_action);
829         }
830
831         g_slist_free (mainwin->toolbar->syl_action);
832 }
833
834 void toolbar_create(MainWindow *mainwin,
835                     GtkWidget *container)
836 {
837         ToolbarItem *toolbar_item;
838
839         GtkWidget *toolbar;
840         GtkWidget *icon_wid  = NULL;
841         GtkWidget *icon_news = NULL;
842         GtkWidget *item_news = NULL;
843         GtkWidget *item;
844         ToolbarSylpheedActions *syl_action;
845         GSList *cur;
846
847         toolbar_destroy(mainwin);
848         toolbar_read_config_file();
849
850         toolbar = gtk_toolbar_new(GTK_ORIENTATION_HORIZONTAL,
851                                   GTK_TOOLBAR_BOTH);
852         gtk_container_add(GTK_CONTAINER(container), toolbar);
853         gtk_container_set_border_width(GTK_CONTAINER(container), 2);
854         gtk_toolbar_set_button_relief(GTK_TOOLBAR(toolbar), GTK_RELIEF_NONE);
855         gtk_toolbar_set_space_style(GTK_TOOLBAR(toolbar),
856                                     GTK_TOOLBAR_SPACE_LINE);
857         
858         mainwin->toolbar->exec_btn = NULL;
859
860         for (cur = toolbar_list; cur != NULL; cur = cur->next) {
861                 toolbar_item  = (ToolbarItem*) cur->data;
862                 
863
864                 if (g_strcasecmp (toolbar_item->file, SEPARATOR) == 0) {
865                         gtk_toolbar_append_space (GTK_TOOLBAR (toolbar));
866                         continue;
867                 }
868
869                 icon_wid = stock_pixmap_widget(container, stock_pixmap_get_icon (toolbar_item->file));
870                 item  = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
871                                                 toolbar_item->text,
872                                                 toolbar_ret_descr_from_val (toolbar_item->action),
873                                                 (""),
874                                                 icon_wid, toolbar_actions_cb, 
875                                                 toolbar_item);
876                 
877                 switch (toolbar_item->action) {
878                 case A_RECEIVE_ALL:
879                         mainwin->toolbar->getall_btn = item;
880                         break;
881                 case A_RECEIVE_CUR:
882                         mainwin->toolbar->get_btn = item;
883                         break;
884                 case A_SEND_QUEUD:
885                         mainwin->toolbar->send_btn = item; 
886                         break;
887                 case A_COMPOSE_EMAIL:
888                         icon_news = stock_pixmap_widget(container, STOCK_PIXMAP_NEWS_COMPOSE);
889                         item_news = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
890                                                             _("News"),
891                                                             toolbar_ret_descr_from_val (A_COMPOSE_NEWS),
892                                                             (""),
893                                                             icon_news, toolbar_actions_cb, 
894                                                             toolbar_item);
895                         mainwin->toolbar->compose_mail_btn = item; 
896                         mainwin->toolbar->compose_news_btn = item_news;
897                         break;
898                 case A_REPLY_MESSAGE:
899                         mainwin->toolbar->reply_btn = item;
900                         gtk_signal_connect(GTK_OBJECT(mainwin->toolbar->reply_btn), 
901                                            "button_press_event",
902                                            GTK_SIGNAL_FUNC(toolbar_reply_popup_cb),
903                                            mainwin);
904                         break;
905                 case A_REPLY_SENDER:
906                         mainwin->toolbar->replysender_btn = item;
907                         gtk_signal_connect(GTK_OBJECT(mainwin->toolbar->replysender_btn), 
908                                            "button_press_event",
909                                            GTK_SIGNAL_FUNC(toolbar_reply_to_sender_popup_cb),
910                                            mainwin);
911                         break;
912                 case A_REPLY_ALL:
913                         mainwin->toolbar->replyall_btn = item;
914                         gtk_signal_connect(GTK_OBJECT(mainwin->toolbar->replyall_btn), 
915                                            "button_press_event",
916                                            GTK_SIGNAL_FUNC(toolbar_reply_to_all_popup_cb),
917                                            mainwin);
918                         break;
919                 case A_FORWARD:
920                         mainwin->toolbar->fwd_btn = item;
921                         gtk_signal_connect(GTK_OBJECT(mainwin->toolbar->fwd_btn), 
922                                            "button_press_event",
923                                            GTK_SIGNAL_FUNC(toolbar_forward_popup_cb),
924                                            mainwin);
925                         break;
926                 case A_DELETE:
927                         mainwin->toolbar->delete_btn = item;
928                         break;
929                 case A_EXECUTE:
930                         mainwin->toolbar->exec_btn = item;
931                         break;
932                 case A_GOTO_NEXT:
933                         mainwin->toolbar->next_btn = item;
934                         break;
935                 case A_SYL_ACTIONS:
936                         syl_action = g_new0(ToolbarSylpheedActions, 1);
937                         syl_action->widget = item;
938                         syl_action->name   = g_strdup(toolbar_item->text);
939
940                         mainwin->toolbar->syl_action = g_slist_append(mainwin->toolbar->syl_action,
941                                                                       syl_action);
942                         gtk_widget_show (item);
943                         break;
944                 default:
945                         break;
946                 }
947         }
948
949         /* we always create an exec button, if there isn't one yet */
950         if (!mainwin->toolbar->exec_btn) {
951                 toolbar_item = g_new0(ToolbarItem, 1);
952                 toolbar_item->action = A_EXECUTE;
953                 toolbar_item->file   = stock_pixmap_get_name (STOCK_PIXMAP_EXEC);
954                 toolbar_item->text   = toolbar_ret_text_from_val(A_EXECUTE);
955
956                 icon_wid = stock_pixmap_widget(container, STOCK_PIXMAP_EXEC);
957                 item = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
958                                                _("Execute"),
959                                                toolbar_ret_descr_from_val (A_EXECUTE),
960                                                (""),
961                                                icon_wid, toolbar_actions_cb,
962                                                toolbar_item);
963                 mainwin->toolbar->exec_btn = item;
964                 g_free (toolbar_item);
965         }
966         
967         mainwin->toolbar->toolbar = toolbar;
968         
969         activate_compose_button(mainwin->toolbar, 
970                                 prefs_common.toolbar_style, 
971                                 mainwin->toolbar->compose_btn_type);
972
973         gtk_widget_show_all(toolbar);
974 }