60bd2c466fc2120ec27193d4e63d9f4e5a6ba453
[claws.git] / src / mainwindow.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-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 #include "defs.h"
21
22 #include <glib.h>
23 #include <gtk/gtkmain.h>
24 #include <gtk/gtkwindow.h>
25 #include <gtk/gtkwidget.h>
26 #include <gtk/gtksignal.h>
27 #include <gtk/gtkvbox.h>
28 #include <gtk/gtkcontainer.h>
29 #include <gtk/gtkstatusbar.h>
30 #include <gtk/gtkprogressbar.h>
31 #include <gtk/gtkhpaned.h>
32 #include <gtk/gtkvpaned.h>
33 #include <gtk/gtkcheckmenuitem.h>
34 #include <gtk/gtkitemfactory.h>
35 #include <gtk/gtkeditable.h>
36 #include <gtk/gtkmenu.h>
37 #include <gtk/gtkmenuitem.h>
38 #include <gtk/gtkhandlebox.h>
39 #include <gtk/gtktoolbar.h>
40 #include <gtk/gtkbutton.h>
41 #include <string.h>
42
43 #include "intl.h"
44 #include "main.h"
45 #include "mainwindow.h"
46 #include "folderview.h"
47 #include "foldersel.h"
48 #include "summaryview.h"
49 #include "summary_search.h"
50 #include "messageview.h"
51 #include "message_search.h"
52 #include "headerview.h"
53 #include "menu.h"
54 #include "folder.h"
55 #include "inc.h"
56 #include "compose.h"
57 #include "procmsg.h"
58 #include "import.h"
59 #include "export.h"
60 #include "prefs_common.h"
61 #include "prefs_filter.h"
62 #include "prefs_filtering.h"
63 #include "prefs_scoring.h"
64 #include "prefs_account.h"
65 #include "prefs_folder_item.h"
66 #include "account.h"
67 #include "addressbook.h"
68 #include "headerwindow.h"
69 #include "logwindow.h"
70 #include "manage_window.h"
71 #include "alertpanel.h"
72 #include "statusbar.h"
73 #include "inputdialog.h"
74 #include "utils.h"
75 #include "gtkutils.h"
76 #include "codeconv.h"
77 #include "about.h"
78 #include "manual.h"
79 #include "prefs_templates.h"
80 #include "version.h"
81
82 #define AC_LABEL_WIDTH  240
83
84 #define STATUSBAR_PUSH(mainwin, str) \
85 { \
86         gtk_statusbar_push(GTK_STATUSBAR(mainwin->statusbar), \
87                            mainwin->mainwin_cid, str); \
88         gtkut_widget_wait_for_draw(mainwin->hbox_stat); \
89 }
90
91 #define STATUSBAR_POP(mainwin) \
92 { \
93         gtk_statusbar_pop(GTK_STATUSBAR(mainwin->statusbar), \
94                           mainwin->mainwin_cid); \
95 }
96
97 /* list of all instantiated MainWindow */
98 static GList *mainwin_list = NULL;
99
100 static GdkCursor *watch_cursor;
101
102 static void main_window_show_cur_account        (MainWindow     *mainwin);
103
104 static void main_window_set_widgets             (MainWindow     *mainwin,
105                                                  SeparateType    type);
106 static void main_window_toolbar_create          (MainWindow     *mainwin,
107                                                  GtkWidget      *container);
108
109 /* callback functions */
110 static void toolbar_inc_cb              (GtkWidget      *widget,
111                                          gpointer        data);
112 static void toolbar_inc_all_cb          (GtkWidget      *widget,
113                                          gpointer        data);
114 static void toolbar_send_cb             (GtkWidget      *widget,
115                                          gpointer        data);
116
117 static void toolbar_compose_cb          (GtkWidget      *widget,
118                                          gpointer        data);
119 static void toolbar_popup_compose_type_cb(GtkWidget     *widget,
120                                          gpointer        data);
121 static void toolbar_popup_compose_type_set(GtkWidget    *widget,
122                                          gpointer        data);
123 static void toolbar_compose_news_cb             (GtkWidget      *widget,
124                                          gpointer        data);
125 static void toolbar_compose_mail_cb             (GtkWidget      *widget,
126                                          gpointer        data);
127 static void toolbar_reply_cb            (GtkWidget      *widget,
128                                          gpointer        data);
129 static void toolbar_reply_to_all_cb     (GtkWidget      *widget,
130                                          gpointer        data);
131 static void toolbar_reply_to_sender_cb  (GtkWidget      *widget,
132                                          gpointer        data);
133 static void toolbar_forward_cb          (GtkWidget      *widget,
134                                          gpointer        data);
135
136 static void toolbar_delete_cb           (GtkWidget      *widget,
137                                          gpointer        data);
138 static void toolbar_exec_cb             (GtkWidget      *widget,
139                                          gpointer        data);
140
141 static void toolbar_next_unread_cb      (GtkWidget      *widget,
142                                          gpointer        data);
143
144 static void toolbar_prefs_cb            (GtkWidget      *widget,
145                                          gpointer        data);
146 static void toolbar_account_cb          (GtkWidget      *widget,
147                                          gpointer        data);
148
149 static void toolbar_account_button_pressed      (GtkWidget      *widget,
150                                                  GdkEventButton *event,
151                                                  gpointer        data);
152 static void ac_label_button_pressed             (GtkWidget      *widget,
153                                                  GdkEventButton *event,
154                                                  gpointer        data);
155 static void ac_menu_popup_closed                (GtkMenuShell   *menu_shell,
156                                                  gpointer        data);
157
158 static gint main_window_close_cb (GtkWidget     *widget,
159                                   GdkEventAny   *event,
160                                   gpointer       data);
161
162 static void add_mailbox_cb       (MainWindow    *mainwin,
163                                   guint          action,
164                                   GtkWidget     *widget);
165 static void add_mbox_cb          (MainWindow    *mainwin,
166                                   guint          action,
167                                   GtkWidget     *widget);
168 static void update_folderview_cb (MainWindow    *mainwin,
169                                   guint          action,
170                                   GtkWidget     *widget);
171 static void new_folder_cb        (MainWindow    *mainwin,
172                                   guint          action,
173                                   GtkWidget     *widget);
174 static void rename_folder_cb     (MainWindow    *mainwin,
175                                   guint          action,
176                                   GtkWidget     *widget);
177 static void delete_folder_cb     (MainWindow    *mainwin,
178                                   guint          action,
179                                   GtkWidget     *widget);
180 static void import_mbox_cb       (MainWindow    *mainwin,
181                                   guint          action,
182                                   GtkWidget     *widget);
183 static void export_mbox_cb       (MainWindow    *mainwin,
184                                   guint          action,
185                                   GtkWidget     *widget);
186 static void empty_trash_cb       (MainWindow    *mainwin,
187                                   guint          action,
188                                   GtkWidget     *widget);
189
190 static void save_as_cb           (MainWindow    *mainwin,
191                                   guint          action,
192                                   GtkWidget     *widget);
193 static void print_cb             (MainWindow    *mainwin,
194                                   guint          action,
195                                   GtkWidget     *widget);
196 static void app_exit_cb          (MainWindow    *mainwin,
197                                   guint          action,
198                                   GtkWidget     *widget);
199
200 static void search_cb            (MainWindow    *mainwin,
201                                   guint          action,
202                                   GtkWidget     *widget);
203
204 static void toggle_folder_cb     (MainWindow    *mainwin,
205                                   guint          action,
206                                   GtkWidget     *widget);
207 static void toggle_message_cb    (MainWindow    *mainwin,
208                                   guint          action,
209                                   GtkWidget     *widget);
210 static void toggle_toolbar_cb    (MainWindow    *mainwin,
211                                   guint          action,
212                                   GtkWidget     *widget);
213 static void toggle_statusbar_cb  (MainWindow    *mainwin,
214                                   guint          action,
215                                   GtkWidget     *widget);
216 static void separate_widget_cb  (GtkCheckMenuItem *checkitem,
217                                  guint action,
218                                  GtkWidget *widget);
219
220 static void addressbook_open_cb (MainWindow     *mainwin,
221                                  guint           action,
222                                  GtkWidget      *widget);
223 static void log_window_show_cb  (MainWindow     *mainwin,
224                                  guint           action,
225                                  GtkWidget      *widget);
226
227 static void inc_mail_cb                 (MainWindow     *mainwin,
228                                          guint           action,
229                                          GtkWidget      *widget);
230 static void inc_all_account_mail_cb     (MainWindow     *mainwin,
231                                          guint           action,
232                                          GtkWidget      *widget);
233
234 static void send_queue_cb               (MainWindow     *mainwin,
235                                          guint           action,
236                                          GtkWidget      *widget);
237
238 static void compose_cb                  (MainWindow     *mainwin,
239                                          guint           action,
240                                          GtkWidget      *widget);
241 static void compose_mail_cb(MainWindow *mainwin, guint action,
242                             GtkWidget *widget);
243 static void compose_news_cb(MainWindow *mainwin, guint action,
244                             GtkWidget *widget);
245 static void reply_cb                    (MainWindow     *mainwin,
246                                          guint           action,
247                                          GtkWidget      *widget);
248
249 static void open_msg_cb                 (MainWindow     *mainwin,
250                                          guint           action,
251                                          GtkWidget      *widget);
252
253 static void view_source_cb              (MainWindow     *mainwin,
254                                          guint           action,
255                                          GtkWidget      *widget);
256
257 static void reedit_cb                   (MainWindow     *mainwin,
258                                          guint           action,
259                                          GtkWidget      *widget);
260
261 static void move_to_cb                  (MainWindow     *mainwin,
262                                          guint           action,
263                                          GtkWidget      *widget);
264 static void copy_to_cb                  (MainWindow     *mainwin,
265                                          guint           action,
266                                          GtkWidget      *widget);
267 static void delete_cb                   (MainWindow     *mainwin,
268                                          guint           action,
269                                          GtkWidget      *widget);
270
271 static void mark_cb                     (MainWindow     *mainwin,
272                                          guint           action,
273                                          GtkWidget      *widget);
274 static void unmark_cb                   (MainWindow     *mainwin,
275                                          guint           action,
276                                          GtkWidget      *widget);
277
278 static void mark_as_unread_cb           (MainWindow     *mainwin,
279                                          guint           action,
280                                          GtkWidget      *widget);
281 static void mark_as_read_cb             (MainWindow     *mainwin,
282                                          guint           action,
283                                          GtkWidget      *widget);
284 static void mark_all_read_cb            (MainWindow     *mainwin,
285                                          guint           action,
286                                          GtkWidget      *widget);
287 static void add_address_cb              (MainWindow     *mainwin,
288                                          guint           action,
289                                          GtkWidget      *widget);
290
291 static void set_charset_cb              (MainWindow     *mainwin,
292                                          guint           action,
293                                          GtkWidget      *widget);
294
295 static void thread_cb            (MainWindow    *mainwin,
296                                   guint          action,
297                                   GtkWidget     *widget);
298 static void set_display_item_cb  (MainWindow    *mainwin,
299                                   guint          action,
300                                   GtkWidget     *widget);
301 static void sort_summary_cb      (MainWindow    *mainwin,
302                                   guint          action,
303                                   GtkWidget     *widget);
304 static void attract_by_subject_cb(MainWindow    *mainwin,
305                                   guint          action,
306                                   GtkWidget     *widget);
307
308 static void delete_duplicated_cb (MainWindow    *mainwin,
309                                   guint          action,
310                                   GtkWidget     *widget);
311 static void filter_cb            (MainWindow    *mainwin,
312                                   guint          action,
313                                   GtkWidget     *widget);
314 static void execute_summary_cb   (MainWindow    *mainwin,
315                                   guint          action,
316                                   GtkWidget     *widget);
317 static void update_summary_cb    (MainWindow    *mainwin,
318                                   guint          action,
319                                   GtkWidget     *widget);
320
321 static void prev_cb              (MainWindow    *mainwin,
322                                   guint          action,
323                                   GtkWidget     *widget);
324 static void next_cb              (MainWindow    *mainwin,
325                                   guint          action,
326                                   GtkWidget     *widget);
327
328 static void prev_unread_cb       (MainWindow    *mainwin,
329                                   guint          action,
330                                   GtkWidget     *widget);
331 static void next_unread_cb       (MainWindow    *mainwin,
332                                   guint          action,
333                                   GtkWidget     *widget);
334 static void prev_marked_cb       (MainWindow    *mainwin,
335                                   guint          action,
336                                   GtkWidget     *widget);
337 static void next_marked_cb       (MainWindow    *mainwin,
338                                   guint          action,
339                                   GtkWidget     *widget);
340 static void prev_labeled_cb      (MainWindow    *mainwin,
341                                   guint          action,
342                                   GtkWidget     *widget);
343 static void next_labeled_cb      (MainWindow    *mainwin,
344                                   guint          action,
345                                   GtkWidget     *widget);
346
347 static void goto_folder_cb       (MainWindow    *mainwin,
348                                   guint          action,
349                                   GtkWidget     *widget);
350
351 static void copy_cb              (MainWindow    *mainwin,
352                                   guint          action,
353                                   GtkWidget     *widget);
354 static void allsel_cb            (MainWindow    *mainwin,
355                                   guint          action,
356                                   GtkWidget     *widget);
357
358 static void prefs_common_open_cb (MainWindow    *mainwin,
359                                   guint          action,
360                                   GtkWidget     *widget);
361 static void prefs_filter_open_cb (MainWindow    *mainwin,
362                                   guint          action,
363                                   GtkWidget     *widget);
364 static void prefs_scoring_open_cb (MainWindow   *mainwin,
365                                   guint          action,
366                                   GtkWidget     *widget);
367 static void prefs_filtering_open_cb (MainWindow *mainwin,
368                                   guint          action,
369                                   GtkWidget     *widget);
370 static void prefs_account_open_cb(MainWindow    *mainwin,
371                                   guint          action,
372                                   GtkWidget     *widget);
373 static void new_account_cb       (MainWindow    *mainwin,
374                                   guint          action,
375                                   GtkWidget     *widget);
376
377 static void account_menu_cb      (GtkMenuItem   *menuitem,
378                                   gpointer       data);
379
380 static void manual_open_cb       (MainWindow    *mainwin,
381                                   guint          action,
382                                   GtkWidget     *widget);
383
384 static void scan_tree_func       (Folder        *folder,
385                                   FolderItem    *item,
386                                   gpointer       data);
387                                   
388 static void activate_compose_button (MainWindow *mainwin,
389                                 ToolbarStyle      style,
390                                 ComposeButtonType type);
391
392 static void prefs_templates_open_cb(MainWindow  *mainwin,
393                                   guint          action,
394                                   GtkWidget     *widget);
395
396 #define  SEPARATE_ACTION  667
397
398 static GtkItemFactoryEntry mainwin_entries[] =
399 {
400         {N_("/_File"),                          NULL, NULL, 0, "<Branch>"},
401         {N_("/_File/_Add mailbox..."),          NULL, add_mailbox_cb, 0, NULL},
402         {N_("/_File/_Add mbox mailbox..."),     NULL, add_mbox_cb, 0, NULL},
403         {N_("/_File/_Rescan folder tree"),      NULL, update_folderview_cb, 0, NULL},
404         {N_("/_File/_Folder"),                  NULL, NULL, 0, "<Branch>"},
405         {N_("/_File/_Folder/Create _new folder..."),
406                                                 NULL, new_folder_cb, 0, NULL},
407         {N_("/_File/_Folder/_Rename folder..."),NULL, rename_folder_cb, 0, NULL},
408         {N_("/_File/_Folder/_Delete folder"),   NULL, delete_folder_cb, 0, NULL},
409         {N_("/_File/_Import mbox file..."),     NULL, import_mbox_cb, 0, NULL},
410         {N_("/_File/_Export to mbox file..."),  NULL, export_mbox_cb, 0, NULL},
411         {N_("/_File/Empty _trash"),             NULL, empty_trash_cb, 0, NULL},
412         {N_("/_File/---"),                      NULL, NULL, 0, "<Separator>"},
413         {N_("/_File/_Save as..."),              NULL, save_as_cb, 0, NULL},
414         {N_("/_File/_Print..."),                "<alt>P", print_cb, 0, NULL},
415         {N_("/_File/---"),                      NULL, NULL, 0, "<Separator>"},
416         {N_("/_File/_Close"),                   "<alt>W", app_exit_cb, 0, NULL},
417         {N_("/_File/E_xit"),                    "<alt>Q", app_exit_cb, 0, NULL},
418
419         {N_("/_Edit"),                          NULL, NULL, 0, "<Branch>"},
420         {N_("/_Edit/_Copy"),                    "<control>C", copy_cb, 0, NULL},
421         {N_("/_Edit/Select _all"),              "<control>A", allsel_cb, 0, NULL},
422         {N_("/_Edit/---"),                      NULL, NULL, 0, "<Separator>"},
423         {N_("/_Edit/_Find in current message"), "<control>F", search_cb, 0, NULL},
424         {N_("/_Edit/_Search folder"),           "<control>S", search_cb, 1, NULL},
425
426         {N_("/_View"),                          NULL, NULL, 0, "<Branch>"},
427         {N_("/_View/_Folder tree"),             NULL, toggle_folder_cb, 0, "<ToggleItem>"},
428         {N_("/_View/_Message view"),            NULL, toggle_message_cb, 0, "<ToggleItem>"},
429         {N_("/_View/_Toolbar"),                 NULL, NULL, 0, "<Branch>"},
430         {N_("/_View/_Toolbar/Icon _and text"),  NULL, toggle_toolbar_cb, TOOLBAR_BOTH, "<RadioItem>"},
431         {N_("/_View/_Toolbar/_Icon"),           NULL, toggle_toolbar_cb, TOOLBAR_ICON, "/View/Toolbar/Icon and text"},
432         {N_("/_View/_Toolbar/_Text"),           NULL, toggle_toolbar_cb, TOOLBAR_TEXT, "/View/Toolbar/Icon and text"},
433         {N_("/_View/_Toolbar/_None"),           NULL, toggle_toolbar_cb, TOOLBAR_NONE, "/View/Toolbar/Icon and text"},
434         {N_("/_View/_Status bar"),              NULL, toggle_statusbar_cb, 0, "<ToggleItem>"},
435         {N_("/_View/---"),                      NULL, NULL, 0, "<Separator>"},
436         {N_("/_View/Separate f_older tree"),    NULL, NULL, SEPARATE_ACTION + SEPARATE_FOLDER, "<ToggleItem>"},
437         {N_("/_View/Separate m_essage view"),   NULL, NULL, SEPARATE_ACTION + SEPARATE_MESSAGE, "<ToggleItem>"},
438         {N_("/_View/---"),                      NULL, NULL, 0, "<Separator>"},
439         {N_("/_View/View _source"),             "<control>U", view_source_cb, 0, NULL},
440         {N_("/_View/Show all _header"),         "<control>H", header_window_show_cb, 0, NULL},
441         {N_("/_View/---"),                      NULL, NULL, 0, "<Separator>"},
442         {N_("/_View/_Code set"),                NULL, NULL, 0, "<Branch>"},
443         {N_("/_View/_Code set/_Auto detect"),
444          NULL, set_charset_cb, C_AUTO, "<RadioItem>"},
445
446 #define CODESET_SEPARATOR \
447         {N_("/_View/_Code set/---"),            NULL, NULL, 0, "<Separator>"}
448 #define CODESET_ACTION(action) \
449          NULL, set_charset_cb, action, "/View/Code set/Auto detect"
450
451         {N_("/_View/_Code set/---"),            NULL, NULL, 0, "<Separator>"},
452         {N_("/_View/_Code set/7bit ascii (US-ASC_II)"),
453          CODESET_ACTION(C_US_ASCII)},
454
455 #if HAVE_LIBJCONV
456         {N_("/_View/_Code set/Unicode (_UTF-8)"),
457          CODESET_ACTION(C_UTF_8)},
458         CODESET_SEPARATOR,
459 #endif
460         {N_("/_View/_Code set/Western European (ISO-8859-_1)"),
461          CODESET_ACTION(C_ISO_8859_1)},
462         CODESET_SEPARATOR,
463 #if HAVE_LIBJCONV
464         {N_("/_View/_Code set/Central European (ISO-8859-_2)"),
465          CODESET_ACTION(C_ISO_8859_2)},
466         CODESET_SEPARATOR,
467         {N_("/_View/_Code set/_Baltic (ISO-8859-13)"),
468          CODESET_ACTION(C_ISO_8859_13)},
469         {N_("/_View/_Code set/Baltic (ISO-8859-_4)"),
470          CODESET_ACTION(C_ISO_8859_4)},
471         CODESET_SEPARATOR,
472         {N_("/_View/_Code set/Greek (ISO-8859-_7)"),
473          CODESET_ACTION(C_ISO_8859_7)},
474         CODESET_SEPARATOR,
475         {N_("/_View/_Code set/Turkish (ISO-8859-_9)"),
476          CODESET_ACTION(C_ISO_8859_9)},
477         CODESET_SEPARATOR,
478         {N_("/_View/_Code set/Cyrillic (ISO-8859-_5)"),
479          CODESET_ACTION(C_ISO_8859_5)},
480         {N_("/_View/_Code set/Cyrillic (KOI8-_R)"),
481          CODESET_ACTION(C_KOI8_R)},
482         {N_("/_View/_Code set/Cyrillic (Windows-1251)"),
483          CODESET_ACTION(C_CP1251)},
484         CODESET_SEPARATOR,
485 #endif
486         {N_("/_View/_Code set/Japanese (ISO-2022-_JP)"),
487          CODESET_ACTION(C_ISO_2022_JP)},
488 #if HAVE_LIBJCONV
489         {N_("/_View/_Code set/Japanese (ISO-2022-JP-2)"),
490          CODESET_ACTION(C_ISO_2022_JP_2)},
491 #endif
492         {N_("/_View/_Code set/Japanese (_EUC-JP)"),
493          CODESET_ACTION(C_EUC_JP)},
494         {N_("/_View/_Code set/Japanese (_Shift__JIS)"),
495          CODESET_ACTION(C_SHIFT_JIS)},
496 #if HAVE_LIBJCONV
497         CODESET_SEPARATOR,
498         {N_("/_View/_Code set/Simplified Chinese (_GB2312)"),
499          CODESET_ACTION(C_GB2312)},
500         {N_("/_View/_Code set/Traditional Chinese (_Big5)"),
501          CODESET_ACTION(C_BIG5)},
502         {N_("/_View/_Code set/Traditional Chinese (EUC-_TW)"),
503          CODESET_ACTION(C_EUC_TW)},
504         {N_("/_View/_Code set/Chinese (ISO-2022-_CN)"),
505          CODESET_ACTION(C_ISO_2022_CN)},
506         CODESET_SEPARATOR,
507         {N_("/_View/_Code set/Korean (EUC-_KR)"),
508          CODESET_ACTION(C_EUC_KR)},
509         {N_("/_View/_Code set/Korean (ISO-2022-KR)"),
510          CODESET_ACTION(C_ISO_2022_KR)},
511 #endif
512
513 #undef CODESET_SEPARATOR
514 #undef CODESET_ACTION
515
516         {N_("/_Message"),                       NULL, NULL, 0, "<Branch>"},
517         {N_("/_Message/Get new ma_il"),         "<alt>I",       inc_mail_cb, 0, NULL},
518         {N_("/_Message/Get from _all accounts"),
519                                                 "<shift><alt>I", inc_all_account_mail_cb, 0, NULL},
520         {N_("/_Message/---"),                   NULL, NULL, 0, "<Separator>"},
521         {N_("/_Message/Send queued messa_ges"),
522                                                 NULL, send_queue_cb, 0, NULL},
523         {N_("/_Message/---"),                   NULL, NULL, 0, "<Separator>"},
524         {N_("/_Message/Compose a_n email message"),     "<alt>N", compose_mail_cb, 0, NULL},
525         {N_("/_Message/Compose a news message"),        NULL,   compose_news_cb, 0, NULL},
526         {N_("/_Message/_Reply"),                "<alt>R",       reply_cb, COMPOSE_REPLY, NULL},
527         {N_("/_Message/Repl_y to sender"),      "<control><alt>R", reply_cb, COMPOSE_REPLY_TO_SENDER, NULL},
528         {N_("/_Message/Follow-up and reply to"), NULL, reply_cb, COMPOSE_FOLLOWUP_AND_REPLY_TO, NULL},
529         {N_("/_Message/Reply to a_ll"),         "<shift><alt>R", reply_cb, COMPOSE_REPLY_TO_ALL, NULL},
530         {N_("/_Message/_Forward"),              "<shift><alt>F", reply_cb, COMPOSE_FORWARD, NULL},
531         {N_("/_Message/Forward as a_ttachment"),
532                                                 "<shift><control>F", reply_cb, COMPOSE_FORWARD_AS_ATTACH, NULL},
533         {N_("/_Message/---"),                   NULL, NULL, 0, "<Separator>"},
534         {N_("/_Message/Re-_edit"),              NULL, reedit_cb, 0, NULL},
535         {N_("/_Message/---"),                   NULL, NULL, 0, "<Separator>"},
536         {N_("/_Message/M_ove..."),              "<alt>O", move_to_cb, 0, NULL},
537         {N_("/_Message/_Copy..."),              NULL, copy_to_cb, 0, NULL},
538         {N_("/_Message/_Delete"),               "<alt>D", delete_cb,  0, NULL},
539         {N_("/_Message/---"),                   NULL, NULL, 0, "<Separator>"},
540         {N_("/_Message/_Mark"),                 NULL, NULL, 0, "<Branch>"},
541         {N_("/_Message/_Mark/_Mark"),           NULL, mark_cb,   0, NULL},
542         {N_("/_Message/_Mark/_Unmark"),         NULL, unmark_cb, 0, NULL},
543         {N_("/_Message/_Mark/---"),             NULL, NULL, 0, "<Separator>"},
544         {N_("/_Message/_Mark/Mark as unr_ead"), NULL, mark_as_unread_cb, 0, NULL},
545         {N_("/_Message/_Mark/Mark as rea_d"),
546                                                 NULL, mark_as_read_cb, 0, NULL},
547         {N_("/_Message/---"),                   NULL, NULL, 0, "<Separator>"},
548         {N_("/_Message/Open in new _window"),   "<shift><control>N", open_msg_cb, 0, NULL},
549
550         {N_("/_Summary"),                       NULL, NULL, 0, "<Branch>"},
551         {N_("/_Summary/_Delete duplicated messages"),
552                                                 NULL, delete_duplicated_cb,   0, NULL},
553         {N_("/_Summary/_Filter messages"),      NULL, filter_cb, 0, NULL},
554         {N_("/_Summary/E_xecute"),              "<alt>X", execute_summary_cb, 0, NULL},
555         {N_("/_Summary/_Update"),               "<alt>U", update_summary_cb,  0, NULL},
556         {N_("/_Summary/---"),                   NULL, NULL, 0, "<Separator>"},
557         {N_("/_Summary/Go _to"),                NULL, NULL, 0, "<Branch>"},
558         {N_("/_Summary/Go _to/_Prev message"),  NULL, prev_cb, 0, NULL},
559         {N_("/_Summary/Go _to/_Next message"),  NULL, next_cb, 0, NULL},
560         {N_("/_Summary/Go _to/---"),            NULL, NULL, 0, "<Separator>"},
561         {N_("/_Summary/Go _to/P_rev unread message"),
562                                                 NULL, prev_unread_cb, 0, NULL},
563         {N_("/_Summary/Go _to/N_ext unread message"),
564                                                 NULL, next_unread_cb, 0, NULL},
565         {N_("/_Summary/Go _to/---"),            NULL, NULL, 0, "<Separator>"},
566         {N_("/_Summary/Go _to/Prev _marked message"),
567                                                 NULL, prev_marked_cb, 0, NULL},
568         {N_("/_Summary/Go _to/Next m_arked message"),
569                                                 NULL, next_marked_cb, 0, NULL},
570         {N_("/_Summary/Go _to/---"),            NULL, NULL, 0, "<Separator>"},
571         {N_("/_Summary/Go _to/Prev _labeled message"),
572                                                 NULL, prev_labeled_cb, 0, NULL},
573         {N_("/_Summary/Go _to/Next la_beled message"),
574                                                 NULL, next_labeled_cb, 0, NULL},
575         {N_("/_Summary/_Go to other folder..."),"<alt>G", goto_folder_cb, 0, NULL},
576         {N_("/_Summary/---"),                   NULL, NULL, 0, "<Separator>"},
577         {N_("/_Summary/_Sort"),                 NULL, NULL, 0, "<Branch>"},
578         {N_("/_Summary/_Sort/Sort by _number"), NULL, sort_summary_cb, SORT_BY_NUMBER, NULL},
579         {N_("/_Summary/_Sort/Sort by s_ize"),   NULL, sort_summary_cb, SORT_BY_SIZE, NULL},
580         {N_("/_Summary/_Sort/Sort by _date"),   NULL, sort_summary_cb, SORT_BY_DATE, NULL},
581         {N_("/_Summary/_Sort/Sort by _from"),   NULL, sort_summary_cb, SORT_BY_FROM, NULL},
582         {N_("/_Summary/_Sort/Sort by _subject"),NULL, sort_summary_cb, SORT_BY_SUBJECT, NULL},
583         {N_("/_Summary/_Sort/Sort by _color label"),
584                                                 NULL, sort_summary_cb, SORT_BY_LABEL, NULL},
585         {N_("/_Summary/_Sort/Sort by _mark"),   NULL, sort_summary_cb, SORT_BY_MARK, NULL},
586         {N_("/_Summary/_Sort/Sort by _unread"), NULL, sort_summary_cb, SORT_BY_UNREAD, NULL},
587         {N_("/_Summary/_Sort/Sort by a_ttachment"),
588                                                 NULL, sort_summary_cb, SORT_BY_MIME, NULL},
589         {N_("/_Summary/_Sort/---"),             NULL, NULL, 0, "<Separator>"},
590         {N_("/_Summary/_Sort/_Attract by subject"),
591                                                 NULL, attract_by_subject_cb, 0, NULL},
592         {N_("/_Summary/_Thread view"),          "<control>T",        thread_cb, 0, NULL},
593         {N_("/_Summary/Unt_hread view"),        "<shift><control>T", thread_cb, 1, NULL},
594         {N_("/_Summary/Set display _item..."),  NULL, set_display_item_cb, 0, NULL},
595
596         {N_("/_Tool"),                          NULL, NULL, 0, "<Branch>"},
597         {N_("/_Tool/_Address book"),            "<alt>A", addressbook_open_cb, 0, NULL},
598         {N_("/_Tool/_Log window"),              "<alt>L", log_window_show_cb, 0, NULL},
599
600         {N_("/_Configuration"),                 NULL, NULL, 0, "<Branch>"},
601         {N_("/_Configuration/_Common preferences..."),
602                                                 NULL, prefs_common_open_cb, 0, NULL},
603         {N_("/_Configuration/_Filter setting..."),
604                                                 NULL, prefs_filter_open_cb, 0, NULL},
605         {N_("/_Configuration/_Scoring ..."),
606                                                 NULL, prefs_scoring_open_cb, 0, NULL},
607         {N_("/_Configuration/_Filtering ..."),
608                                                 NULL, prefs_filtering_open_cb, 0, NULL},
609         {N_("/_Configuration/_Templates ..."),
610                                                 NULL, prefs_templates_open_cb, 0, NULL},
611         {N_("/_Configuration/_Preferences per account..."),
612                                                 NULL, prefs_account_open_cb, 0, NULL},
613         {N_("/_Configuration/---"),             NULL, NULL, 0, "<Separator>"},
614         {N_("/_Configuration/Create _new account..."),
615                                                 NULL, new_account_cb, 0, NULL},
616         {N_("/_Configuration/_Edit accounts..."),
617                                                 NULL, account_edit_open, 0, NULL},
618         {N_("/_Configuration/C_hange current account"),
619                                                 NULL, NULL, 0, "<Branch>"},
620
621         {N_("/_Help"),                          NULL, NULL, 0, "<LastBranch>"},
622         {N_("/_Help/_Manual"),                  NULL, NULL, 0, "<Branch>"},
623         {N_("/_Help/_Manual/_English"),         NULL, manual_open_cb, MANUAL_LANG_EN, NULL},
624         {N_("/_Help/_Manual/_Japanese"),        NULL, manual_open_cb, MANUAL_LANG_JA, NULL},
625         {N_("/_Help/---"),                      NULL, NULL, 0, "<Separator>"},
626         {N_("/_Help/_About"),                   NULL, about_show, 0, NULL}
627 };
628
629 MainWindow *main_window_create(SeparateType type)
630 {
631         MainWindow *mainwin;
632         GtkWidget *window;
633         GtkWidget *vbox;
634         GtkWidget *menubar;
635         GtkWidget *handlebox;
636         GtkWidget *vbox_body;
637         GtkWidget *hbox_stat;
638         GtkWidget *statusbar;
639         GtkWidget *progressbar;
640         GtkWidget *statuslabel;
641         GtkWidget *ac_button;
642         GtkWidget *ac_label;
643
644         FolderView *folderview;
645         SummaryView *summaryview;
646         MessageView *messageview;
647         GdkColormap *colormap;
648         GdkColor color[4];
649         gboolean success[4];
650         guint n_menu_entries;
651         GtkItemFactory *ifactory;
652         GtkWidget *ac_menu;
653         GtkWidget *menuitem;
654         gint i;
655
656         debug_print(_("Creating main window...\n"));
657         mainwin = g_new0(MainWindow, 1);
658
659         /* main window */
660         window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
661         gtk_window_set_title(GTK_WINDOW(window), PROG_VERSION);
662         gtk_window_set_policy(GTK_WINDOW(window), TRUE, TRUE, FALSE);
663         gtk_signal_connect(GTK_OBJECT(window), "delete_event",
664                            GTK_SIGNAL_FUNC(main_window_close_cb), mainwin);
665         gtk_signal_connect(GTK_OBJECT(window), "focus_in_event",
666                            GTK_SIGNAL_FUNC(manage_window_focus_in), NULL);
667         gtk_signal_connect(GTK_OBJECT(window), "focus_out_event",
668                            GTK_SIGNAL_FUNC(manage_window_focus_out), NULL);
669
670         gtk_widget_realize(window);
671
672         gtkut_widget_set_app_icon(window);
673
674         vbox = gtk_vbox_new(FALSE, 0);
675         gtk_widget_show(vbox);
676         gtk_container_add(GTK_CONTAINER(window), vbox);
677
678         /* menu bar */
679         n_menu_entries = sizeof(mainwin_entries) / sizeof(mainwin_entries[0]);
680         menubar = menubar_create(window, mainwin_entries, 
681                                  n_menu_entries, "<Main>", mainwin);
682         gtk_widget_show(menubar);
683         gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, TRUE, 0);
684
685         handlebox = gtk_handle_box_new();
686         gtk_widget_show(handlebox);
687         gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
688
689         main_window_toolbar_create(mainwin, handlebox);
690
691         /* vbox that contains body */
692         vbox_body = gtk_vbox_new(FALSE, BORDER_WIDTH);
693         gtk_widget_show(vbox_body);
694         gtk_container_set_border_width(GTK_CONTAINER(vbox_body), BORDER_WIDTH);
695         gtk_box_pack_start(GTK_BOX(vbox), vbox_body, TRUE, TRUE, 0);
696
697         hbox_stat = gtk_hbox_new(FALSE, 2);
698         gtk_box_pack_end(GTK_BOX(vbox_body), hbox_stat, FALSE, FALSE, 0);
699
700         statusbar = statusbar_create();
701         gtk_box_pack_start(GTK_BOX(hbox_stat), statusbar, TRUE, TRUE, 0);
702
703         progressbar = gtk_progress_bar_new();
704         gtk_widget_set_usize(progressbar, 120, 1);
705         gtk_box_pack_start(GTK_BOX(hbox_stat), progressbar, FALSE, FALSE, 0);
706
707         statuslabel = gtk_label_new("");
708         gtk_box_pack_start(GTK_BOX(hbox_stat), statuslabel, FALSE, FALSE, 0);
709
710         ac_button = gtk_button_new();
711         gtk_button_set_relief(GTK_BUTTON(ac_button), GTK_RELIEF_NONE);
712         GTK_WIDGET_UNSET_FLAGS(ac_button, GTK_CAN_FOCUS);
713         gtk_widget_set_usize(ac_button, -1, 1);
714         gtk_box_pack_end(GTK_BOX(hbox_stat), ac_button, FALSE, FALSE, 0);
715         gtk_signal_connect(GTK_OBJECT(ac_button), "button_press_event",
716                            GTK_SIGNAL_FUNC(ac_label_button_pressed), mainwin);
717
718         ac_label = gtk_label_new("");
719         gtk_container_add(GTK_CONTAINER(ac_button), ac_label);
720
721         gtk_widget_show_all(hbox_stat);
722
723         /* create views */
724         mainwin->folderview  = folderview  = folderview_create();
725         mainwin->summaryview = summaryview = summary_create();
726         mainwin->messageview = messageview = messageview_create();
727         mainwin->headerwin   = header_window_create();
728         mainwin->logwin      = log_window_create();
729
730         folderview->mainwin      = mainwin;
731         folderview->summaryview  = summaryview;
732
733         summaryview->mainwin     = mainwin;
734         summaryview->folderview  = folderview;
735         summaryview->messageview = messageview;
736         summaryview->headerwin   = mainwin->headerwin;
737         summaryview->window      = window;
738
739         messageview->mainwin     = mainwin;
740
741         mainwin->window      = window;
742         mainwin->vbox        = vbox;
743         mainwin->menubar     = menubar;
744         mainwin->handlebox   = handlebox;
745         mainwin->vbox_body   = vbox_body;
746         mainwin->hbox_stat   = hbox_stat;
747         mainwin->statusbar   = statusbar;
748         mainwin->progressbar = progressbar;
749         mainwin->statuslabel = statuslabel;
750         mainwin->ac_button   = ac_button;
751         mainwin->ac_label    = ac_label;
752
753         /* set context IDs for status bar */
754         mainwin->mainwin_cid = gtk_statusbar_get_context_id
755                 (GTK_STATUSBAR(statusbar), "Main Window");
756         mainwin->folderview_cid = gtk_statusbar_get_context_id
757                 (GTK_STATUSBAR(statusbar), "Folder View");
758         mainwin->summaryview_cid = gtk_statusbar_get_context_id
759                 (GTK_STATUSBAR(statusbar), "Summary View");
760
761         /* allocate colors for summary view and folder view */
762         summaryview->color_marked.red = summaryview->color_marked.green = 0;
763         summaryview->color_marked.blue = (guint16)65535;
764
765         summaryview->color_dim.red = summaryview->color_dim.green =
766                 summaryview->color_dim.blue = COLOR_DIM;
767
768         folderview->color_new.red = (guint16)55000;
769         folderview->color_new.green = folderview->color_new.blue = 15000;
770
771         gtkut_convert_int_to_gdk_color(prefs_common.tgt_folder_col,
772                                        &folderview->color_op);
773
774         summaryview->color_important.red = 0;
775         summaryview->color_marked.green = 0;
776         summaryview->color_important.blue = (guint16)65535;
777
778         color[0] = summaryview->color_marked;
779         color[1] = summaryview->color_dim;
780         color[2] = folderview->color_new;
781         color[3] = folderview->color_op;
782
783         colormap = gdk_window_get_colormap(window->window);
784         gdk_colormap_alloc_colors(colormap, color, 4, FALSE, TRUE, success);
785         for (i = 0; i < 4; i++) {
786                 if (success[i] == FALSE)
787                         g_warning(_("MainWindow: color allocation %d failed\n"), i);
788         }
789
790         debug_print(_("done.\n"));
791
792         main_window_set_widgets(mainwin, type);
793
794         /* set menu items */
795         ifactory = gtk_item_factory_from_widget(menubar);
796         menuitem = gtk_item_factory_get_item
797                 (ifactory, "/View/Code set/Auto detect");
798         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), TRUE);
799
800         switch (prefs_common.toolbar_style) {
801         case TOOLBAR_NONE:
802                 menuitem = gtk_item_factory_get_item
803                         (ifactory, "/View/Toolbar/None");
804                 break;
805         case TOOLBAR_ICON:
806                 menuitem = gtk_item_factory_get_item
807                         (ifactory, "/View/Toolbar/Icon");
808                 break;
809         case TOOLBAR_TEXT:
810                 menuitem = gtk_item_factory_get_item
811                         (ifactory, "/View/Toolbar/Text");
812                 break;
813         case TOOLBAR_BOTH:
814                 menuitem = gtk_item_factory_get_item
815                         (ifactory, "/View/Toolbar/Icon and text");
816         }
817         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), TRUE);
818
819         gtk_widget_hide(mainwin->hbox_stat);
820         menuitem = gtk_item_factory_get_item(ifactory, "/View/Status bar");
821         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
822                                        prefs_common.show_statusbar);
823
824         /* set the check of the SEPARATE_xxx menu items. we also need the main window
825          * as a property and pass the action type to the callback */
826         menuitem = gtk_item_factory_get_widget_by_action(ifactory, SEPARATE_ACTION + SEPARATE_FOLDER);
827         g_assert(menuitem);
828         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), type & SEPARATE_FOLDER);
829         gtk_object_set_data(GTK_OBJECT(menuitem), "mainwindow", mainwin);
830         gtk_signal_connect(GTK_OBJECT(menuitem), "toggled", GTK_SIGNAL_FUNC(separate_widget_cb), 
831                                            GUINT_TO_POINTER(SEPARATE_FOLDER));
832
833         menuitem = gtk_item_factory_get_widget_by_action(ifactory, SEPARATE_ACTION + SEPARATE_MESSAGE);
834         g_assert(menuitem);
835         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), type & SEPARATE_MESSAGE);
836         gtk_object_set_data(GTK_OBJECT(menuitem), "mainwindow", mainwin);
837         gtk_signal_connect(GTK_OBJECT(menuitem), "toggled", GTK_SIGNAL_FUNC(separate_widget_cb), 
838                                            GUINT_TO_POINTER(SEPARATE_MESSAGE));
839
840
841         menu_set_sensitive(ifactory, "/Summary/Thread view",
842                            prefs_common.enable_thread ? FALSE : TRUE);
843         menu_set_sensitive(ifactory, "/Summary/Unthread view",
844                            prefs_common.enable_thread ? TRUE : FALSE);
845         
846         /*main_window_set_thread_option(mainwin);*/
847
848
849         /* set account selection menu */
850         ac_menu = gtk_item_factory_get_widget
851                 (ifactory, "/Configuration/Change current account");
852         gtk_signal_connect(GTK_OBJECT(ac_menu), "selection_done",
853                            GTK_SIGNAL_FUNC(ac_menu_popup_closed), mainwin);
854         mainwin->ac_menu = ac_menu;
855
856         main_window_set_toolbar_sensitive(mainwin);
857
858         /* show main window */
859         gtk_widget_set_uposition(mainwin->window,
860                                  prefs_common.mainwin_x,
861                                  prefs_common.mainwin_y);
862         gtk_widget_set_usize(window, prefs_common.mainwin_width,
863                              prefs_common.mainwin_height);
864                              
865         gtk_widget_show(mainwin->window);
866
867         /* initialize views */
868         folderview_init(folderview);
869         summary_init(summaryview);
870         messageview_init(messageview);
871         header_window_init(mainwin->headerwin);
872         log_window_init(mainwin->logwin);
873
874
875         mainwin->lock_count = 0;
876         mainwin->cursor_count = 0;
877
878         if (!watch_cursor)
879                 watch_cursor = gdk_cursor_new(GDK_WATCH);
880
881         mainwin_list = g_list_append(mainwin_list, mainwin);
882
883         return mainwin;
884 }
885
886 void main_window_cursor_wait(MainWindow *mainwin)
887 {
888
889         if (mainwin->cursor_count == 0)
890                 gdk_window_set_cursor(mainwin->window->window, watch_cursor);
891
892         mainwin->cursor_count++;
893
894         gdk_flush();
895 }
896
897 void main_window_cursor_normal(MainWindow *mainwin)
898 {
899         if (mainwin->cursor_count)
900                 mainwin->cursor_count--;
901
902         if (mainwin->cursor_count == 0)
903                 gdk_window_set_cursor(mainwin->window->window, NULL);
904
905         gdk_flush();
906 }
907
908 /* lock / unlock the user-interface */
909 void main_window_lock(MainWindow *mainwin)
910 {
911         if (mainwin->lock_count == 0)
912                 gtk_widget_set_sensitive(mainwin->ac_button, FALSE);
913
914         mainwin->lock_count++;
915
916         main_window_set_menu_sensitive(mainwin);
917         main_window_set_toolbar_sensitive(mainwin);
918 }
919
920 void main_window_unlock(MainWindow *mainwin)
921 {
922         if (mainwin->lock_count)
923                 mainwin->lock_count--;
924
925         main_window_set_menu_sensitive(mainwin);
926         main_window_set_toolbar_sensitive(mainwin);
927
928         if (mainwin->lock_count == 0)
929                 gtk_widget_set_sensitive(mainwin->ac_button, TRUE);
930 }
931
932 void main_window_reflect_prefs_all(void)
933 {
934         GList *cur;
935         MainWindow *mainwin;
936
937         for (cur = mainwin_list; cur != NULL; cur = cur->next) {
938                 mainwin = (MainWindow *)cur->data;
939
940                 main_window_show_cur_account(mainwin);
941                 main_window_set_menu_sensitive(mainwin);
942                 main_window_set_toolbar_sensitive(mainwin);
943
944                 if (prefs_common.immediate_exec)
945                         gtk_widget_hide(mainwin->exec_btn);
946                 else
947                         gtk_widget_show(mainwin->exec_btn);
948
949                 summary_change_display_item(mainwin->summaryview);
950                 summary_redisplay_msg(mainwin->summaryview);
951                 headerview_set_visibility(mainwin->messageview->headerview,
952                                           prefs_common.display_header_pane);
953         }
954 }
955
956 void main_window_set_account_menu(GList *account_list)
957 {
958         GList *cur, *cur_ac, *cur_item;
959         GtkWidget *menuitem;
960         MainWindow *mainwin;
961         PrefsAccount *ac_prefs;
962
963         for (cur = mainwin_list; cur != NULL; cur = cur->next) {
964                 mainwin = (MainWindow *)cur->data;
965
966                 /* destroy all previous menu item */
967                 cur_item = GTK_MENU_SHELL(mainwin->ac_menu)->children;
968                 while (cur_item != NULL) {
969                         GList *next = cur_item->next;
970                         gtk_widget_destroy(GTK_WIDGET(cur_item->data));
971                         cur_item = next;
972                 }
973
974                 for (cur_ac = account_list; cur_ac != NULL;
975                      cur_ac = cur_ac->next) {
976                         ac_prefs = (PrefsAccount *)cur_ac->data;
977
978                         menuitem = gtk_menu_item_new_with_label
979                                 (ac_prefs->account_name
980                                  ? ac_prefs->account_name : _("Untitled"));
981                         gtk_widget_show(menuitem);
982                         gtk_menu_append(GTK_MENU(mainwin->ac_menu), menuitem);
983                         gtk_signal_connect(GTK_OBJECT(menuitem), "activate",
984                                            GTK_SIGNAL_FUNC(account_menu_cb),
985                                            ac_prefs);
986                 }
987         }
988 }
989
990 static void main_window_show_cur_account(MainWindow *mainwin)
991 {
992         gchar *buf;
993         gchar *ac_name;
994
995         ac_name = g_strdup(cur_account
996                            ? (cur_account->account_name
997                               ? cur_account->account_name : _("Untitled"))
998                            : _("none"));
999
1000         if (cur_account)
1001                 buf = g_strdup_printf("%s - %s", ac_name, PROG_VERSION);
1002         else
1003                 buf = g_strdup(PROG_VERSION);
1004         gtk_window_set_title(GTK_WINDOW(mainwin->window), buf);
1005         g_free(buf);
1006
1007         gtk_label_set_text(GTK_LABEL(mainwin->ac_label), ac_name);
1008         gtk_widget_queue_resize(mainwin->ac_button);
1009
1010         g_free(ac_name);
1011 }
1012
1013 void main_window_separation_change(MainWindow *mainwin, SeparateType type)
1014 {
1015         GtkWidget *folder_wid  = GTK_WIDGET_PTR(mainwin->folderview);
1016         GtkWidget *summary_wid = GTK_WIDGET_PTR(mainwin->summaryview);
1017         GtkWidget *message_wid = GTK_WIDGET_PTR(mainwin->messageview);
1018
1019         if (mainwin->type == type) return;
1020
1021         /* remove widgets from those containers */
1022         gtk_widget_ref(folder_wid);
1023         gtk_widget_ref(summary_wid);
1024         gtk_widget_ref(message_wid);
1025         gtk_container_remove
1026                 (GTK_CONTAINER(folder_wid->parent), folder_wid);
1027         gtk_container_remove
1028                 (GTK_CONTAINER(summary_wid->parent), summary_wid);
1029         gtk_container_remove
1030                 (GTK_CONTAINER(message_wid->parent), message_wid);
1031
1032         /* clean containers */
1033         switch (mainwin->type) {
1034         case SEPARATE_NONE:
1035                 gtk_widget_destroy(mainwin->win.sep_none.hpaned);
1036                 break;
1037         case SEPARATE_FOLDER:
1038                 gtk_widget_destroy(mainwin->win.sep_folder.vpaned);
1039                 gtk_widget_destroy(mainwin->win.sep_folder.folderwin);
1040                 break;
1041         case SEPARATE_MESSAGE:
1042                 gtk_widget_destroy(mainwin->win.sep_message.hpaned);
1043                 gtk_widget_destroy(mainwin->win.sep_message.messagewin);
1044                 break;
1045         case SEPARATE_BOTH:
1046                 gtk_widget_destroy(mainwin->win.sep_both.messagewin);
1047                 gtk_widget_destroy(mainwin->win.sep_both.folderwin);
1048                 break;
1049         }
1050
1051         gtk_widget_hide(mainwin->window);
1052         main_window_set_widgets(mainwin, type);
1053         gtk_widget_show(mainwin->window);
1054
1055         gtk_widget_unref(folder_wid);
1056         gtk_widget_unref(summary_wid);
1057         gtk_widget_unref(message_wid);
1058 }
1059
1060 void main_window_get_size(MainWindow *mainwin)
1061 {
1062         GtkAllocation *allocation;
1063
1064         allocation = &(GTK_WIDGET_PTR(mainwin->summaryview)->allocation);
1065
1066         prefs_common.summaryview_width  = allocation->width;
1067
1068         if (mainwin->summaryview->msg_is_toggled_on)
1069                 prefs_common.summaryview_height = allocation->height;
1070
1071         prefs_common.mainview_width     = allocation->width;
1072
1073         allocation = &mainwin->window->allocation;
1074
1075         prefs_common.mainview_height = allocation->height;
1076         prefs_common.mainwin_width   = allocation->width;
1077         prefs_common.mainwin_height  = allocation->height;
1078
1079         allocation = &(GTK_WIDGET_PTR(mainwin->folderview)->allocation);
1080
1081         prefs_common.folderview_width  = allocation->width;
1082         prefs_common.folderview_height = allocation->height;
1083 }
1084
1085 void main_window_get_position(MainWindow *mainwin)
1086 {
1087         gint x, y;
1088
1089         gtkut_widget_get_uposition(mainwin->window, &x, &y);
1090
1091         prefs_common.mainview_x = x;
1092         prefs_common.mainview_y = y;
1093         prefs_common.mainwin_x = x;
1094         prefs_common.mainwin_y = y;
1095
1096         debug_print(_("window position: x = %d, y = %d\n"), x, y);
1097 }
1098
1099 void main_window_empty_trash(MainWindow *mainwin, gboolean confirm)
1100 {
1101         GList *list;
1102
1103         if (confirm) {
1104                 if (alertpanel(_("Empty trash"),
1105                                _("Empty all messages in trash?"),
1106                                _("Yes"), _("No"), NULL) != G_ALERTDEFAULT)
1107                         return;
1108                 manage_window_focus_in(mainwin->window, NULL, NULL);
1109         }
1110
1111         procmsg_empty_trash();
1112
1113         for (list = folder_get_list(); list != NULL; list = list->next) {
1114                 Folder *folder;
1115
1116                 folder = list->data;
1117                 if (folder->trash) {
1118                         folder_item_scan(folder->trash);
1119                         folderview_update_item(folder->trash, TRUE);
1120                 }
1121         }
1122
1123         if (mainwin->summaryview->folder_item &&
1124             mainwin->summaryview->folder_item->stype == F_TRASH)
1125                 gtk_widget_grab_focus(mainwin->folderview->ctree);
1126 }
1127
1128 void main_window_add_mailbox(MainWindow *mainwin)
1129 {
1130         gchar *path;
1131         Folder *folder;
1132
1133         path = input_dialog(_("Add mailbox"),
1134                             _("Input the location of mailbox.\n"
1135                               "If the existing mailbox is specified, it will be\n"
1136                               "scanned automatically."),
1137                             "Mail");
1138         if (!path) return;
1139         if (folder_find_from_path(path)) {
1140                 alertpanel_error(_("The mailbox `%s' already exists."), path);
1141                 g_free(path);
1142                 return;
1143         }
1144         if (!strcmp(path, "Mail"))
1145                 folder = folder_new(F_MH, _("Mailbox"), path);
1146         else
1147                 folder = folder_new(F_MH, g_basename(path), path);
1148         g_free(path);
1149
1150         if (folder->create_tree(folder) < 0) {
1151                 alertpanel_error(_("Creation of the mailbox failed.\n"
1152                                    "Maybe some files already exist, or you don't have the permission to write there."));
1153                 folder_destroy(folder);
1154                 return;
1155         }
1156
1157         folder_add(folder);
1158         folder_set_ui_func(folder, scan_tree_func, mainwin);
1159         folder->scan_tree(folder);
1160         folder_set_ui_func(folder, NULL, NULL);
1161
1162         folderview_set(mainwin->folderview);
1163 }
1164
1165 void main_window_add_mbox(MainWindow *mainwin)
1166 {
1167         gchar *path;
1168         Folder *folder;
1169         FolderItem * item;
1170
1171         path = input_dialog(_("Add mbox mailbox"),
1172                             _("Input the location of mailbox."),
1173                             "mail");
1174
1175         if (!path) return;
1176
1177         if (folder_find_from_path(path)) {
1178                 alertpanel_error(_("The mailbox `%s' already exists."), path);
1179                 g_free(path);
1180                 return;
1181         }
1182
1183         /*
1184         if (!strcmp(path, "Mail"))
1185                 folder = folder_new(F_MBOX, _("Mailbox"), path);
1186                 else
1187         */
1188
1189         folder = folder_new(F_MBOX, g_basename(path), path);
1190         g_free(path);
1191
1192         if (folder->create_tree(folder) < 0) {
1193                 alertpanel_error(_("Creation of the mailbox failed."));
1194                 folder_destroy(folder);
1195                 return;
1196         }
1197
1198         folder_add(folder);
1199
1200         item = folder_item_new(folder->name, NULL);
1201         item->folder = folder;
1202         folder->node = g_node_new(item);
1203
1204         folder->create_folder(folder, item, "inbox");
1205         folder->create_folder(folder, item, "outbox");
1206         folder->create_folder(folder, item, "queue");
1207         folder->create_folder(folder, item, "draft");
1208         folder->create_folder(folder, item, "trash");
1209
1210         folderview_set(mainwin->folderview);
1211 }
1212
1213 typedef enum
1214 {
1215         M_UNLOCKED            = 1 << 0,
1216         M_MSG_EXIST           = 1 << 1,
1217         M_TARGET_EXIST        = 1 << 2,
1218         M_SINGLE_TARGET_EXIST = 1 << 3,
1219         M_EXEC                = 1 << 4,
1220         M_ALLOW_REEDIT        = 1 << 5,
1221         M_HAVE_ACCOUNT        = 1 << 6,
1222         M_THREADED            = 1 << 7,
1223         M_UNTHREADED          = 1 << 8,
1224         M_NEWS                = 1 << 9
1225 } SensitiveCond;
1226
1227 static SensitiveCond main_window_get_current_state(MainWindow *mainwin)
1228 {
1229         SensitiveCond state = 0;
1230         SummarySelection selection;
1231
1232         selection = summary_get_selection_type(mainwin->summaryview);
1233
1234         if (mainwin->lock_count == 0)
1235                 state |= M_UNLOCKED;
1236         if (selection != SUMMARY_NONE)
1237                 state |= M_MSG_EXIST;
1238         if (mainwin->summaryview->folder_item) {
1239                 if (mainwin->summaryview->folder_item->threaded)
1240                         state |= M_THREADED;
1241                 else
1242                         state |= M_UNTHREADED;  
1243         }               
1244         if (selection == SUMMARY_SELECTED_SINGLE ||
1245             selection == SUMMARY_SELECTED_MULTIPLE)
1246                 state |= M_TARGET_EXIST;
1247         if (selection == SUMMARY_SELECTED_SINGLE)
1248                 state |= M_SINGLE_TARGET_EXIST;
1249         if (mainwin->summaryview->folder_item &&
1250             mainwin->summaryview->folder_item->folder->type != F_NEWS)
1251                 state |= M_EXEC;
1252         if (mainwin->summaryview->folder_item &&
1253             mainwin->summaryview->folder_item->folder->type == F_NEWS)
1254                 state |= M_NEWS;
1255         if (selection == SUMMARY_SELECTED_SINGLE &&
1256             (mainwin->summaryview->folder_item &&
1257              (mainwin->summaryview->folder_item->stype == F_DRAFT ||
1258               mainwin->summaryview->folder_item->stype == F_OUTBOX ||
1259               mainwin->summaryview->folder_item->stype == F_QUEUE)))
1260                 state |= M_ALLOW_REEDIT;
1261         if (cur_account)
1262                 state |= M_HAVE_ACCOUNT;
1263
1264         return state;
1265 }
1266
1267 void main_window_set_toolbar_sensitive(MainWindow *mainwin)
1268 {
1269         SensitiveCond state;
1270         gboolean sensitive;
1271         gint i;
1272
1273         const struct {
1274                 GtkWidget *widget;
1275                 SensitiveCond cond;
1276         } entry[] = {
1277                 {mainwin->get_btn         , M_HAVE_ACCOUNT|M_UNLOCKED},
1278                 {mainwin->getall_btn      , M_HAVE_ACCOUNT|M_UNLOCKED},
1279                 {mainwin->compose_mail_btn, M_HAVE_ACCOUNT},
1280                 {mainwin->compose_news_btn, M_HAVE_ACCOUNT},
1281                 {mainwin->reply_btn       , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1282                 {mainwin->replyall_btn    , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1283                 {mainwin->replysender_btn , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1284                 {mainwin->fwd_btn         , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1285                 /* {mainwin->prefs_btn      , M_UNLOCKED},
1286                 {mainwin->account_btn    , M_UNLOCKED}, */
1287                 {mainwin->next_btn        , M_MSG_EXIST},
1288                 {mainwin->delete_btn      , M_TARGET_EXIST|M_EXEC|M_UNLOCKED},
1289                 {mainwin->exec_btn        , M_MSG_EXIST|M_EXEC|M_UNLOCKED},
1290                 {NULL, 0}
1291         };
1292
1293         state = main_window_get_current_state(mainwin);
1294
1295         for (i = 0; entry[i].widget != NULL; i++) {
1296                 sensitive = ((entry[i].cond & state) == entry[i].cond);
1297                 gtk_widget_set_sensitive(entry[i].widget, sensitive);
1298         }
1299 }
1300
1301 void main_window_set_menu_sensitive(MainWindow *mainwin)
1302 {
1303         GtkItemFactory *ifactory;
1304         SensitiveCond state;
1305         gboolean sensitive;
1306         gint i;
1307
1308         static const struct {
1309                 gchar *const entry;
1310                 SensitiveCond cond;
1311         } entry[] = {
1312                 {"/File/Add mailbox..."        , M_UNLOCKED},
1313                 {"/File/Add mbox mailbox..."   , M_UNLOCKED},
1314                 {"/File/Rescan folder tree"    , M_UNLOCKED},
1315                 {"/File/Folder"                , M_UNLOCKED},
1316                 {"/File/Import mbox file..."   , M_UNLOCKED},
1317                 {"/File/Export to mbox file...", M_UNLOCKED},
1318                 {"/File/Empty trash"           , M_UNLOCKED},
1319                 {"/File/Save as...", M_SINGLE_TARGET_EXIST|M_UNLOCKED},
1320                 {"/File/Print..."  , M_TARGET_EXIST|M_UNLOCKED},
1321                 {"/File/Close", M_UNLOCKED},
1322                 {"/File/Exit" , M_UNLOCKED},
1323
1324                 {"/View/Show all header"      , M_SINGLE_TARGET_EXIST},
1325                 {"/View/View source"          , M_SINGLE_TARGET_EXIST},
1326
1327                 {"/Message/Get new mail"          , M_HAVE_ACCOUNT|M_UNLOCKED},
1328                 {"/Message/Get from all accounts" , M_HAVE_ACCOUNT|M_UNLOCKED},
1329 /*              {"/Message/Compose new message"   , M_HAVE_ACCOUNT}, */
1330                 {"/Message/Reply"                 , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1331                 {"/Message/Reply to sender"       , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1332                 {"/Message/Reply to all"          , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1333                 {"/Message/Follow-up and reply to", M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST|M_NEWS},
1334                 {"/Message/Forward"               , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1335                 {"/Message/Forward as attachment" , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1336                 {"/Message/Open in new window"    , M_SINGLE_TARGET_EXIST},
1337                 {"/Message/Re-edit", M_HAVE_ACCOUNT|M_ALLOW_REEDIT},
1338                 {"/Message/Move...", M_TARGET_EXIST|M_EXEC|M_UNLOCKED},
1339                 {"/Message/Copy...", M_TARGET_EXIST|M_EXEC|M_UNLOCKED},
1340                 {"/Message/Delete" , M_TARGET_EXIST|M_EXEC|M_UNLOCKED},
1341                 {"/Message/Mark"   , M_TARGET_EXIST},
1342                 {"/Message/Add sender to address book", M_SINGLE_TARGET_EXIST},
1343
1344                 {"/Summary/Delete duplicated messages", M_MSG_EXIST|M_EXEC|M_UNLOCKED},
1345                 {"/Summary/Filter messages"           , M_MSG_EXIST|M_EXEC|M_UNLOCKED},
1346                 {"/Summary/Execute"                   , M_MSG_EXIST|M_EXEC|M_UNLOCKED},
1347                 {"/Summary/Go to"                     , M_MSG_EXIST},
1348                 {"/Summary/Go to/Prev message"        , M_MSG_EXIST},
1349                 {"/Summary/Go to/Next message"        , M_MSG_EXIST},
1350                 {"/Summary/Go to/Next unread message" , M_MSG_EXIST},
1351                 {"/Summary/Go to/Prev marked message" , M_MSG_EXIST},
1352                 {"/Summary/Go to/Next marked message" , M_MSG_EXIST},
1353                 {"/Summary/Go to/Prev labeled message", M_MSG_EXIST},
1354                 {"/Summary/Go to/Next labeled message", M_MSG_EXIST},
1355                 {"/Summary/Sort"                      , M_MSG_EXIST},
1356                 {"/Summary/Thread view"               , M_UNTHREADED},
1357                 {"/Summary/Unthread view"             , M_THREADED},
1358
1359                 {"/Configuration", M_UNLOCKED},
1360
1361                 {NULL, 0}
1362         };
1363
1364         ifactory = gtk_item_factory_from_widget(mainwin->menubar);
1365         state = main_window_get_current_state(mainwin);
1366
1367         for (i = 0; entry[i].entry != NULL; i++) {
1368                 sensitive = ((entry[i].cond & state) == entry[i].cond);
1369                 menu_set_sensitive(ifactory, entry[i].entry, sensitive);
1370         }
1371 }
1372
1373 void main_window_popup(MainWindow *mainwin)
1374 {
1375         gint x, y;
1376         gint sx, sy;
1377         GtkWidget *widget;
1378
1379         gdk_window_get_origin(mainwin->window->window, &x, &y);
1380         sx = gdk_screen_width();
1381         sy = gdk_screen_height();
1382         x %= sx; if (x < 0) x = 0;
1383         y %= sy; if (y < 0) y = 0;
1384         gdk_window_move(mainwin->window->window, x, y);
1385         gdk_window_raise(mainwin->window->window);
1386         gdk_window_show(mainwin->window->window);
1387
1388         debug_print("window position: x = %d, y = %d\n", x, y);
1389
1390         switch (mainwin->type) {
1391         case SEPARATE_FOLDER:
1392                 widget = mainwin->win.sep_folder.folderwin;
1393                 gdk_window_get_origin(widget->window, &x, &y);
1394                 x %= sx; if (x < 0) x = 0;
1395                 y %= sy; if (y < 0) y = 0;
1396                 gdk_window_move(widget->window, x, y);
1397                 gdk_window_raise(widget->window);
1398                 break;
1399         case SEPARATE_MESSAGE:
1400                 widget = mainwin->win.sep_message.messagewin;
1401                 gdk_window_get_origin(widget->window, &x, &y);
1402                 x %= sx; if (x < 0) x = 0;
1403                 y %= sy; if (y < 0) y = 0;
1404                 gdk_window_move(widget->window, x, y);
1405                 gdk_window_raise(widget->window);
1406                 break;
1407         case SEPARATE_BOTH:
1408                 widget = mainwin->win.sep_both.folderwin;
1409                 gdk_window_get_origin(widget->window, &x, &y);
1410                 x %= sx; if (x < 0) x = 0;
1411                 y %= sy; if (y < 0) y = 0;
1412                 gdk_window_move(widget->window, x, y);
1413                 gdk_window_raise(widget->window);
1414                 widget = mainwin->win.sep_both.messagewin;
1415                 gdk_window_get_origin(widget->window, &x, &y);
1416                 x %= sx; if (x < 0) x = 0;
1417                 y %= sy; if (y < 0) y = 0;
1418                 gdk_window_move(widget->window, x, y);
1419                 gdk_window_raise(widget->window);
1420                 break;
1421         default:
1422                 break;
1423         }
1424 }
1425
1426 static void main_window_set_widgets(MainWindow *mainwin, SeparateType type)
1427 {
1428         GtkWidget *folderwin = NULL;
1429         GtkWidget *messagewin = NULL;
1430         GtkWidget *hpaned;
1431         GtkWidget *vpaned;
1432         GtkWidget *vbox_body = mainwin->vbox_body;
1433
1434         debug_print(_("Setting widgets..."));
1435
1436         /* create separated window(s) if needed */
1437         if (type & SEPARATE_FOLDER) {
1438                 folderwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
1439                 gtk_window_set_policy(GTK_WINDOW(folderwin),
1440                                       TRUE, TRUE, FALSE);
1441                 gtk_widget_set_usize(folderwin, -1,
1442                                      prefs_common.mainview_height);
1443                 gtk_container_set_border_width(GTK_CONTAINER(folderwin),
1444                                                BORDER_WIDTH);
1445                 gtk_signal_connect(GTK_OBJECT(folderwin), "delete_event",
1446                                    GTK_SIGNAL_FUNC(gtk_widget_hide_on_delete),
1447                                    NULL);
1448         }
1449         if (type & SEPARATE_MESSAGE) {
1450                 messagewin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
1451                 gtk_window_set_policy(GTK_WINDOW(messagewin),
1452                                       TRUE, TRUE, FALSE);
1453                 gtk_widget_set_usize
1454                         (messagewin, prefs_common.mainview_width,
1455                          prefs_common.mainview_height
1456                          - prefs_common.summaryview_height
1457                          + DEFAULT_HEADERVIEW_HEIGHT);
1458                 gtk_container_set_border_width(GTK_CONTAINER(messagewin),
1459                                                BORDER_WIDTH);
1460                 gtk_signal_connect(GTK_OBJECT(messagewin), "delete_event",
1461                                    GTK_SIGNAL_FUNC(gtk_widget_hide_on_delete),
1462                                    NULL);
1463         }
1464
1465         switch (type) {
1466         case SEPARATE_NONE:
1467                 hpaned = gtk_hpaned_new();
1468                 gtk_widget_show(hpaned);
1469                 gtk_box_pack_start(GTK_BOX(vbox_body), hpaned, TRUE, TRUE, 0);
1470                 gtk_paned_add1(GTK_PANED(hpaned),
1471                                GTK_WIDGET_PTR(mainwin->folderview));
1472
1473                 vpaned = gtk_vpaned_new();
1474                 if (mainwin->summaryview->msg_is_toggled_on) {
1475                         gtk_paned_add2(GTK_PANED(hpaned), vpaned);
1476                         gtk_paned_add1(GTK_PANED(vpaned),
1477                                        GTK_WIDGET_PTR(mainwin->summaryview));
1478                 } else {
1479                         gtk_paned_add2(GTK_PANED(hpaned),
1480                                        GTK_WIDGET_PTR(mainwin->summaryview));
1481                         gtk_widget_ref(vpaned);
1482                 }
1483                 gtk_widget_set_usize(GTK_WIDGET_PTR(mainwin->summaryview),
1484                                      prefs_common.summaryview_width,
1485                                      prefs_common.summaryview_height);
1486                 gtk_paned_add2(GTK_PANED(vpaned),
1487                                GTK_WIDGET_PTR(mainwin->messageview));
1488                 gtk_widget_set_usize(GTK_WIDGET_PTR(mainwin->messageview),
1489                                      prefs_common.mainview_width, -1);
1490                 gtk_widget_set_usize(mainwin->window,
1491                                      prefs_common.folderview_width +
1492                                      prefs_common.mainview_width,
1493                                      prefs_common.mainwin_height);
1494                 gtk_widget_show_all(vpaned);
1495
1496                 mainwin->win.sep_none.hpaned = hpaned;
1497                 mainwin->win.sep_none.vpaned = vpaned;
1498                 break;
1499         case SEPARATE_FOLDER:
1500                 vpaned = gtk_vpaned_new();
1501                 if (mainwin->summaryview->msg_is_toggled_on) {
1502                         gtk_box_pack_start(GTK_BOX(vbox_body), vpaned,
1503                                            TRUE, TRUE, 0);
1504                         gtk_paned_add1(GTK_PANED(vpaned),
1505                                        GTK_WIDGET_PTR(mainwin->summaryview));
1506                 } else {
1507                         gtk_box_pack_start(GTK_BOX(vbox_body),
1508                                            GTK_WIDGET_PTR(mainwin->summaryview),
1509                                            TRUE, TRUE, 0);
1510                         gtk_widget_ref(vpaned);
1511                 }
1512                 gtk_paned_add2(GTK_PANED(vpaned),
1513                                GTK_WIDGET_PTR(mainwin->messageview));
1514                 gtk_widget_show_all(vpaned);
1515                 gtk_widget_set_usize(GTK_WIDGET_PTR(mainwin->summaryview),
1516                                      prefs_common.summaryview_width,
1517                                      prefs_common.summaryview_height);
1518                 gtk_widget_set_usize(GTK_WIDGET_PTR(mainwin->messageview),
1519                                      prefs_common.mainview_width, -1);
1520                 gtk_widget_set_usize(mainwin->window,
1521                                      prefs_common.mainview_width,
1522                                      prefs_common.mainview_height);
1523
1524                 gtk_container_add(GTK_CONTAINER(folderwin),
1525                                   GTK_WIDGET_PTR(mainwin->folderview));
1526
1527                 mainwin->win.sep_folder.folderwin = folderwin;
1528                 mainwin->win.sep_folder.vpaned    = vpaned;
1529
1530                 gtk_widget_show_all(folderwin);
1531                 break;
1532         case SEPARATE_MESSAGE:
1533                 hpaned = gtk_hpaned_new();
1534                 gtk_box_pack_start(GTK_BOX(vbox_body), hpaned, TRUE, TRUE, 0);
1535
1536                 gtk_paned_add1(GTK_PANED(hpaned),
1537                                GTK_WIDGET_PTR(mainwin->folderview));
1538                 gtk_paned_add2(GTK_PANED(hpaned),
1539                                GTK_WIDGET_PTR(mainwin->summaryview));
1540                 gtk_widget_set_usize(GTK_WIDGET_PTR(mainwin->summaryview),
1541                                      prefs_common.summaryview_width,
1542                                      prefs_common.summaryview_height);
1543                 gtk_widget_set_usize(mainwin->window,
1544                                      prefs_common.folderview_width +
1545                                      prefs_common.mainview_width,
1546                                      prefs_common.mainwin_height);
1547                 gtk_widget_show_all(hpaned);
1548                 gtk_container_add(GTK_CONTAINER(messagewin),
1549                                   GTK_WIDGET_PTR(mainwin->messageview));
1550
1551                 mainwin->win.sep_message.messagewin = messagewin;
1552                 mainwin->win.sep_message.hpaned     = hpaned;
1553
1554                 gtk_widget_show_all(messagewin);
1555                 break;
1556         case SEPARATE_BOTH:
1557                 gtk_box_pack_start(GTK_BOX(vbox_body),
1558                                    GTK_WIDGET_PTR(mainwin->summaryview),
1559                                    TRUE, TRUE, 0);
1560                 gtk_widget_set_usize(GTK_WIDGET_PTR(mainwin->summaryview),
1561                                      prefs_common.summaryview_width,
1562                                      prefs_common.summaryview_height);
1563                 gtk_widget_set_usize(mainwin->window,
1564                                      prefs_common.mainview_width,
1565                                      prefs_common.mainwin_height);
1566                 gtk_container_add(GTK_CONTAINER(folderwin),
1567                                   GTK_WIDGET_PTR(mainwin->folderview));
1568                 gtk_container_add(GTK_CONTAINER(messagewin),
1569                                   GTK_WIDGET_PTR(mainwin->messageview));
1570
1571                 mainwin->win.sep_both.folderwin = folderwin;
1572                 mainwin->win.sep_both.messagewin = messagewin;
1573
1574                 gtk_widget_show_all(folderwin);
1575                 gtk_widget_show_all(messagewin);
1576                 break;
1577         }
1578
1579         mainwin->type = type;
1580
1581         debug_print(_("done.\n"));
1582 }
1583
1584 #include "pixmaps/stock_mail_receive.xpm"
1585 #include "pixmaps/stock_mail_receive_all.xpm"
1586 #include "pixmaps/stock_mail_compose.xpm"
1587 #include "pixmaps/stock_news_compose.xpm"
1588 #include "pixmaps/stock_mail_reply.xpm"
1589 #include "pixmaps/stock_mail_reply_to_all.xpm"
1590 #include "pixmaps/stock_mail_reply_to_author.xpm"
1591 #include "pixmaps/stock_mail_forward.xpm"
1592 #include "pixmaps/stock_mail_send.xpm"
1593 #include "pixmaps/stock_preferences.xpm"
1594 #include "pixmaps/stock_properties.xpm"
1595 #include "pixmaps/stock_down_arrow.xpm"
1596 #include "pixmaps/stock_close.xpm"
1597 #include "pixmaps/stock_exec.xpm"
1598
1599 #define CREATE_TOOLBAR_ICON(xpm_d) \
1600 { \
1601         icon = gdk_pixmap_create_from_xpm_d(container->window, &mask, \
1602                                             &container->style->white, \
1603                                             xpm_d); \
1604         icon_wid = gtk_pixmap_new(icon, mask); \
1605 }
1606
1607 static void main_window_toolbar_create(MainWindow *mainwin,
1608                                        GtkWidget *container)
1609 {
1610         GtkWidget *toolbar;
1611         GdkPixmap *icon;
1612         GdkBitmap *mask;
1613         GtkWidget *icon_wid;
1614         GtkWidget *get_btn;
1615         GtkWidget *getall_btn;
1616         GtkWidget *compose_mail_btn;
1617         GtkWidget *compose_news_btn;
1618         GtkWidget *compose_mail_btn_plain;
1619         GtkWidget *compose_news_btn_plain;
1620         GtkWidget *reply_btn;
1621         GtkWidget *replyall_btn;
1622         GtkWidget *replysender_btn;
1623         GtkWidget *fwd_btn;
1624         GtkWidget *send_btn;
1625         /*
1626         GtkWidget *prefs_btn;
1627         GtkWidget *account_btn;
1628         */
1629         GtkWidget *next_btn;
1630         GtkWidget *delete_btn;
1631         GtkWidget *exec_btn;
1632         GtkWidget *compose_type_btn;
1633         GtkWidget *compose_type_arrow;
1634         GtkWidget *compose_box;
1635         GtkWidget *compose_label;
1636         GtkTooltips *tooltips;
1637
1638         toolbar = gtk_toolbar_new(GTK_ORIENTATION_HORIZONTAL,
1639                                   GTK_TOOLBAR_BOTH);
1640         gtk_container_add(GTK_CONTAINER(container), toolbar);
1641         gtk_container_set_border_width(GTK_CONTAINER(container), 2);
1642         gtk_toolbar_set_button_relief(GTK_TOOLBAR(toolbar), GTK_RELIEF_NONE);
1643         gtk_toolbar_set_space_style(GTK_TOOLBAR(toolbar),
1644                                     GTK_TOOLBAR_SPACE_LINE);
1645
1646         CREATE_TOOLBAR_ICON(stock_mail_receive_xpm);
1647         get_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1648                                           _("Get"),
1649                                           _("Get new mail from current account"),
1650                                           "Get",
1651                                           icon_wid, toolbar_inc_cb, mainwin);
1652         CREATE_TOOLBAR_ICON(stock_mail_receive_all_xpm);
1653         getall_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1654                                              _("Get all"),
1655                                              _("Get new mail from all accounts"),
1656                                              "Get all",
1657                                              icon_wid,
1658                                              toolbar_inc_all_cb,
1659                                              mainwin);
1660
1661         gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
1662
1663         CREATE_TOOLBAR_ICON(stock_mail_send_xpm);
1664         send_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1665                                            _("Send"),
1666                                            _("Send queued message(s)"),
1667                                            "Send",
1668                                            icon_wid,
1669                                            toolbar_send_cb,
1670                                            mainwin);
1671
1672         /* to implement Leandro's "combined" compose buttons, we create
1673          * two sets of compose buttons, one for normal (text + icon) 
1674          * toolbar, and one for both text-only and icon-only toolbar;
1675          * we switch between those sets. */
1676
1677         /* insert compose mail button widget */                                    
1678
1679         compose_mail_btn = gtk_button_new();
1680         gtk_widget_show(compose_mail_btn);
1681         tooltips = gtk_tooltips_new();
1682         gtk_tooltips_set_tip(tooltips, compose_mail_btn, 
1683                                                  _("Compose email message"),
1684                                                  _("email"));
1685         compose_box = gtk_vbox_new(0, 0);
1686         gtk_widget_show(compose_box);
1687         
1688         gtk_container_add(GTK_CONTAINER(compose_mail_btn), compose_box);
1689         CREATE_TOOLBAR_ICON(stock_mail_compose_xpm);
1690         gtk_box_pack_start(GTK_BOX(compose_box), icon_wid, FALSE, FALSE, 0);
1691
1692         compose_label = gtk_label_new(_("Email"));
1693         gtk_widget_show(compose_label);
1694         gtk_box_pack_start(GTK_BOX(compose_box), compose_label, FALSE, FALSE, 0);
1695         
1696         GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(compose_mail_btn), GTK_CAN_FOCUS);
1697         gtk_button_set_relief(GTK_BUTTON(compose_mail_btn), GTK_RELIEF_NONE);
1698         gtk_toolbar_append_widget(GTK_TOOLBAR(toolbar), compose_mail_btn,
1699                 NULL, NULL);
1700
1701         /* insert compose news button widget */
1702
1703         compose_news_btn = gtk_button_new();
1704         gtk_widget_show(compose_news_btn);
1705         tooltips = gtk_tooltips_new();
1706         gtk_tooltips_set_tip(tooltips, compose_news_btn,
1707                                                  _("Compose news article"),
1708                                                  _("news"));
1709         compose_box = gtk_vbox_new(0, 0);
1710         gtk_widget_show(compose_box);
1711         
1712         gtk_container_add(GTK_CONTAINER(compose_news_btn), compose_box);
1713         CREATE_TOOLBAR_ICON(stock_news_compose_xpm);
1714         gtk_box_pack_start(GTK_BOX(compose_box), icon_wid, FALSE, FALSE, 0);
1715
1716         compose_label = gtk_label_new(_("News"));
1717         gtk_widget_show(compose_label);
1718         gtk_box_pack_start(GTK_BOX(compose_box), compose_label, FALSE, FALSE, 0);
1719         
1720         GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(compose_news_btn), GTK_CAN_FOCUS);
1721         gtk_button_set_relief(GTK_BUTTON(compose_news_btn), GTK_RELIEF_NONE);
1722         gtk_toolbar_append_widget(GTK_TOOLBAR(toolbar), compose_news_btn,
1723                 NULL, NULL);
1724         
1725         /* insert compose btn plain */
1726         
1727         CREATE_TOOLBAR_ICON(stock_mail_compose_xpm);
1728         compose_mail_btn_plain = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1729                                               _("Email"),
1730                                               _("Compose an email message"),
1731                                               "New",
1732                                               icon_wid,
1733                                               toolbar_compose_mail_cb,
1734                                               mainwin);
1735
1736         /* insert compose btn plain */
1737
1738         CREATE_TOOLBAR_ICON(stock_news_compose_xpm);
1739         compose_news_btn_plain = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1740                                               _("News"),
1741                                               _("Compose a news message"),
1742                                               "New",
1743                                               icon_wid,
1744                                               toolbar_compose_news_cb,
1745                                               mainwin);
1746
1747         /* insert compose button type widget */
1748         
1749         compose_type_btn = gtk_button_new();
1750         gtk_widget_show(compose_type_btn);
1751         
1752         compose_type_arrow = gtk_arrow_new(GTK_ARROW_DOWN, GTK_SHADOW_OUT);
1753         gtk_widget_show(compose_type_arrow);
1754         
1755         gtk_container_add(GTK_CONTAINER(compose_type_btn), compose_type_arrow);
1756
1757         GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(compose_type_btn), GTK_CAN_FOCUS);
1758         gtk_button_set_relief(GTK_BUTTON(compose_type_btn), GTK_RELIEF_NONE);
1759
1760         gtk_toolbar_append_widget(GTK_TOOLBAR(toolbar), compose_type_btn,
1761                 NULL, NULL);
1762
1763         gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
1764         
1765         CREATE_TOOLBAR_ICON(stock_mail_reply_xpm);
1766         reply_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1767                                             _("Reply"),
1768                                             _("Reply to the message"),
1769                                             "Reply",
1770                                             icon_wid,
1771                                             toolbar_reply_cb,
1772                                             mainwin);
1773         CREATE_TOOLBAR_ICON(stock_mail_reply_to_all_xpm);
1774         replyall_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1775                                                _("All"),
1776                                                _("Reply to all"),
1777                                                "Reply to all",
1778                                                icon_wid,
1779                                                toolbar_reply_to_all_cb,
1780                                                mainwin);
1781         CREATE_TOOLBAR_ICON(stock_mail_reply_to_author_xpm);
1782         replysender_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1783                                                   _("Sender"),
1784                                                   _("Reply to sender"),
1785                                                   "Reply to sender",
1786                                                   icon_wid,
1787                                                   toolbar_reply_to_sender_cb,
1788                                                   mainwin);
1789         CREATE_TOOLBAR_ICON(stock_mail_forward_xpm);
1790         fwd_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1791                                           _("Forward"),
1792                                           _("Forward the message"),
1793                                           "Fwd",
1794                                           icon_wid,
1795                                           toolbar_forward_cb,
1796                                           mainwin);
1797
1798         gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
1799
1800         CREATE_TOOLBAR_ICON(stock_close_xpm);
1801         delete_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1802                                           _("Delete"),
1803                                           _("Delete the message"),
1804                                           "Delete",
1805                                           icon_wid,
1806                                           toolbar_delete_cb,
1807                                           mainwin);
1808
1809         CREATE_TOOLBAR_ICON(stock_exec_xpm);
1810         exec_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1811                                            _("Execute"),
1812                                            _("Execute marked process"),
1813                                            "Execute",
1814                                            icon_wid,
1815                                            toolbar_exec_cb,
1816                                            mainwin);
1817
1818         CREATE_TOOLBAR_ICON(stock_down_arrow_xpm);
1819         next_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1820                                            _("Next"),
1821                                            _("Next unread message"),
1822                                            "Next unread",
1823                                            icon_wid,
1824                                            toolbar_next_unread_cb,
1825                                            mainwin);
1826
1827         /*
1828         gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
1829
1830         CREATE_TOOLBAR_ICON(stock_preferences_xpm);
1831         prefs_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1832                                             _("Prefs"),
1833                                             _("Common preference"),
1834                                             "Prefs",
1835                                             icon_wid,
1836                                             toolbar_prefs_cb,
1837                                             mainwin);
1838         CREATE_TOOLBAR_ICON(stock_properties_xpm);
1839         account_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1840                                               _("Account"),
1841                                               _("Account setting"),
1842                                               "Account",
1843                                               icon_wid,
1844                                               toolbar_account_cb,
1845                                               mainwin);
1846         gtk_signal_connect(GTK_OBJECT(account_btn), "button_press_event",
1847                            GTK_SIGNAL_FUNC(toolbar_account_button_pressed),
1848                            mainwin);
1849         */
1850
1851         gtk_signal_connect(GTK_OBJECT(compose_type_btn), "clicked",
1852                 GTK_SIGNAL_FUNC(toolbar_popup_compose_type_cb),
1853                 mainwin);
1854
1855         gtk_signal_connect(GTK_OBJECT(compose_mail_btn), "clicked",
1856                 GTK_SIGNAL_FUNC(toolbar_compose_mail_cb),
1857                 mainwin);
1858
1859         gtk_signal_connect(GTK_OBJECT(compose_news_btn), "clicked",
1860                 GTK_SIGNAL_FUNC(toolbar_compose_news_cb),
1861                 mainwin);
1862
1863         mainwin->toolbar         = toolbar;
1864         mainwin->get_btn         = get_btn;
1865         mainwin->getall_btn      = getall_btn;
1866         mainwin->compose_mail_btn = compose_mail_btn;
1867         mainwin->compose_news_btn = compose_news_btn;
1868         mainwin->compose_mail_btn_plain = compose_mail_btn_plain;
1869         mainwin->compose_news_btn_plain = compose_news_btn_plain;
1870         mainwin->reply_btn       = reply_btn;
1871         mainwin->replyall_btn    = replyall_btn;
1872         mainwin->replysender_btn = replysender_btn;
1873         mainwin->fwd_btn         = fwd_btn;
1874         mainwin->send_btn        = send_btn;
1875         /*
1876         mainwin->prefs_btn       = prefs_btn;
1877         mainwin->account_btn     = account_btn;
1878         */
1879         mainwin->next_btn        = next_btn;
1880         mainwin->delete_btn      = delete_btn;
1881         mainwin->exec_btn        = exec_btn;
1882
1883         gtk_widget_show_all(toolbar);
1884
1885         /* activate Leandro menu system */
1886         activate_compose_button(mainwin, 
1887                                 prefs_common.toolbar_style,
1888                                 mainwin->compose_btn_type);
1889 }
1890
1891 /* callback functions */
1892
1893 static void toolbar_popup_compose_type_cb       (GtkWidget      *widget,
1894                                  gpointer data)
1895 {
1896         MainWindow *mainwindow = (MainWindow *) data;
1897         GtkWidget *compose_menu, *compose_item;
1898
1899         g_return_if_fail(mainwindow != NULL);
1900         
1901         compose_menu = gtk_menu_new();
1902         
1903         compose_item = gtk_menu_item_new_with_label(_("Email message"));
1904         gtk_widget_show(compose_item);
1905         gtk_menu_append(GTK_MENU(compose_menu), compose_item);
1906         gtk_signal_connect(GTK_OBJECT(compose_item), "activate",
1907                 GTK_SIGNAL_FUNC(toolbar_popup_compose_type_set),
1908                 mainwindow);
1909         gtk_object_set_data(GTK_OBJECT(compose_item), "entry", GINT_TO_POINTER(COMPOSEBUTTON_MAIL));            
1910         
1911         compose_item = gtk_menu_item_new_with_label(_("News article"));
1912         gtk_widget_show(compose_item);
1913         gtk_menu_append(GTK_MENU(compose_menu), compose_item);
1914         gtk_signal_connect(GTK_OBJECT(compose_item), "activate",
1915                 GTK_SIGNAL_FUNC(toolbar_popup_compose_type_set),
1916                 mainwindow);
1917         gtk_object_set_data(GTK_OBJECT(compose_item), "entry", GINT_TO_POINTER(COMPOSEBUTTON_NEWS));            
1918                 
1919         gtk_menu_popup(GTK_MENU(compose_menu), NULL, NULL, NULL,
1920                 NULL, 1, 0);
1921 }
1922
1923 static void toolbar_popup_compose_type_set(GtkWidget *widget, gpointer data)
1924 {
1925         ComposeButtonType compose_type = GPOINTER_TO_INT( gtk_object_get_data(GTK_OBJECT(widget), "entry") );
1926         MainWindow *mainwindow = (MainWindow *) data;
1927
1928         mainwindow->compose_btn_type = compose_type;
1929
1930         activate_compose_button(mainwindow, prefs_common.toolbar_style, mainwindow->compose_btn_type);
1931 }       
1932
1933 static void toolbar_inc_cb      (GtkWidget      *widget,
1934                                  gpointer        data)
1935 {
1936         MainWindow *mainwin = (MainWindow *)data;
1937
1938         inc_mail_cb(mainwin, 0, NULL);
1939 }
1940
1941 static void toolbar_inc_all_cb  (GtkWidget      *widget,
1942                                  gpointer        data)
1943 {
1944         MainWindow *mainwin = (MainWindow *)data;
1945
1946         inc_all_account_mail_cb(mainwin, 0, NULL);
1947 }
1948
1949 static void toolbar_send_cb     (GtkWidget      *widget,
1950                                  gpointer        data)
1951 {
1952         MainWindow *mainwin = (MainWindow *)data;
1953
1954         send_queue_cb(mainwin, 0, NULL);
1955 }
1956
1957 static void toolbar_compose_cb  (GtkWidget      *widget,
1958                                  gpointer        data)
1959 {
1960         MainWindow *mainwin = (MainWindow *)data;
1961
1962         if (mainwin->compose_btn_type == COMPOSEBUTTON_MAIL)
1963                 compose_cb(mainwin, 0, NULL);
1964         else
1965                 compose_news_cb(mainwin, 0, NULL);
1966 }
1967
1968 static void toolbar_compose_news_cb     (GtkWidget      *widget,
1969                                  gpointer        data)
1970 {
1971         MainWindow *mainwin = (MainWindow *)data;
1972
1973         compose_news_cb(mainwin, 0, NULL);
1974 }
1975
1976 static void toolbar_compose_mail_cb     (GtkWidget      *widget,
1977                                  gpointer        data)
1978 {
1979         MainWindow *mainwin = (MainWindow *)data;
1980
1981         compose_mail_cb(mainwin, 0, NULL);
1982 }
1983
1984 static void toolbar_reply_cb    (GtkWidget      *widget,
1985                                  gpointer        data)
1986 {
1987         MainWindow *mainwin = (MainWindow *)data;
1988
1989         reply_cb(mainwin, COMPOSE_REPLY, NULL);
1990 }
1991
1992 static void toolbar_reply_to_all_cb     (GtkWidget      *widget,
1993                                          gpointer        data)
1994 {
1995         MainWindow *mainwin = (MainWindow *)data;
1996
1997         reply_cb(mainwin, COMPOSE_REPLY_TO_ALL, NULL);
1998 }
1999
2000 static void toolbar_reply_to_sender_cb  (GtkWidget      *widget,
2001                                          gpointer        data)
2002 {
2003         MainWindow *mainwin = (MainWindow *)data;
2004
2005         reply_cb(mainwin, COMPOSE_REPLY_TO_SENDER, NULL);
2006 }
2007
2008 static void toolbar_forward_cb  (GtkWidget      *widget,
2009                                  gpointer        data)
2010 {
2011         MainWindow *mainwin = (MainWindow *)data;
2012
2013         if (prefs_common.forward_as_attachment)
2014                 reply_cb(mainwin, COMPOSE_FORWARD_AS_ATTACH, NULL);
2015         else
2016                 reply_cb(mainwin, COMPOSE_FORWARD, NULL);
2017 }
2018
2019 static void toolbar_delete_cb   (GtkWidget      *widget,
2020                                  gpointer        data)
2021 {
2022         MainWindow *mainwin = (MainWindow *)data;
2023
2024         summary_delete(mainwin->summaryview);
2025 }
2026
2027 static void toolbar_exec_cb     (GtkWidget      *widget,
2028                                  gpointer        data)
2029 {
2030         MainWindow *mainwin = (MainWindow *)data;
2031
2032         summary_execute(mainwin->summaryview);
2033 }
2034
2035 static void toolbar_next_unread_cb      (GtkWidget      *widget,
2036                                          gpointer        data)
2037 {
2038         MainWindow *mainwin = (MainWindow *)data;
2039
2040         next_unread_cb(mainwin, 0, NULL);
2041 }
2042
2043 static void toolbar_prefs_cb    (GtkWidget      *widget,
2044                                  gpointer        data)
2045 {
2046         prefs_common_open();
2047 }
2048
2049 static void toolbar_account_cb  (GtkWidget      *widget,
2050                                  gpointer        data)
2051 {
2052         MainWindow *mainwin = (MainWindow *)data;
2053
2054         prefs_account_open_cb(mainwin, 0, NULL);
2055 }
2056
2057 static void toolbar_account_button_pressed(GtkWidget *widget,
2058                                            GdkEventButton *event,
2059                                            gpointer data)
2060 {
2061         MainWindow *mainwin = (MainWindow *)data;
2062
2063         if (!event) return;
2064         if (event->button != 3) return;
2065
2066         gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
2067         gtk_object_set_data(GTK_OBJECT(mainwin->ac_menu), "menu_button",
2068                             widget);
2069
2070         gtk_menu_popup(GTK_MENU(mainwin->ac_menu), NULL, NULL,
2071                        menu_button_position, widget,
2072                        event->button, event->time);
2073 }
2074
2075 static void ac_label_button_pressed(GtkWidget *widget, GdkEventButton *event,
2076                                     gpointer data)
2077 {
2078         MainWindow *mainwin = (MainWindow *)data;
2079
2080         if (!event) return;
2081
2082         gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
2083         gtk_object_set_data(GTK_OBJECT(mainwin->ac_menu), "menu_button",
2084                             widget);
2085
2086         gtk_menu_popup(GTK_MENU(mainwin->ac_menu), NULL, NULL,
2087                        menu_button_position, widget,
2088                        event->button, event->time);
2089 }
2090
2091 static void ac_menu_popup_closed(GtkMenuShell *menu_shell, gpointer data)
2092 {
2093         MainWindow *mainwin = (MainWindow *)data;
2094         GtkWidget *button;
2095
2096         button = gtk_object_get_data(GTK_OBJECT(menu_shell), "menu_button");
2097         if (!button) return;
2098         gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE);
2099         gtk_object_remove_data(GTK_OBJECT(mainwin->ac_menu), "menu_button");
2100         manage_window_focus_in(mainwin->window, NULL, NULL);
2101 }
2102
2103 static gint main_window_close_cb(GtkWidget *widget, GdkEventAny *event,
2104                                  gpointer data)
2105 {
2106         MainWindow *mainwin = (MainWindow *)data;
2107
2108         if (mainwin->lock_count == 0)
2109                 app_exit_cb(data, 0, widget);
2110
2111         return TRUE;
2112 }
2113
2114 static void add_mailbox_cb(MainWindow *mainwin, guint action,
2115                            GtkWidget *widget)
2116 {
2117         main_window_add_mailbox(mainwin);
2118 }
2119
2120 static void add_mbox_cb(MainWindow *mainwin, guint action,
2121                         GtkWidget *widget)
2122 {
2123         main_window_add_mbox(mainwin);
2124 }
2125
2126 static void update_folderview_cb(MainWindow *mainwin, guint action,
2127                                  GtkWidget *widget)
2128 {
2129         summary_show(mainwin->summaryview, NULL, FALSE);
2130         folderview_update_all();
2131 }
2132
2133 static void new_folder_cb(MainWindow *mainwin, guint action,
2134                           GtkWidget *widget)
2135 {
2136         folderview_new_folder(mainwin->folderview);
2137 }
2138
2139 static void rename_folder_cb(MainWindow *mainwin, guint action,
2140                              GtkWidget *widget)
2141 {
2142         folderview_rename_folder(mainwin->folderview);
2143 }
2144
2145 static void delete_folder_cb(MainWindow *mainwin, guint action,
2146                              GtkWidget *widget)
2147 {
2148         folderview_delete_folder(mainwin->folderview);
2149 }
2150
2151 static void import_mbox_cb(MainWindow *mainwin, guint action,
2152                            GtkWidget *widget)
2153 {
2154         import_mbox(mainwin->summaryview->folder_item);
2155 }
2156
2157 static void export_mbox_cb(MainWindow *mainwin, guint action,
2158                            GtkWidget *widget)
2159 {
2160         export_mbox(mainwin->summaryview->folder_item);
2161 }
2162
2163 static void empty_trash_cb(MainWindow *mainwin, guint action,
2164                            GtkWidget *widget)
2165 {
2166         main_window_empty_trash(mainwin, TRUE);
2167 }
2168
2169 static void save_as_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2170 {
2171         summary_save_as(mainwin->summaryview);
2172 }
2173
2174 static void print_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2175 {
2176         summary_print(mainwin->summaryview);
2177 }
2178
2179 static void app_exit_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2180 {
2181         if (prefs_common.confirm_on_exit) {
2182                 if (alertpanel(_("Exit"), _("Exit this program?"),
2183                                _("OK"), _("Cancel"), NULL) != G_ALERTDEFAULT)
2184                         return;
2185                 manage_window_focus_in(mainwin->window, NULL, NULL);
2186         }
2187
2188         app_will_exit(widget, mainwin);
2189 }
2190
2191 static void search_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2192 {
2193         if (action == 1)
2194                 summary_search(mainwin->summaryview);
2195         else
2196                 message_search(mainwin->messageview);
2197 }
2198
2199 static void toggle_folder_cb(MainWindow *mainwin, guint action,
2200                              GtkWidget *widget)
2201 {
2202         switch (mainwin->type) {
2203         case SEPARATE_NONE:
2204         case SEPARATE_MESSAGE:
2205                 break;
2206         case SEPARATE_FOLDER:
2207                 if (GTK_CHECK_MENU_ITEM(widget)->active)
2208                         gtk_widget_show(mainwin->win.sep_folder.folderwin);
2209                 else
2210                         gtk_widget_hide(mainwin->win.sep_folder.folderwin);
2211                 break;
2212         case SEPARATE_BOTH:
2213                 if (GTK_CHECK_MENU_ITEM(widget)->active)
2214                         gtk_widget_show(mainwin->win.sep_both.folderwin);
2215                 else
2216                         gtk_widget_hide(mainwin->win.sep_both.folderwin);
2217                 break;
2218         }
2219 }
2220
2221 static void toggle_message_cb(MainWindow *mainwin, guint action,
2222                               GtkWidget *widget)
2223 {
2224         switch (mainwin->type) {
2225         case SEPARATE_NONE:
2226         case SEPARATE_FOLDER:
2227                 break;
2228         case SEPARATE_MESSAGE:
2229                 if (GTK_CHECK_MENU_ITEM(widget)->active)
2230                         gtk_widget_show(mainwin->win.sep_message.messagewin);
2231                 else
2232                         gtk_widget_hide(mainwin->win.sep_message.messagewin);
2233                 break;
2234         case SEPARATE_BOTH:
2235                 if (GTK_CHECK_MENU_ITEM(widget)->active)
2236                         gtk_widget_show(mainwin->win.sep_both.messagewin);
2237                 else
2238                         gtk_widget_hide(mainwin->win.sep_both.messagewin);
2239                 break;
2240         }
2241 }
2242
2243 static void toggle_toolbar_cb(MainWindow *mainwin, guint action,
2244                               GtkWidget *widget)
2245 {
2246         activate_compose_button(mainwin, (ToolbarStyle)action, 
2247                         mainwin->compose_btn_type);
2248         
2249         switch ((ToolbarStyle)action) {
2250         case TOOLBAR_NONE:
2251                 gtk_widget_hide(mainwin->handlebox);
2252         case TOOLBAR_ICON:
2253                 gtk_toolbar_set_style(GTK_TOOLBAR(mainwin->toolbar),
2254                                       GTK_TOOLBAR_ICONS);
2255                 break;
2256         case TOOLBAR_TEXT:
2257                 gtk_toolbar_set_style(GTK_TOOLBAR(mainwin->toolbar),
2258                                       GTK_TOOLBAR_TEXT);
2259                 break;
2260         case TOOLBAR_BOTH:
2261                 gtk_toolbar_set_style(GTK_TOOLBAR(mainwin->toolbar),
2262                                       GTK_TOOLBAR_BOTH);
2263                 break;
2264         }
2265
2266         if (action != TOOLBAR_NONE) {
2267                 gtk_widget_show(mainwin->handlebox);
2268                 gtk_widget_queue_resize(mainwin->handlebox);
2269         }
2270
2271         mainwin->toolbar_style = (ToolbarStyle)action;
2272         prefs_common.toolbar_style = (ToolbarStyle)action;
2273 }
2274
2275 static void toggle_statusbar_cb(MainWindow *mainwin, guint action,
2276                                 GtkWidget *widget)
2277 {
2278         if (GTK_CHECK_MENU_ITEM(widget)->active) {
2279                 gtk_widget_show(mainwin->hbox_stat);
2280                 prefs_common.show_statusbar = TRUE;
2281         } else {
2282                 gtk_widget_hide(mainwin->hbox_stat);
2283                 prefs_common.show_statusbar = FALSE;
2284         }
2285 }
2286
2287 static void separate_widget_cb(GtkCheckMenuItem *checkitem, guint action, GtkWidget *widget)
2288
2289 {
2290         MainWindow *mainwin;
2291         SeparateType type;
2292
2293         mainwin = (MainWindow *) gtk_object_get_data(GTK_OBJECT(checkitem), "mainwindow");
2294         g_return_if_fail(mainwin != NULL);
2295
2296         type = mainwin->type ^ action;
2297         main_window_separation_change(mainwin, type);
2298
2299         prefs_common.sep_folder = (type & SEPARATE_FOLDER)  != 0;
2300         prefs_common.sep_msg    = (type & SEPARATE_MESSAGE) != 0;
2301 }
2302
2303 static void addressbook_open_cb(MainWindow *mainwin, guint action,
2304                                 GtkWidget *widget)
2305 {
2306         addressbook_open(NULL);
2307 }
2308
2309 static void log_window_show_cb(MainWindow *mainwin, guint action,
2310                                GtkWidget *widget)
2311 {
2312         log_window_show(mainwin->logwin);
2313 }
2314
2315 static void inc_mail_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2316 {
2317         inc_mail(mainwin);
2318 }
2319
2320 static void inc_all_account_mail_cb(MainWindow *mainwin, guint action,
2321                                     GtkWidget *widget)
2322 {
2323         inc_all_account_mail(mainwin);
2324 }
2325
2326 static void send_queue_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2327 {
2328         GList *list;
2329
2330         if (procmsg_send_queue() < 0)
2331                 alertpanel_error(_("Some errors occurred while sending queued messages."));
2332
2333         statusbar_pop_all();
2334
2335         for (list = folder_get_list(); list != NULL; list = list->next) {
2336                 Folder *folder;
2337
2338                 folder = list->data;
2339                 if (folder->queue) {
2340                         folder_item_scan(folder->queue);
2341                         folderview_update_item(folder->queue, TRUE);
2342                 }
2343         }
2344 }
2345
2346 static void compose_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2347 {
2348         if (mainwin->summaryview->folder_item) {
2349                 if (mainwin->summaryview->folder_item->folder->account != NULL
2350                     && mainwin->summaryview->folder_item->folder->account->protocol == A_NNTP)
2351                         compose_new_with_recipient(mainwin->summaryview->folder_item->folder->account, mainwin->summaryview->folder_item->path);
2352                 else
2353                         compose_new_with_folderitem(mainwin->summaryview->folder_item->folder->account, mainwin->summaryview->folder_item);
2354         }
2355         else
2356                 compose_new(NULL);
2357 }
2358
2359 static void compose_mail_cb(MainWindow *mainwin, guint action,
2360                             GtkWidget *widget)
2361 {
2362         PrefsAccount * ac;
2363         GList * list;
2364         GList * cur;
2365
2366         if (mainwin->summaryview->folder_item) {
2367                 ac = mainwin->summaryview->folder_item->folder->account;
2368                 if (ac && ac->protocol != A_NNTP) {
2369                         compose_new_with_folderitem(ac, mainwin->summaryview->folder_item);
2370                         return;
2371                 }
2372         }
2373
2374         if(cur_account && (cur_account->protocol != A_NNTP)) {
2375                 compose_new_with_folderitem(cur_account, mainwin->summaryview->folder_item);
2376                 return;
2377         }
2378
2379         list = account_get_list();
2380         for(cur = list ; cur != NULL ; cur = g_list_next(cur)) {
2381                 ac = (PrefsAccount *) cur->data;
2382                 if (ac->protocol != A_NNTP) {
2383                         compose_new_with_folderitem(ac, mainwin->summaryview->folder_item);
2384                         return;
2385                 }
2386         }
2387 }
2388
2389 static void compose_news_cb(MainWindow *mainwin, guint action,
2390                             GtkWidget *widget)
2391 {
2392         PrefsAccount * ac = NULL;
2393         GList * list;
2394         GList * cur;
2395
2396         if (mainwin->summaryview->folder_item) {
2397                 ac = mainwin->summaryview->folder_item->folder->account;
2398                 if (ac && ac->protocol == A_NNTP) {
2399                         compose_new_with_recipient
2400                                 (ac, mainwin->summaryview->folder_item->path);
2401                         return;
2402                 }
2403         }
2404
2405         list = account_get_list();
2406         for(cur = list ; cur != NULL ; cur = g_list_next(cur)) {
2407                 ac = (PrefsAccount *) cur->data;
2408                 if (ac->protocol == A_NNTP) {
2409                         compose_new(ac);
2410                         return;
2411                 }
2412         }
2413 }
2414
2415 static void reply_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2416 {
2417         GList  *sel = GTK_CLIST(mainwin->summaryview->ctree)->selection;
2418         MsgInfo *msginfo;
2419
2420         msginfo = gtk_ctree_node_get_row_data
2421                 (GTK_CTREE(mainwin->summaryview->ctree),
2422                  mainwin->summaryview->selected);
2423
2424         if (!msginfo) return;
2425
2426         switch (action) {
2427         case COMPOSE_REPLY:
2428                 compose_reply(msginfo, prefs_common.reply_with_quote,
2429                               FALSE, FALSE);
2430                 break;
2431         case COMPOSE_REPLY_TO_SENDER:
2432                 compose_reply(msginfo, prefs_common.reply_with_quote,
2433                               FALSE, TRUE);
2434                 break;
2435         case COMPOSE_FOLLOWUP_AND_REPLY_TO:
2436                 compose_followup_and_reply_to(msginfo,
2437                                               prefs_common.reply_with_quote,
2438                                               FALSE, TRUE);
2439                 break;
2440         case COMPOSE_REPLY_TO_ALL:
2441                 compose_reply(msginfo, prefs_common.reply_with_quote,
2442                               TRUE, TRUE);
2443                 break;
2444         case COMPOSE_FORWARD:
2445                 if (!sel->next) {
2446                         compose_forward(NULL, msginfo, FALSE);
2447                         break;
2448                 }
2449                 /* if (sel->next) FALL_THROUGH */
2450         case COMPOSE_FORWARD_AS_ATTACH:
2451                 {
2452                         GSList *msginfo_list = NULL;
2453                         for ( ; sel != NULL; sel = sel->next)
2454                                 msginfo_list = g_slist_append(msginfo_list, 
2455                                         gtk_ctree_node_get_row_data(GTK_CTREE(mainwin->summaryview->ctree),
2456                                                 GTK_CTREE_NODE(sel->data)));
2457                         compose_forward_multiple(NULL, msginfo_list);
2458                         g_slist_free(msginfo_list);
2459                 }                       
2460                 break;
2461         default:
2462                 g_warning("reply_cb(): invalid action type: %d\n", action);
2463         }
2464
2465         summary_set_marks_selected(mainwin->summaryview);
2466 }
2467
2468 static void move_to_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2469 {
2470         summary_move_to(mainwin->summaryview);
2471 }
2472
2473 static void copy_to_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2474 {
2475         summary_copy_to(mainwin->summaryview);
2476 }
2477
2478 static void delete_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2479 {
2480         summary_delete(mainwin->summaryview);
2481 }
2482
2483 static void open_msg_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2484 {
2485         summary_open_msg(mainwin->summaryview);
2486 }
2487
2488 static void view_source_cb(MainWindow *mainwin, guint action,
2489                            GtkWidget *widget)
2490 {
2491         summary_view_source(mainwin->summaryview);
2492 }
2493
2494 static void reedit_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2495 {
2496         summary_reedit(mainwin->summaryview);
2497 }
2498
2499 static void mark_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2500 {
2501         summary_mark(mainwin->summaryview);
2502 }
2503
2504 static void unmark_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2505 {
2506         summary_unmark(mainwin->summaryview);
2507 }
2508
2509 static void mark_as_unread_cb(MainWindow *mainwin, guint action,
2510                               GtkWidget *widget)
2511 {
2512         summary_mark_as_unread(mainwin->summaryview);
2513 }
2514
2515 static void mark_as_read_cb(MainWindow *mainwin, guint action,
2516                             GtkWidget *widget)
2517 {
2518         summary_mark_as_read(mainwin->summaryview);
2519 }
2520
2521 static void mark_all_read_cb(MainWindow *mainwin, guint action,
2522                              GtkWidget *widget)
2523 {
2524         summary_mark_all_read(mainwin->summaryview);
2525 }
2526
2527 static void add_address_cb(MainWindow *mainwin, guint action,
2528                            GtkWidget *widget)
2529 {
2530         summary_add_address(mainwin->summaryview);
2531 }
2532
2533 static void set_charset_cb(MainWindow *mainwin, guint action,
2534                            GtkWidget *widget)
2535 {
2536         const gchar *str;
2537
2538         str = conv_get_charset_str((CharSet)action);
2539         g_free(prefs_common.force_charset);
2540         prefs_common.force_charset = str ? g_strdup(str) : NULL;
2541
2542         summary_redisplay_msg(mainwin->summaryview);
2543
2544         debug_print(_("forced charset: %s\n"), str ? str : "Auto-Detect");
2545 }
2546
2547 static void thread_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2548 {
2549         GtkItemFactory *ifactory;
2550
2551         if (!mainwin->summaryview->folder_item) return;
2552
2553         ifactory = gtk_item_factory_from_widget(widget);
2554
2555         if (0 == action) {
2556                 summary_thread_build(mainwin->summaryview);
2557                 mainwin->summaryview->folder_item->threaded = TRUE;
2558                 menu_set_sensitive(ifactory, "/Summary/Thread view",   FALSE);
2559                 menu_set_sensitive(ifactory, "/Summary/Unthread view", TRUE);
2560         } else {
2561                 summary_unthread(mainwin->summaryview);
2562                 mainwin->summaryview->folder_item->threaded = FALSE;
2563                 menu_set_sensitive(ifactory, "/Summary/Thread view",   TRUE);
2564                 menu_set_sensitive(ifactory, "/Summary/Unthread view", FALSE);
2565         }
2566 }
2567
2568 static void set_display_item_cb(MainWindow *mainwin, guint action,
2569                                 GtkWidget *widget)
2570 {
2571         prefs_summary_display_item_set();
2572 }
2573
2574 static void sort_summary_cb(MainWindow *mainwin, guint action,
2575                             GtkWidget *widget)
2576 {
2577         summary_sort(mainwin->summaryview, (SummarySortType)action);
2578 }
2579
2580 static void attract_by_subject_cb(MainWindow *mainwin, guint action,
2581                                   GtkWidget *widget)
2582 {
2583         summary_attract_by_subject(mainwin->summaryview);
2584 }
2585
2586 static void delete_duplicated_cb(MainWindow *mainwin, guint action,
2587                                  GtkWidget *widget)
2588 {
2589         summary_delete_duplicated(mainwin->summaryview);
2590 }
2591
2592 static void filter_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2593 {
2594         summary_filter(mainwin->summaryview);
2595 }
2596
2597 static void execute_summary_cb(MainWindow *mainwin, guint action,
2598                                GtkWidget *widget)
2599 {
2600         summary_execute(mainwin->summaryview);
2601 }
2602
2603 static void update_summary_cb(MainWindow *mainwin, guint action,
2604                               GtkWidget *widget)
2605 {
2606         FolderItem *fitem;
2607         FolderView *folderview = mainwin->folderview;
2608
2609         if (!mainwin->summaryview->folder_item) return;
2610         if (!folderview->opened) return;
2611
2612         folder_update_op_count();
2613
2614         fitem = gtk_ctree_node_get_row_data(GTK_CTREE(folderview->ctree),
2615                                             folderview->opened);
2616         if (!fitem) return;
2617
2618         summary_show(mainwin->summaryview, fitem, TRUE);
2619 }
2620
2621 static void prev_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2622 {
2623         summary_step(mainwin->summaryview, GTK_SCROLL_STEP_BACKWARD);
2624 }
2625
2626 static void next_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2627 {
2628         summary_step(mainwin->summaryview, GTK_SCROLL_STEP_FORWARD);
2629 }
2630
2631 static void prev_unread_cb(MainWindow *mainwin, guint action,
2632                            GtkWidget *widget)
2633 {
2634         summary_select_prev_unread(mainwin->summaryview);
2635 }
2636
2637 static void next_unread_cb(MainWindow *mainwin, guint action,
2638                            GtkWidget *widget)
2639 {
2640         summary_select_next_unread(mainwin->summaryview);
2641 }
2642
2643 static void prev_marked_cb(MainWindow *mainwin, guint action,
2644                            GtkWidget *widget)
2645 {
2646         summary_select_prev_marked(mainwin->summaryview);
2647 }
2648
2649 static void next_marked_cb(MainWindow *mainwin, guint action,
2650                            GtkWidget *widget)
2651 {
2652         summary_select_next_marked(mainwin->summaryview);
2653 }
2654
2655 static void prev_labeled_cb(MainWindow *mainwin, guint action,
2656                             GtkWidget *widget)
2657 {
2658         summary_select_prev_labeled(mainwin->summaryview);
2659 }
2660
2661 static void next_labeled_cb(MainWindow *mainwin, guint action,
2662                             GtkWidget *widget)
2663 {
2664         summary_select_next_labeled(mainwin->summaryview);
2665 }
2666
2667 static void goto_folder_cb(MainWindow *mainwin, guint action,
2668                            GtkWidget *widget)
2669 {
2670         FolderItem *to_folder;
2671
2672         to_folder = foldersel_folder_sel(NULL, NULL);
2673
2674         if (to_folder)
2675                 folderview_select(mainwin->folderview, to_folder);
2676 }
2677
2678 static void copy_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2679 {
2680         messageview_copy_clipboard(mainwin->messageview);
2681 }
2682
2683 static void allsel_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2684 {
2685         if (GTK_WIDGET_HAS_FOCUS(mainwin->summaryview->ctree))
2686                 summary_select_all(mainwin->summaryview);
2687         else if (mainwin->summaryview->msg_is_toggled_on &&
2688                  GTK_WIDGET_HAS_FOCUS(mainwin->messageview->textview->text))
2689                 messageview_select_all(mainwin->messageview);
2690 }
2691
2692 static void prefs_common_open_cb(MainWindow *mainwin, guint action,
2693                                  GtkWidget *widget)
2694 {
2695         prefs_common_open();
2696 }
2697
2698 static void prefs_filter_open_cb(MainWindow *mainwin, guint action,
2699                                  GtkWidget *widget)
2700 {
2701         prefs_filter_open();
2702 }
2703
2704 static void prefs_scoring_open_cb(MainWindow *mainwin, guint action,
2705                                   GtkWidget *widget)
2706 {
2707         prefs_scoring_open(NULL);
2708 }
2709
2710 static void prefs_filtering_open_cb(MainWindow *mainwin, guint action,
2711                                     GtkWidget *widget)
2712 {
2713         prefs_filtering_open();
2714 }
2715
2716 static void prefs_account_open_cb(MainWindow *mainwin, guint action,
2717                                   GtkWidget *widget)
2718 {
2719         if (!cur_account) {
2720                 new_account_cb(mainwin, 0, widget);
2721         } else {
2722                 gboolean prev_default = cur_account->is_default;
2723
2724                 prefs_account_open(cur_account);
2725                 if (!prev_default && cur_account->is_default)
2726                         account_set_as_default(cur_account);
2727                 account_save_config_all();
2728                 account_set_menu();
2729                 main_window_reflect_prefs_all();
2730         }
2731 }
2732
2733 static void new_account_cb(MainWindow *mainwin, guint action,
2734                            GtkWidget *widget)
2735 {
2736         account_edit_open();
2737         if (!compose_get_compose_list()) account_add();
2738 }
2739
2740 static void account_menu_cb(GtkMenuItem *menuitem, gpointer data)
2741 {
2742         cur_account = (PrefsAccount *)data;
2743         main_window_reflect_prefs_all();
2744 }
2745
2746 static void manual_open_cb(MainWindow *mainwin, guint action,
2747                            GtkWidget *widget)
2748 {
2749         manual_open((ManualLang)action);
2750 }
2751
2752 static void scan_tree_func(Folder *folder, FolderItem *item, gpointer data)
2753 {
2754         MainWindow *mainwin = (MainWindow *)data;
2755         gchar *str;
2756
2757         if (item->path)
2758                 str = g_strdup_printf(_("Scanning folder %s%c%s ..."),
2759                                       LOCAL_FOLDER(folder)->rootpath,
2760                                       G_DIR_SEPARATOR,
2761                                       item->path);
2762         else
2763                 str = g_strdup_printf(_("Scanning folder %s ..."),
2764                                       LOCAL_FOLDER(folder)->rootpath);
2765
2766         STATUSBAR_PUSH(mainwin, str);
2767         STATUSBAR_POP(mainwin);
2768         g_free(str);
2769 }
2770
2771 static void activate_compose_button (MainWindow *mainwin,
2772                                 ToolbarStyle style,
2773                                 ComposeButtonType type)
2774 {
2775         if (style == TOOLBAR_NONE) 
2776                 return;
2777
2778         if (style == TOOLBAR_BOTH) {
2779                 gtk_widget_hide(mainwin->compose_mail_btn_plain);
2780                 gtk_widget_hide(mainwin->compose_news_btn_plain);
2781                 gtk_widget_hide(type == COMPOSEBUTTON_NEWS ? mainwin->compose_mail_btn 
2782                         : mainwin->compose_news_btn);
2783                 gtk_widget_show(type == COMPOSEBUTTON_NEWS ? mainwin->compose_news_btn
2784                         : mainwin->compose_mail_btn);
2785                 mainwin->compose_btn_type = type;       
2786         }
2787         else {
2788                 gtk_widget_hide(mainwin->compose_news_btn);
2789                 gtk_widget_hide(mainwin->compose_mail_btn);
2790                 gtk_widget_hide(type == COMPOSEBUTTON_NEWS ? mainwin->compose_mail_btn_plain 
2791                         : mainwin->compose_news_btn_plain);
2792                 gtk_widget_show(type == COMPOSEBUTTON_NEWS ? mainwin->compose_news_btn_plain
2793                         : mainwin->compose_mail_btn_plain);
2794                 mainwin->compose_btn_type = type;               
2795         }
2796 }
2797
2798 void main_window_toolbar_set_compose_button(MainWindow *mainwin, ComposeButtonType compose_btn_type)
2799 {
2800         if (mainwin->compose_btn_type != compose_btn_type)
2801                 activate_compose_button(mainwin, 
2802                                         prefs_common.toolbar_style,
2803                                         compose_btn_type);
2804 }
2805
2806 static void prefs_templates_open_cb(MainWindow *mainwin, guint action,
2807                                     GtkWidget *widget)
2808 {
2809         prefs_templates_open();
2810 }