save crash log button works; some other minor tweaks
[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_cb          (GtkWidget      *widget,
85                                          gpointer        data);
86
87 static void toolbar_reply_cb            (GtkWidget      *widget,
88                                          gpointer        data);
89
90 static void toolbar_reply_to_all_cb     (GtkWidget      *widget,
91                                          gpointer        data);
92
93 static void toolbar_reply_to_sender_cb  (GtkWidget      *widget,
94                                          gpointer        data);
95
96 static void toolbar_forward_cb          (GtkWidget      *widget,
97                                          gpointer        data);
98
99 static void toolbar_delete_cb           (GtkWidget      *widget,
100                                          gpointer        data);
101
102 static void toolbar_exec_cb             (GtkWidget      *widget,
103                                          gpointer        data);
104
105 static void toolbar_next_unread_cb      (GtkWidget      *widget,
106                                          gpointer        data);
107
108 static void toolbar_actions_execute_cb  (GtkWidget      *widget,
109                                          gpointer        data);
110
111 static void toolbar_reply_popup_cb      (GtkWidget      *widget,
112                                          GdkEventButton *event,
113                                          gpointer        data);
114 static void toolbar_reply_popup_closed_cb(GtkMenuShell  *menu_shell,
115                                          gpointer        data);
116
117 static void toolbar_reply_to_all_popup_cb(GtkWidget     *widget,
118                                          GdkEventButton *event,
119                                          gpointer        data);
120
121 static void toolbar_reply_to_all_popup_closed_cb
122                                         (GtkMenuShell   *menu_shell,
123                                          gpointer        data);
124
125 static void toolbar_reply_to_sender_popup_cb(GtkWidget  *widget,
126                                          GdkEventButton *event,
127                                          gpointer        data);
128 static void toolbar_reply_to_sender_popup_closed_cb
129                                         (GtkMenuShell   *menu_shell,
130                                          gpointer        data);
131
132 static void toolbar_forward_popup_cb     (GtkWidget      *widget,
133                                          GdkEventButton    *event,
134                                          gpointer        data);
135
136 static void toolbar_forward_popup_closed_cb             
137                                         (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_QUEUED",   N_("Send Queued Message(s)"),          toolbar_send_cb           },
145         { "A_COMPOSE_EMAIL", N_("Compose Email"),                   toolbar_compose_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_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_QUEUED,   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_CLOSE,                _("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_cb  (GtkWidget      *widget,
505                                  gpointer        data)
506 {
507         MainWindow *mainwin = (MainWindow *)data;
508
509         if (mainwin->toolbar->compose_btn_type == COMPOSEBUTTON_NEWS) 
510                 compose_news_cb(mainwin, 0, NULL);
511         else
512                 compose_mail_cb(mainwin, 0, NULL);
513 }
514
515 static void toolbar_reply_cb(GtkWidget *widget, gpointer data)
516 {
517         MainWindow *mainwin = (MainWindow *)data;
518
519         reply_cb(mainwin, 
520                  prefs_common.reply_with_quote ? COMPOSE_REPLY_WITH_QUOTE 
521                  : COMPOSE_REPLY_WITHOUT_QUOTE,
522                  NULL);
523 }
524
525 static void toolbar_reply_to_all_cb(GtkWidget *widget, gpointer data)
526 {
527         MainWindow *mainwin = (MainWindow *)data;
528
529         reply_cb(mainwin, 
530                  prefs_common.reply_with_quote ? COMPOSE_REPLY_TO_ALL_WITH_QUOTE 
531                  : COMPOSE_REPLY_TO_ALL_WITHOUT_QUOTE, 
532                  NULL);
533 }
534
535
536 static void toolbar_reply_to_sender_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_SENDER_WITH_QUOTE 
542                  : COMPOSE_REPLY_TO_SENDER_WITHOUT_QUOTE, 
543                  NULL);
544 }
545
546 static void toolbar_forward_cb  (GtkWidget      *widget,
547                                  gpointer        data)
548 {
549         MainWindow *mainwin = (MainWindow *)data;
550
551         if (prefs_common.forward_as_attachment)
552                 reply_cb(mainwin, COMPOSE_FORWARD_AS_ATTACH, NULL);
553         else
554                 reply_cb(mainwin, COMPOSE_FORWARD, NULL);
555 }
556
557 static void toolbar_delete_cb   (GtkWidget      *widget,
558                                  gpointer        data)
559 {
560         MainWindow *mainwin = (MainWindow *)data;
561
562         summary_delete(mainwin->summaryview);
563 }
564
565 static void toolbar_exec_cb     (GtkWidget      *widget,
566                                  gpointer        data)
567 {
568         MainWindow *mainwin = (MainWindow *)data;
569
570         summary_execute(mainwin->summaryview);
571 }
572
573 static void toolbar_next_unread_cb      (GtkWidget      *widget,
574                                          gpointer        data)
575 {
576         MainWindow *mainwin = (MainWindow *)data;
577
578         next_unread_cb(mainwin, 0, NULL);
579 }
580
581 /* popup callback functions */
582 static void toolbar_reply_popup_cb(GtkWidget *widget, GdkEventButton *event, gpointer data)
583 {
584         MainWindow *mainwindow = (MainWindow *) data;
585         
586         if (!event) return;
587
588         if (event->button == 3) {
589                 gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
590                 gtk_menu_popup(GTK_MENU(mainwindow->toolbar->reply_popup), NULL, NULL,
591                        menu_button_position, widget,
592                        event->button, event->time);
593         }
594 }
595
596 static void toolbar_reply_popup_closed_cb(GtkMenuShell *menu_shell, gpointer data)
597 {
598         MainWindow *mainwin = (MainWindow *)data;
599
600         gtk_button_set_relief(GTK_BUTTON(mainwin->toolbar->reply_btn), GTK_RELIEF_NONE);
601         manage_window_focus_in(mainwin->window, NULL, NULL);
602 }
603
604 static void toolbar_reply_to_all_popup_cb(GtkWidget *widget, GdkEventButton *event, gpointer data)
605 {
606         MainWindow *mainwindow = (MainWindow *) data;
607         
608         if (!event) return;
609
610         if (event->button == 3) {
611                 gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
612                 gtk_menu_popup(GTK_MENU(mainwindow->toolbar->replyall_popup), NULL, NULL,
613                        menu_button_position, widget,
614                        event->button, event->time);
615         }
616 }
617
618 static void toolbar_reply_to_all_popup_closed_cb(GtkMenuShell *menu_shell, gpointer data)
619 {
620         MainWindow *mainwin = (MainWindow *)data;
621
622         gtk_button_set_relief(GTK_BUTTON(mainwin->toolbar->replyall_btn), GTK_RELIEF_NONE);
623         manage_window_focus_in(mainwin->window, NULL, NULL);
624 }
625
626 static void toolbar_reply_to_sender_popup_cb(GtkWidget *widget, GdkEventButton *event, gpointer data)
627 {
628         MainWindow *mainwindow = (MainWindow *) data;
629
630         if (!event) return;
631
632         if (event->button == 3) {
633                 gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
634                 gtk_menu_popup(GTK_MENU(mainwindow->toolbar->replysender_popup), NULL, NULL,
635                        menu_button_position, widget,
636                        event->button, event->time);
637         }
638 }
639
640 static void toolbar_reply_to_sender_popup_closed_cb(GtkMenuShell *menu_shell, gpointer data)
641 {
642         MainWindow *mainwin = (MainWindow *)data;
643
644         gtk_button_set_relief(GTK_BUTTON(mainwin->toolbar->replysender_btn), GTK_RELIEF_NONE);
645         manage_window_focus_in(mainwin->window, NULL, NULL);
646 }
647
648 static void toolbar_forward_popup_cb(GtkWidget *widget, GdkEventButton *event, gpointer data)
649 {
650         MainWindow *mainwindow = (MainWindow *) data;
651         
652         if (!event) return;
653
654         if (event->button == 3) {
655                 gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
656                 gtk_menu_popup(GTK_MENU(mainwindow->toolbar->fwd_popup), NULL, NULL,
657                        menu_button_position, widget,
658                        event->button, event->time);
659         }
660 }
661
662 static void toolbar_forward_popup_closed_cb(GtkMenuShell *menu_shell, gpointer data)
663 {
664         MainWindow *mainwin = (MainWindow *)data;
665
666         gtk_button_set_relief(GTK_BUTTON(mainwin->toolbar->fwd_btn), GTK_RELIEF_NONE);
667         manage_window_focus_in(mainwin->window, NULL, NULL);
668 }
669
670 static void activate_compose_button (MainToolbar *toolbar,
671                                 ToolbarStyle style,
672                                 ComposeButtonType type)
673 {
674         if ((!toolbar->compose_mail_btn) || (!toolbar->compose_news_btn))
675                 return;
676
677         gtk_widget_hide(type == COMPOSEBUTTON_NEWS ? toolbar->compose_mail_btn 
678                         : toolbar->compose_news_btn);
679         gtk_widget_show(type == COMPOSEBUTTON_NEWS ? toolbar->compose_news_btn
680                         : toolbar->compose_mail_btn);
681         toolbar->compose_btn_type = type;       
682 }
683
684 void toolbar_reflect_prefs_pixmap_theme(MainWindow *mainwin)
685 {
686         gtk_container_remove(GTK_CONTAINER(mainwin->handlebox), 
687                              GTK_WIDGET(mainwin->toolbar->toolbar));
688
689         mainwin->toolbar->toolbar = NULL;
690         toolbar_create(mainwin, mainwin->handlebox);
691
692 }
693
694 void toolbar_set_compose_button(MainToolbar *toolbar, ComposeButtonType compose_btn_type)
695 {
696         if (toolbar->compose_btn_type != compose_btn_type)
697                 activate_compose_button(toolbar, 
698                                         prefs_common.toolbar_style,
699                                         compose_btn_type);
700 }
701
702 void toolbar_set_sensitive(MainWindow *mainwin)
703 {
704         SensitiveCond state;
705         gboolean sensitive;
706         MainToolbar *toolbar = mainwin->toolbar;
707         gint i = 0;
708         gint total = 0;
709
710         struct {
711                 GtkWidget *widget;
712                 SensitiveCond cond;
713                 gboolean empty;
714         } entry[11];
715
716 #define SET_WIDGET_COND(w, c)     \
717 {                              \
718          entry[total].widget = w; \
719         entry[total].cond   = c; \
720         total++;                       \
721 }
722
723         SET_WIDGET_COND(toolbar->get_btn, M_HAVE_ACCOUNT|M_UNLOCKED);
724         SET_WIDGET_COND(toolbar->getall_btn, M_HAVE_ACCOUNT|M_UNLOCKED);
725         SET_WIDGET_COND(toolbar->compose_news_btn, M_HAVE_ACCOUNT);
726         SET_WIDGET_COND(toolbar->reply_btn,
727                         M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST);
728         SET_WIDGET_COND(toolbar->replyall_btn,
729                         M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST);
730         SET_WIDGET_COND(toolbar->replysender_btn,
731                         M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST);
732         SET_WIDGET_COND(toolbar->fwd_btn, M_HAVE_ACCOUNT|M_TARGET_EXIST);
733
734         SET_WIDGET_COND(toolbar->next_btn, M_MSG_EXIST);
735         SET_WIDGET_COND(toolbar->delete_btn,
736                         M_TARGET_EXIST|M_ALLOW_DELETE|M_UNLOCKED);
737         SET_WIDGET_COND(toolbar->exec_btn, M_MSG_EXIST|M_EXEC|M_UNLOCKED);
738
739 #undef SET_WIDGET_COND
740
741         state = main_window_get_current_state(mainwin);
742
743         for (i = 0; i < total; i++) {
744                 
745                 if (entry[i].widget == NULL) continue;
746                 sensitive = ((entry[i].cond & state) == entry[i].cond);
747                 gtk_widget_set_sensitive(entry[i].widget, sensitive);
748         }
749
750         activate_compose_button(toolbar, 
751                         prefs_common.toolbar_style,
752                         toolbar->compose_btn_type);
753 }
754
755 void toolbar_popups_create(MainWindow *mainwin, GtkWidget *window)
756 {
757         guint n_menu_entries;
758         GtkWidget *reply_popup;
759         GtkWidget *replyall_popup;
760         GtkWidget *replysender_popup;
761         GtkWidget *fwd_popup;
762
763         if (mainwin->toolbar != NULL)
764                 g_free (mainwin->toolbar);
765
766         mainwin->toolbar = g_new0(MainToolbar, 1); 
767         
768         /* store mainwin localy */
769         mwin = mainwin;
770
771         n_menu_entries = sizeof(reply_popup_entries) /
772                         sizeof(reply_popup_entries[0]);
773         reply_popup = popupmenu_create(window, reply_popup_entries, n_menu_entries,
774                                       "<ReplyPopup>", mainwin);
775         gtk_signal_connect(GTK_OBJECT(reply_popup), "selection_done",
776                            GTK_SIGNAL_FUNC(toolbar_reply_popup_closed_cb), mainwin);
777         n_menu_entries = sizeof(replyall_popup_entries) /
778                         sizeof(replyall_popup_entries[0]);
779         replyall_popup = popupmenu_create(window, replyall_popup_entries, n_menu_entries,
780                                       "<ReplyAllPopup>", mainwin);
781         gtk_signal_connect(GTK_OBJECT(replyall_popup), "selection_done",
782                            GTK_SIGNAL_FUNC(toolbar_reply_to_all_popup_closed_cb), mainwin);
783         n_menu_entries = sizeof(replysender_popup_entries) /
784                         sizeof(replysender_popup_entries[0]);
785         replysender_popup = popupmenu_create(window, replysender_popup_entries, n_menu_entries,
786                                       "<ReplySenderPopup>", mainwin);
787         gtk_signal_connect(GTK_OBJECT(replysender_popup), "selection_done",
788                            GTK_SIGNAL_FUNC(toolbar_reply_to_sender_popup_closed_cb), mainwin);
789         /* create the popup menu for the forward button */
790         n_menu_entries = sizeof(fwd_popup_entries) /
791                         sizeof(fwd_popup_entries[0]);
792         fwd_popup = popupmenu_create(window, fwd_popup_entries, n_menu_entries,
793                                       "<ForwardPopup>", mainwin);
794         gtk_signal_connect(GTK_OBJECT(fwd_popup), "selection_done",
795                            GTK_SIGNAL_FUNC(toolbar_forward_popup_closed_cb), mainwin);
796
797         mainwin->toolbar->reply_popup       = reply_popup;
798         mainwin->toolbar->replyall_popup    = replyall_popup;
799         mainwin->toolbar->replysender_popup = replysender_popup;
800         mainwin->toolbar->fwd_popup         = fwd_popup;
801 }
802
803 void toolbar_destroy(MainWindow *mainwin)
804 {
805         ToolbarSylpheedActions *syl_action;
806
807         toolbar_clear_list();
808         
809         while (mainwin->toolbar->syl_action != NULL) {
810                 syl_action = (ToolbarSylpheedActions*)mainwin->toolbar->syl_action->data;
811
812                 if (syl_action->name)
813                         g_free (syl_action->name);
814                 mainwin->toolbar->syl_action = g_slist_remove(mainwin->toolbar->syl_action, syl_action);
815         }
816
817         g_slist_free (mainwin->toolbar->syl_action);
818 }
819
820 void toolbar_create(MainWindow *mainwin,
821                     GtkWidget *container)
822 {
823         ToolbarItem *toolbar_item;
824
825         GtkWidget *toolbar;
826         GtkWidget *icon_wid  = NULL;
827         GtkWidget *icon_news = NULL;
828         GtkWidget *item_news = NULL;
829         GtkWidget *item;
830         ToolbarSylpheedActions *syl_action;
831         GSList *cur;
832
833         toolbar_destroy(mainwin);
834         toolbar_read_config_file();
835
836         toolbar = gtk_toolbar_new(GTK_ORIENTATION_HORIZONTAL,
837                                   GTK_TOOLBAR_BOTH);
838         gtk_container_add(GTK_CONTAINER(container), toolbar);
839         gtk_container_set_border_width(GTK_CONTAINER(container), 2);
840         gtk_toolbar_set_button_relief(GTK_TOOLBAR(toolbar), GTK_RELIEF_NONE);
841         gtk_toolbar_set_space_style(GTK_TOOLBAR(toolbar),
842                                     GTK_TOOLBAR_SPACE_LINE);
843         
844         mainwin->toolbar->exec_btn = NULL;
845
846         for (cur = toolbar_list; cur != NULL; cur = cur->next) {
847                 toolbar_item  = (ToolbarItem*) cur->data;
848                 
849
850                 if (g_strcasecmp (toolbar_item->file, SEPARATOR) == 0) {
851                         gtk_toolbar_append_space (GTK_TOOLBAR (toolbar));
852                         continue;
853                 }
854
855                 icon_wid = stock_pixmap_widget(container, stock_pixmap_get_icon (toolbar_item->file));
856                 item  = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
857                                                 toolbar_item->text,
858                                                 toolbar_ret_descr_from_val (toolbar_item->action),
859                                                 (""),
860                                                 icon_wid, toolbar_actions_cb, 
861                                                 toolbar_item);
862                 
863                 switch (toolbar_item->action) {
864                 case A_RECEIVE_ALL:
865                         mainwin->toolbar->getall_btn = item;
866                         break;
867                 case A_RECEIVE_CUR:
868                         mainwin->toolbar->get_btn = item;
869                         break;
870                 case A_SEND_QUEUED:
871                         mainwin->toolbar->send_btn = item; 
872                         break;
873                 case A_COMPOSE_EMAIL:
874                         icon_news = stock_pixmap_widget(container, STOCK_PIXMAP_NEWS_COMPOSE);
875                         item_news = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
876                                                             _("News"),
877                                                             toolbar_ret_descr_from_val (A_COMPOSE_NEWS),
878                                                             (""),
879                                                             icon_news, toolbar_actions_cb, 
880                                                             toolbar_item);
881                         mainwin->toolbar->compose_mail_btn = item; 
882                         mainwin->toolbar->compose_news_btn = item_news;
883                         break;
884                 case A_REPLY_MESSAGE:
885                         mainwin->toolbar->reply_btn = item;
886                         gtk_signal_connect(GTK_OBJECT(mainwin->toolbar->reply_btn), 
887                                            "button_press_event",
888                                            GTK_SIGNAL_FUNC(toolbar_reply_popup_cb),
889                                            mainwin);
890                         break;
891                 case A_REPLY_SENDER:
892                         mainwin->toolbar->replysender_btn = item;
893                         gtk_signal_connect(GTK_OBJECT(mainwin->toolbar->replysender_btn), 
894                                            "button_press_event",
895                                            GTK_SIGNAL_FUNC(toolbar_reply_to_sender_popup_cb),
896                                            mainwin);
897                         break;
898                 case A_REPLY_ALL:
899                         mainwin->toolbar->replyall_btn = item;
900                         gtk_signal_connect(GTK_OBJECT(mainwin->toolbar->replyall_btn), 
901                                            "button_press_event",
902                                            GTK_SIGNAL_FUNC(toolbar_reply_to_all_popup_cb),
903                                            mainwin);
904                         break;
905                 case A_FORWARD:
906                         mainwin->toolbar->fwd_btn = item;
907                         gtk_signal_connect(GTK_OBJECT(mainwin->toolbar->fwd_btn), 
908                                            "button_press_event",
909                                            GTK_SIGNAL_FUNC(toolbar_forward_popup_cb),
910                                            mainwin);
911                         break;
912                 case A_DELETE:
913                         mainwin->toolbar->delete_btn = item;
914                         break;
915                 case A_EXECUTE:
916                         mainwin->toolbar->exec_btn = item;
917                         break;
918                 case A_GOTO_NEXT:
919                         mainwin->toolbar->next_btn = item;
920                         break;
921                 case A_SYL_ACTIONS:
922                         syl_action = g_new0(ToolbarSylpheedActions, 1);
923                         syl_action->widget = item;
924                         syl_action->name   = g_strdup(toolbar_item->text);
925
926                         mainwin->toolbar->syl_action = g_slist_append(mainwin->toolbar->syl_action,
927                                                                       syl_action);
928                         gtk_widget_show (item);
929                         break;
930                 default:
931                         break;
932                 }
933         }
934
935         /* we always create an exec button, if there isn't one yet */
936         if (!mainwin->toolbar->exec_btn) {
937                 toolbar_item = g_new0(ToolbarItem, 1);
938                 toolbar_item->action = A_EXECUTE;
939                 toolbar_item->file   = stock_pixmap_get_name (STOCK_PIXMAP_EXEC);
940                 toolbar_item->text   = toolbar_ret_text_from_val(A_EXECUTE);
941
942                 icon_wid = stock_pixmap_widget(container, STOCK_PIXMAP_EXEC);
943                 item = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
944                                                _("Execute"),
945                                                toolbar_ret_descr_from_val (A_EXECUTE),
946                                                (""),
947                                                icon_wid, toolbar_actions_cb,
948                                                toolbar_item);
949                 mainwin->toolbar->exec_btn = item;
950                 g_free (toolbar_item);
951         }
952         
953         mainwin->toolbar->toolbar = toolbar;
954         
955         activate_compose_button(mainwin->toolbar, 
956                                 prefs_common.toolbar_style, 
957                                 mainwin->toolbar->compose_btn_type);
958
959         gtk_widget_show_all(toolbar);
960 }