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