fix X_BEENTHERE segfault
[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/_Update 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         /* buf = g_strdup_printf(_("Current account: %s"), ac_name);
1008         gtk_label_set_text(GTK_LABEL(mainwin->ac_label), buf);   */
1009         gtk_label_set_text(GTK_LABEL(mainwin->ac_label), ac_name);
1010         gtk_widget_queue_resize(mainwin->ac_button);
1011         /* g_free(buf); */
1012
1013         g_free(ac_name);
1014 }
1015
1016 void main_window_separation_change(MainWindow *mainwin, SeparateType type)
1017 {
1018         GtkWidget *folder_wid  = GTK_WIDGET_PTR(mainwin->folderview);
1019         GtkWidget *summary_wid = GTK_WIDGET_PTR(mainwin->summaryview);
1020         GtkWidget *message_wid = GTK_WIDGET_PTR(mainwin->messageview);
1021
1022         if (mainwin->type == type) return;
1023
1024         /* remove widgets from those containers */
1025         gtk_widget_ref(folder_wid);
1026         gtk_widget_ref(summary_wid);
1027         gtk_widget_ref(message_wid);
1028         gtk_container_remove
1029                 (GTK_CONTAINER(folder_wid->parent), folder_wid);
1030         gtk_container_remove
1031                 (GTK_CONTAINER(summary_wid->parent), summary_wid);
1032         gtk_container_remove
1033                 (GTK_CONTAINER(message_wid->parent), message_wid);
1034
1035         /* clean containers */
1036         switch (mainwin->type) {
1037         case SEPARATE_NONE:
1038                 gtk_widget_destroy(mainwin->win.sep_none.hpaned);
1039                 break;
1040         case SEPARATE_FOLDER:
1041                 gtk_widget_destroy(mainwin->win.sep_folder.vpaned);
1042                 gtk_widget_destroy(mainwin->win.sep_folder.folderwin);
1043                 break;
1044         case SEPARATE_MESSAGE:
1045                 gtk_widget_destroy(mainwin->win.sep_message.hpaned);
1046                 gtk_widget_destroy(mainwin->win.sep_message.messagewin);
1047                 break;
1048         case SEPARATE_BOTH:
1049                 gtk_widget_destroy(mainwin->win.sep_both.messagewin);
1050                 gtk_widget_destroy(mainwin->win.sep_both.folderwin);
1051                 break;
1052         }
1053
1054         gtk_widget_hide(mainwin->window);
1055         main_window_set_widgets(mainwin, type);
1056         gtk_widget_show(mainwin->window);
1057
1058         gtk_widget_unref(folder_wid);
1059         gtk_widget_unref(summary_wid);
1060         gtk_widget_unref(message_wid);
1061 }
1062
1063 void main_window_get_size(MainWindow *mainwin)
1064 {
1065         GtkAllocation *allocation;
1066
1067         allocation = &(GTK_WIDGET_PTR(mainwin->summaryview)->allocation);
1068
1069         prefs_common.summaryview_width  = allocation->width;
1070
1071         if (mainwin->summaryview->msg_is_toggled_on)
1072                 prefs_common.summaryview_height = allocation->height;
1073
1074         prefs_common.mainview_width     = allocation->width;
1075
1076         allocation = &mainwin->window->allocation;
1077
1078         prefs_common.mainview_height = allocation->height;
1079         prefs_common.mainwin_width   = allocation->width;
1080         prefs_common.mainwin_height  = allocation->height;
1081
1082         allocation = &(GTK_WIDGET_PTR(mainwin->folderview)->allocation);
1083
1084         prefs_common.folderview_width  = allocation->width;
1085         prefs_common.folderview_height = allocation->height;
1086 }
1087
1088 void main_window_get_position(MainWindow *mainwin)
1089 {
1090         gint x, y;
1091
1092         gtkut_widget_get_uposition(mainwin->window, &x, &y);
1093
1094         prefs_common.mainview_x = x;
1095         prefs_common.mainview_y = y;
1096         prefs_common.mainwin_x = x;
1097         prefs_common.mainwin_y = y;
1098
1099         debug_print(_("window position: x = %d, y = %d\n"), x, y);
1100 }
1101
1102 void main_window_empty_trash(MainWindow *mainwin, gboolean confirm)
1103 {
1104         GList *list;
1105
1106         if (confirm) {
1107                 if (alertpanel(_("Empty trash"),
1108                                _("Empty all messages in trash?"),
1109                                _("Yes"), _("No"), NULL) != G_ALERTDEFAULT)
1110                         return;
1111                 manage_window_focus_in(mainwin->window, NULL, NULL);
1112         }
1113
1114         procmsg_empty_trash();
1115
1116         for (list = folder_get_list(); list != NULL; list = list->next) {
1117                 Folder *folder;
1118
1119                 folder = list->data;
1120                 if (folder->trash) {
1121                         folder_item_scan(folder->trash);
1122                         folderview_update_item(folder->trash, TRUE);
1123                 }
1124         }
1125
1126         if (mainwin->summaryview->folder_item &&
1127             mainwin->summaryview->folder_item->stype == F_TRASH)
1128                 gtk_widget_grab_focus(mainwin->folderview->ctree);
1129 }
1130
1131 void main_window_add_mailbox(MainWindow *mainwin)
1132 {
1133         gchar *path;
1134         Folder *folder;
1135
1136         path = input_dialog(_("Add mailbox"),
1137                             _("Input the location of mailbox.\n"
1138                               "If the existing mailbox is specified, it will be\n"
1139                               "scanned automatically."),
1140                             "Mail");
1141         if (!path) return;
1142         if (folder_find_from_path(path)) {
1143                 alertpanel_error(_("The mailbox `%s' already exists."), path);
1144                 g_free(path);
1145                 return;
1146         }
1147         if (!strcmp(path, "Mail"))
1148                 folder = folder_new(F_MH, _("Mailbox"), path);
1149         else
1150                 folder = folder_new(F_MH, g_basename(path), path);
1151         g_free(path);
1152
1153         if (folder->create_tree(folder) < 0) {
1154                 alertpanel_error(_("Creation of the mailbox failed.\n"
1155                                    "Maybe some files already exist, or you don't have the permission to write there."));
1156                 folder_destroy(folder);
1157                 return;
1158         }
1159
1160         folder_add(folder);
1161         folder_set_ui_func(folder, scan_tree_func, mainwin);
1162         folder->scan_tree(folder);
1163         folder_set_ui_func(folder, NULL, NULL);
1164
1165         folderview_set(mainwin->folderview);
1166 }
1167
1168 void main_window_add_mbox(MainWindow *mainwin)
1169 {
1170         gchar *path;
1171         Folder *folder;
1172         FolderItem * item;
1173
1174         path = input_dialog(_("Add mbox mailbox"),
1175                             _("Input the location of mailbox."),
1176                             "mail");
1177
1178         if (!path) return;
1179
1180         if (folder_find_from_path(path)) {
1181                 alertpanel_error(_("The mailbox `%s' already exists."), path);
1182                 g_free(path);
1183                 return;
1184         }
1185
1186         /*
1187         if (!strcmp(path, "Mail"))
1188                 folder = folder_new(F_MBOX, _("Mailbox"), path);
1189                 else
1190         */
1191
1192         folder = folder_new(F_MBOX, g_basename(path), path);
1193         g_free(path);
1194
1195         if (folder->create_tree(folder) < 0) {
1196                 alertpanel_error(_("Creation of the mailbox failed."));
1197                 folder_destroy(folder);
1198                 return;
1199         }
1200
1201         folder_add(folder);
1202
1203         item = folder_item_new(folder->name, NULL);
1204         item->folder = folder;
1205         folder->node = g_node_new(item);
1206
1207         folder->create_folder(folder, item, "inbox");
1208         folder->create_folder(folder, item, "outbox");
1209         folder->create_folder(folder, item, "queue");
1210         folder->create_folder(folder, item, "draft");
1211         folder->create_folder(folder, item, "trash");
1212
1213         folderview_set(mainwin->folderview);
1214 }
1215
1216 typedef enum
1217 {
1218         M_UNLOCKED            = 1 << 0,
1219         M_MSG_EXIST           = 1 << 1,
1220         M_TARGET_EXIST        = 1 << 2,
1221         M_SINGLE_TARGET_EXIST = 1 << 3,
1222         M_EXEC                = 1 << 4,
1223         M_ALLOW_REEDIT        = 1 << 5,
1224         M_HAVE_ACCOUNT        = 1 << 6,
1225         M_THREADED            = 1 << 7,
1226         M_UNTHREADED          = 1 << 8,
1227         M_NEWS                = 1 << 9
1228 } SensitiveCond;
1229
1230 static SensitiveCond main_window_get_current_state(MainWindow *mainwin)
1231 {
1232         SensitiveCond state = 0;
1233         SummarySelection selection;
1234
1235         selection = summary_get_selection_type(mainwin->summaryview);
1236
1237         if (mainwin->lock_count == 0)
1238                 state |= M_UNLOCKED;
1239         if (selection != SUMMARY_NONE)
1240                 state |= M_MSG_EXIST;
1241         if (mainwin->summaryview->folder_item) {
1242                 if (mainwin->summaryview->folder_item->threaded)
1243                         state |= M_THREADED;
1244                 else
1245                         state |= M_UNTHREADED;  
1246         }               
1247         if (selection == SUMMARY_SELECTED_SINGLE ||
1248             selection == SUMMARY_SELECTED_MULTIPLE)
1249                 state |= M_TARGET_EXIST;
1250         if (selection == SUMMARY_SELECTED_SINGLE)
1251                 state |= M_SINGLE_TARGET_EXIST;
1252         if (mainwin->summaryview->folder_item &&
1253             mainwin->summaryview->folder_item->folder->type != F_NEWS)
1254                 state |= M_EXEC;
1255         if (mainwin->summaryview->folder_item &&
1256             mainwin->summaryview->folder_item->folder->type == F_NEWS)
1257                 state |= M_NEWS;
1258         if (selection == SUMMARY_SELECTED_SINGLE &&
1259             (mainwin->summaryview->folder_item &&
1260              (mainwin->summaryview->folder_item->stype == F_DRAFT ||
1261               mainwin->summaryview->folder_item->stype == F_QUEUE)))
1262                 state |= M_ALLOW_REEDIT;
1263         if (cur_account)
1264                 state |= M_HAVE_ACCOUNT;
1265
1266         return state;
1267 }
1268
1269 void main_window_set_toolbar_sensitive(MainWindow *mainwin)
1270 {
1271         SensitiveCond state;
1272         gboolean sensitive;
1273         gint i;
1274
1275         const struct {
1276                 GtkWidget *widget;
1277                 SensitiveCond cond;
1278         } entry[] = {
1279                 {mainwin->get_btn         , M_HAVE_ACCOUNT|M_UNLOCKED},
1280                 {mainwin->getall_btn      , M_HAVE_ACCOUNT|M_UNLOCKED},
1281                 {mainwin->compose_mail_btn, M_HAVE_ACCOUNT},
1282                 {mainwin->compose_news_btn, M_HAVE_ACCOUNT},
1283                 {mainwin->reply_btn       , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1284                 {mainwin->replyall_btn    , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1285                 {mainwin->replysender_btn , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1286                 {mainwin->fwd_btn         , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1287                 /* {mainwin->prefs_btn      , M_UNLOCKED},
1288                 {mainwin->account_btn    , M_UNLOCKED}, */
1289                 {mainwin->next_btn        , M_MSG_EXIST},
1290                 {mainwin->delete_btn      , M_TARGET_EXIST|M_EXEC|M_UNLOCKED},
1291                 {mainwin->exec_btn        , M_MSG_EXIST|M_EXEC|M_UNLOCKED},
1292                 {NULL, 0}
1293         };
1294
1295         state = main_window_get_current_state(mainwin);
1296
1297         for (i = 0; entry[i].widget != NULL; i++) {
1298                 sensitive = ((entry[i].cond & state) == entry[i].cond);
1299                 gtk_widget_set_sensitive(entry[i].widget, sensitive);
1300         }
1301 }
1302
1303 void main_window_set_menu_sensitive(MainWindow *mainwin)
1304 {
1305         GtkItemFactory *ifactory;
1306         SensitiveCond state;
1307         gboolean sensitive;
1308         gint i;
1309
1310         static const struct {
1311                 gchar *const entry;
1312                 SensitiveCond cond;
1313         } entry[] = {
1314                 {"/File/Add mailbox..."        , M_UNLOCKED},
1315                 {"/File/Add mbox mailbox..."   , M_UNLOCKED},
1316                 {"/File/Update folder tree"    , M_UNLOCKED},
1317                 {"/File/Folder"                , M_UNLOCKED},
1318                 {"/File/Import mbox file..."   , M_UNLOCKED},
1319                 {"/File/Export to mbox file...", M_UNLOCKED},
1320                 {"/File/Empty trash"           , M_UNLOCKED},
1321                 {"/File/Save as...", M_SINGLE_TARGET_EXIST|M_UNLOCKED},
1322                 {"/File/Print..."  , M_TARGET_EXIST|M_UNLOCKED},
1323                 {"/File/Close", M_UNLOCKED},
1324                 {"/File/Exit" , M_UNLOCKED},
1325
1326                 {"/View/Show all header"      , M_SINGLE_TARGET_EXIST},
1327                 {"/View/View source"          , M_SINGLE_TARGET_EXIST},
1328
1329                 {"/Message/Get new mail"          , M_HAVE_ACCOUNT|M_UNLOCKED},
1330                 {"/Message/Get from all accounts" , M_HAVE_ACCOUNT|M_UNLOCKED},
1331 /*              {"/Message/Compose new message"   , M_HAVE_ACCOUNT}, */
1332                 {"/Message/Reply"                 , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1333                 {"/Message/Reply to sender"       , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1334                 {"/Message/Reply to all"          , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1335                 {"/Message/Follow-up and reply to", M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST|M_NEWS},
1336                 {"/Message/Forward"               , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1337                 {"/Message/Forward as attachment" , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1338                 {"/Message/Open in new window"    , M_SINGLE_TARGET_EXIST},
1339                 {"/Message/Re-edit", M_HAVE_ACCOUNT|M_ALLOW_REEDIT},
1340                 {"/Message/Move...", M_TARGET_EXIST|M_EXEC|M_UNLOCKED},
1341                 {"/Message/Copy...", M_TARGET_EXIST|M_EXEC|M_UNLOCKED},
1342                 {"/Message/Delete" , M_TARGET_EXIST|M_EXEC|M_UNLOCKED},
1343                 {"/Message/Mark"   , M_TARGET_EXIST},
1344                 {"/Message/Add sender to address book", M_SINGLE_TARGET_EXIST},
1345
1346                 {"/Summary/Delete duplicated messages", M_MSG_EXIST|M_EXEC|M_UNLOCKED},
1347                 {"/Summary/Filter messages"           , M_MSG_EXIST|M_EXEC|M_UNLOCKED},
1348                 {"/Summary/Execute"                   , M_MSG_EXIST|M_EXEC|M_UNLOCKED},
1349                 {"/Summary/Go to"                     , M_MSG_EXIST},
1350                 {"/Summary/Go to/Prev message"        , M_MSG_EXIST},
1351                 {"/Summary/Go to/Next message"        , M_MSG_EXIST},
1352                 {"/Summary/Go to/Next unread message" , M_MSG_EXIST},
1353                 {"/Summary/Go to/Prev marked message" , M_MSG_EXIST},
1354                 {"/Summary/Go to/Next marked message" , M_MSG_EXIST},
1355                 {"/Summary/Go to/Prev labeled message", M_MSG_EXIST},
1356                 {"/Summary/Go to/Next labeled message", M_MSG_EXIST},
1357                 {"/Summary/Sort"                      , M_MSG_EXIST},
1358                 {"/Summary/Thread view"               , M_UNTHREADED},
1359                 {"/Summary/Unthread view"             , M_THREADED},
1360
1361                 {"/Configuration", M_UNLOCKED},
1362
1363                 {NULL, 0}
1364         };
1365
1366         ifactory = gtk_item_factory_from_widget(mainwin->menubar);
1367         state = main_window_get_current_state(mainwin);
1368
1369         for (i = 0; entry[i].entry != NULL; i++) {
1370                 sensitive = ((entry[i].cond & state) == entry[i].cond);
1371                 menu_set_sensitive(ifactory, entry[i].entry, sensitive);
1372         }
1373 }
1374
1375 void main_window_popup(MainWindow *mainwin)
1376 {
1377         gint x, y;
1378         gint sx, sy;
1379         GtkWidget *widget;
1380
1381         gdk_window_get_origin(mainwin->window->window, &x, &y);
1382         sx = gdk_screen_width();
1383         sy = gdk_screen_height();
1384         x %= sx; if (x < 0) x += sx;
1385         y %= sy; if (y < 0) y += sy;
1386         gdk_window_move(mainwin->window->window, x, y);
1387         gdk_window_raise(mainwin->window->window);
1388         gdk_window_show(mainwin->window->window);
1389
1390         debug_print("window position: x = %d, y = %d\n", x, y);
1391
1392         switch (mainwin->type) {
1393         case SEPARATE_FOLDER:
1394                 widget = mainwin->win.sep_folder.folderwin;
1395                 gdk_window_get_origin(widget->window, &x, &y);
1396                 x %= sx; if (x < 0) x += sx;
1397                 y %= sy; if (y < 0) y += sy;
1398                 gdk_window_move(widget->window, x, y);
1399                 gdk_window_raise(widget->window);
1400                 break;
1401         case SEPARATE_MESSAGE:
1402                 widget = mainwin->win.sep_message.messagewin;
1403                 gdk_window_get_origin(widget->window, &x, &y);
1404                 x %= sx; if (x < 0) x += sx;
1405                 y %= sy; if (y < 0) y += sy;
1406                 gdk_window_move(widget->window, x, y);
1407                 gdk_window_raise(widget->window);
1408                 break;
1409         case SEPARATE_BOTH:
1410                 widget = mainwin->win.sep_both.folderwin;
1411                 gdk_window_get_origin(widget->window, &x, &y);
1412                 x %= sx; if (x < 0) x += sx;
1413                 y %= sy; if (y < 0) y += sy;
1414                 gdk_window_move(widget->window, x, y);
1415                 gdk_window_raise(widget->window);
1416                 widget = mainwin->win.sep_both.messagewin;
1417                 gdk_window_get_origin(widget->window, &x, &y);
1418                 x %= sx; if (x < 0) x += sx;
1419                 y %= sy; if (y < 0) y += sy;
1420                 gdk_window_move(widget->window, x, y);
1421                 gdk_window_raise(widget->window);
1422                 break;
1423         default:
1424                 break;
1425         }
1426 }
1427
1428 static void main_window_set_widgets(MainWindow *mainwin, SeparateType type)
1429 {
1430         GtkWidget *folderwin = NULL;
1431         GtkWidget *messagewin = NULL;
1432         GtkWidget *hpaned;
1433         GtkWidget *vpaned;
1434         GtkWidget *vbox_body = mainwin->vbox_body;
1435
1436         debug_print(_("Setting widgets..."));
1437
1438         /* create separated window(s) if needed */
1439         if (type & SEPARATE_FOLDER) {
1440                 folderwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
1441                 gtk_window_set_policy(GTK_WINDOW(folderwin),
1442                                       TRUE, TRUE, FALSE);
1443                 gtk_widget_set_usize(folderwin, -1,
1444                                      prefs_common.mainview_height);
1445                 gtk_container_set_border_width(GTK_CONTAINER(folderwin),
1446                                                BORDER_WIDTH);
1447                 gtk_signal_connect(GTK_OBJECT(folderwin), "delete_event",
1448                                    GTK_SIGNAL_FUNC(gtk_widget_hide_on_delete),
1449                                    NULL);
1450         }
1451         if (type & SEPARATE_MESSAGE) {
1452                 messagewin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
1453                 gtk_window_set_policy(GTK_WINDOW(messagewin),
1454                                       TRUE, TRUE, FALSE);
1455                 gtk_widget_set_usize
1456                         (messagewin, prefs_common.mainview_width,
1457                          prefs_common.mainview_height
1458                          - prefs_common.summaryview_height
1459                          + DEFAULT_HEADERVIEW_HEIGHT);
1460                 gtk_container_set_border_width(GTK_CONTAINER(messagewin),
1461                                                BORDER_WIDTH);
1462                 gtk_signal_connect(GTK_OBJECT(messagewin), "delete_event",
1463                                    GTK_SIGNAL_FUNC(gtk_widget_hide_on_delete),
1464                                    NULL);
1465         }
1466
1467         switch (type) {
1468         case SEPARATE_NONE:
1469                 hpaned = gtk_hpaned_new();
1470                 gtk_widget_show(hpaned);
1471                 gtk_box_pack_start(GTK_BOX(vbox_body), hpaned, TRUE, TRUE, 0);
1472                 gtk_paned_add1(GTK_PANED(hpaned),
1473                                GTK_WIDGET_PTR(mainwin->folderview));
1474
1475                 vpaned = gtk_vpaned_new();
1476                 if (mainwin->summaryview->msg_is_toggled_on) {
1477                         gtk_paned_add2(GTK_PANED(hpaned), vpaned);
1478                         gtk_paned_add1(GTK_PANED(vpaned),
1479                                        GTK_WIDGET_PTR(mainwin->summaryview));
1480                 } else {
1481                         gtk_paned_add2(GTK_PANED(hpaned),
1482                                        GTK_WIDGET_PTR(mainwin->summaryview));
1483                         gtk_widget_ref(vpaned);
1484                 }
1485                 gtk_widget_set_usize(GTK_WIDGET_PTR(mainwin->summaryview),
1486                                      prefs_common.summaryview_width,
1487                                      prefs_common.summaryview_height);
1488                 gtk_paned_add2(GTK_PANED(vpaned),
1489                                GTK_WIDGET_PTR(mainwin->messageview));
1490                 gtk_widget_set_usize(GTK_WIDGET_PTR(mainwin->messageview),
1491                                      prefs_common.mainview_width, -1);
1492                 gtk_widget_set_usize(mainwin->window,
1493                                      prefs_common.folderview_width +
1494                                      prefs_common.mainview_width,
1495                                      prefs_common.mainwin_height);
1496                 gtk_widget_show_all(vpaned);
1497
1498                 mainwin->win.sep_none.hpaned = hpaned;
1499                 mainwin->win.sep_none.vpaned = vpaned;
1500                 break;
1501         case SEPARATE_FOLDER:
1502                 vpaned = gtk_vpaned_new();
1503                 if (mainwin->summaryview->msg_is_toggled_on) {
1504                         gtk_box_pack_start(GTK_BOX(vbox_body), vpaned,
1505                                            TRUE, TRUE, 0);
1506                         gtk_paned_add1(GTK_PANED(vpaned),
1507                                        GTK_WIDGET_PTR(mainwin->summaryview));
1508                 } else {
1509                         gtk_box_pack_start(GTK_BOX(vbox_body),
1510                                            GTK_WIDGET_PTR(mainwin->summaryview),
1511                                            TRUE, TRUE, 0);
1512                         gtk_widget_ref(vpaned);
1513                 }
1514                 gtk_paned_add2(GTK_PANED(vpaned),
1515                                GTK_WIDGET_PTR(mainwin->messageview));
1516                 gtk_widget_show_all(vpaned);
1517                 gtk_widget_set_usize(GTK_WIDGET_PTR(mainwin->summaryview),
1518                                      prefs_common.summaryview_width,
1519                                      prefs_common.summaryview_height);
1520                 gtk_widget_set_usize(GTK_WIDGET_PTR(mainwin->messageview),
1521                                      prefs_common.mainview_width, -1);
1522                 gtk_widget_set_usize(mainwin->window,
1523                                      prefs_common.mainview_width,
1524                                      prefs_common.mainview_height);
1525
1526                 gtk_container_add(GTK_CONTAINER(folderwin),
1527                                   GTK_WIDGET_PTR(mainwin->folderview));
1528
1529                 mainwin->win.sep_folder.folderwin = folderwin;
1530                 mainwin->win.sep_folder.vpaned    = vpaned;
1531
1532                 gtk_widget_show_all(folderwin);
1533                 break;
1534         case SEPARATE_MESSAGE:
1535                 hpaned = gtk_hpaned_new();
1536                 gtk_box_pack_start(GTK_BOX(vbox_body), hpaned, TRUE, TRUE, 0);
1537
1538                 gtk_paned_add1(GTK_PANED(hpaned),
1539                                GTK_WIDGET_PTR(mainwin->folderview));
1540                 gtk_paned_add2(GTK_PANED(hpaned),
1541                                GTK_WIDGET_PTR(mainwin->summaryview));
1542                 gtk_widget_set_usize(GTK_WIDGET_PTR(mainwin->summaryview),
1543                                      prefs_common.summaryview_width,
1544                                      prefs_common.summaryview_height);
1545                 gtk_widget_set_usize(mainwin->window,
1546                                      prefs_common.folderview_width +
1547                                      prefs_common.mainview_width,
1548                                      prefs_common.mainwin_height);
1549                 gtk_widget_show_all(hpaned);
1550                 gtk_container_add(GTK_CONTAINER(messagewin),
1551                                   GTK_WIDGET_PTR(mainwin->messageview));
1552
1553                 mainwin->win.sep_message.messagewin = messagewin;
1554                 mainwin->win.sep_message.hpaned     = hpaned;
1555
1556                 gtk_widget_show_all(messagewin);
1557                 break;
1558         case SEPARATE_BOTH:
1559                 gtk_box_pack_start(GTK_BOX(vbox_body),
1560                                    GTK_WIDGET_PTR(mainwin->summaryview),
1561                                    TRUE, TRUE, 0);
1562                 gtk_widget_set_usize(GTK_WIDGET_PTR(mainwin->summaryview),
1563                                      prefs_common.summaryview_width,
1564                                      prefs_common.summaryview_height);
1565                 gtk_widget_set_usize(mainwin->window,
1566                                      prefs_common.mainview_width,
1567                                      prefs_common.mainwin_height);
1568                 gtk_container_add(GTK_CONTAINER(folderwin),
1569                                   GTK_WIDGET_PTR(mainwin->folderview));
1570                 gtk_container_add(GTK_CONTAINER(messagewin),
1571                                   GTK_WIDGET_PTR(mainwin->messageview));
1572
1573                 mainwin->win.sep_both.folderwin = folderwin;
1574                 mainwin->win.sep_both.messagewin = messagewin;
1575
1576                 gtk_widget_show_all(folderwin);
1577                 gtk_widget_show_all(messagewin);
1578                 break;
1579         }
1580
1581         mainwin->type = type;
1582
1583         debug_print(_("done.\n"));
1584 }
1585
1586 #include "pixmaps/stock_mail_receive.xpm"
1587 #include "pixmaps/stock_mail_receive_all.xpm"
1588 #include "pixmaps/stock_mail_compose.xpm"
1589 #include "pixmaps/stock_news_compose.xpm"
1590 #include "pixmaps/stock_mail_reply.xpm"
1591 #include "pixmaps/stock_mail_reply_to_all.xpm"
1592 #include "pixmaps/stock_mail_reply_to_author.xpm"
1593 #include "pixmaps/stock_mail_forward.xpm"
1594 #include "pixmaps/stock_mail_send.xpm"
1595 #include "pixmaps/stock_preferences.xpm"
1596 #include "pixmaps/stock_properties.xpm"
1597 #include "pixmaps/stock_down_arrow.xpm"
1598 #include "pixmaps/stock_close.xpm"
1599 #include "pixmaps/stock_exec.xpm"
1600
1601 #define CREATE_TOOLBAR_ICON(xpm_d) \
1602 { \
1603         icon = gdk_pixmap_create_from_xpm_d(container->window, &mask, \
1604                                             &container->style->white, \
1605                                             xpm_d); \
1606         icon_wid = gtk_pixmap_new(icon, mask); \
1607 }
1608
1609 static void main_window_toolbar_create(MainWindow *mainwin,
1610                                        GtkWidget *container)
1611 {
1612         GtkWidget *toolbar;
1613         GdkPixmap *icon;
1614         GdkBitmap *mask;
1615         GtkWidget *icon_wid;
1616         GtkWidget *get_btn;
1617         GtkWidget *getall_btn;
1618         GtkWidget *compose_mail_btn;
1619         GtkWidget *compose_news_btn;
1620         GtkWidget *compose_mail_btn_plain;
1621         GtkWidget *compose_news_btn_plain;
1622         GtkWidget *reply_btn;
1623         GtkWidget *replyall_btn;
1624         GtkWidget *replysender_btn;
1625         GtkWidget *fwd_btn;
1626         GtkWidget *send_btn;
1627         /*
1628         GtkWidget *prefs_btn;
1629         GtkWidget *account_btn;
1630         */
1631         GtkWidget *next_btn;
1632         GtkWidget *delete_btn;
1633         GtkWidget *exec_btn;
1634         GtkWidget *compose_type_btn;
1635         GtkWidget *compose_type_arrow;
1636         GtkWidget *compose_box;
1637         GtkWidget *compose_label;
1638         GtkTooltips *tooltips;
1639
1640         toolbar = gtk_toolbar_new(GTK_ORIENTATION_HORIZONTAL,
1641                                   GTK_TOOLBAR_BOTH);
1642         gtk_container_add(GTK_CONTAINER(container), toolbar);
1643         gtk_container_set_border_width(GTK_CONTAINER(container), 2);
1644         gtk_toolbar_set_button_relief(GTK_TOOLBAR(toolbar), GTK_RELIEF_NONE);
1645         gtk_toolbar_set_space_style(GTK_TOOLBAR(toolbar),
1646                                     GTK_TOOLBAR_SPACE_LINE);
1647
1648         CREATE_TOOLBAR_ICON(stock_mail_receive_xpm);
1649         get_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1650                                           _("Get"),
1651                                           _("Get new mail from current account"),
1652                                           "Get",
1653                                           icon_wid, toolbar_inc_cb, mainwin);
1654         CREATE_TOOLBAR_ICON(stock_mail_receive_all_xpm);
1655         getall_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1656                                              _("Get all"),
1657                                              _("Get new mail from all accounts"),
1658                                              "Get all",
1659                                              icon_wid,
1660                                              toolbar_inc_all_cb,
1661                                              mainwin);
1662
1663         gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
1664
1665         CREATE_TOOLBAR_ICON(stock_mail_send_xpm);
1666         send_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1667                                            _("Send"),
1668                                            _("Send queued message(s)"),
1669                                            "Send",
1670                                            icon_wid,
1671                                            toolbar_send_cb,
1672                                            mainwin);
1673
1674         /* to implement Leandro's "combined" compose buttons, we create
1675          * two sets of compose buttons, one for normal (text + icon) 
1676          * toolbar, and one for both text-only and icon-only toolbar;
1677          * we switch between those sets. */
1678
1679         /* insert compose mail button widget */                                    
1680
1681         compose_mail_btn = gtk_button_new();
1682         gtk_widget_show(compose_mail_btn);
1683         tooltips = gtk_tooltips_new();
1684         gtk_tooltips_set_tip(tooltips, compose_mail_btn, 
1685                                                  _("Compose email message"),
1686                                                  _("email"));
1687         compose_box = gtk_vbox_new(0, 0);
1688         gtk_widget_show(compose_box);
1689         
1690         gtk_container_add(GTK_CONTAINER(compose_mail_btn), compose_box);
1691         CREATE_TOOLBAR_ICON(stock_mail_compose_xpm);
1692         gtk_box_pack_start(GTK_BOX(compose_box), icon_wid, FALSE, FALSE, 0);
1693
1694         compose_label = gtk_label_new(_("Email"));
1695         gtk_widget_show(compose_label);
1696         gtk_box_pack_start(GTK_BOX(compose_box), compose_label, FALSE, FALSE, 0);
1697         
1698         GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(compose_mail_btn), GTK_CAN_FOCUS);
1699         gtk_button_set_relief(GTK_BUTTON(compose_mail_btn), GTK_RELIEF_NONE);
1700         gtk_toolbar_append_widget(GTK_TOOLBAR(toolbar), compose_mail_btn,
1701                 NULL, NULL);
1702
1703         /* insert compose news button widget */
1704
1705         compose_news_btn = gtk_button_new();
1706         gtk_widget_show(compose_news_btn);
1707         tooltips = gtk_tooltips_new();
1708         gtk_tooltips_set_tip(tooltips, compose_news_btn,
1709                                                  _("Compose news article"),
1710                                                  _("news"));
1711         compose_box = gtk_vbox_new(0, 0);
1712         gtk_widget_show(compose_box);
1713         
1714         gtk_container_add(GTK_CONTAINER(compose_news_btn), compose_box);
1715         CREATE_TOOLBAR_ICON(stock_news_compose_xpm);
1716         gtk_box_pack_start(GTK_BOX(compose_box), icon_wid, FALSE, FALSE, 0);
1717
1718         compose_label = gtk_label_new(_("News"));
1719         gtk_widget_show(compose_label);
1720         gtk_box_pack_start(GTK_BOX(compose_box), compose_label, FALSE, FALSE, 0);
1721         
1722         GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(compose_news_btn), GTK_CAN_FOCUS);
1723         gtk_button_set_relief(GTK_BUTTON(compose_news_btn), GTK_RELIEF_NONE);
1724         gtk_toolbar_append_widget(GTK_TOOLBAR(toolbar), compose_news_btn,
1725                 NULL, NULL);
1726         
1727         /* insert compose btn plain */
1728         
1729         CREATE_TOOLBAR_ICON(stock_mail_compose_xpm);
1730         compose_mail_btn_plain = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1731                                               _("Email"),
1732                                               _("Compose an email message"),
1733                                               "New",
1734                                               icon_wid,
1735                                               toolbar_compose_mail_cb,
1736                                               mainwin);
1737
1738         /* insert compose btn plain */
1739
1740         CREATE_TOOLBAR_ICON(stock_news_compose_xpm);
1741         compose_news_btn_plain = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1742                                               _("News"),
1743                                               _("Compose a news message"),
1744                                               "New",
1745                                               icon_wid,
1746                                               toolbar_compose_news_cb,
1747                                               mainwin);
1748
1749         /* insert compose button type widget */
1750         
1751         compose_type_btn = gtk_button_new();
1752         gtk_widget_show(compose_type_btn);
1753         
1754         compose_type_arrow = gtk_arrow_new(GTK_ARROW_DOWN, GTK_SHADOW_OUT);
1755         gtk_widget_show(compose_type_arrow);
1756         
1757         gtk_container_add(GTK_CONTAINER(compose_type_btn), compose_type_arrow);
1758
1759         GTK_WIDGET_UNSET_FLAGS(GTK_WIDGET(compose_type_btn), GTK_CAN_FOCUS);
1760         gtk_button_set_relief(GTK_BUTTON(compose_type_btn), GTK_RELIEF_NONE);
1761
1762         gtk_toolbar_append_widget(GTK_TOOLBAR(toolbar), compose_type_btn,
1763                 NULL, NULL);
1764
1765         gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
1766         
1767         CREATE_TOOLBAR_ICON(stock_mail_reply_xpm);
1768         reply_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1769                                             _("Reply"),
1770                                             _("Reply to the message"),
1771                                             "Reply",
1772                                             icon_wid,
1773                                             toolbar_reply_cb,
1774                                             mainwin);
1775         CREATE_TOOLBAR_ICON(stock_mail_reply_to_all_xpm);
1776         replyall_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1777                                                _("All"),
1778                                                _("Reply to all"),
1779                                                "Reply to all",
1780                                                icon_wid,
1781                                                toolbar_reply_to_all_cb,
1782                                                mainwin);
1783         CREATE_TOOLBAR_ICON(stock_mail_reply_to_author_xpm);
1784         replysender_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1785                                                   _("Sender"),
1786                                                   _("Reply to sender"),
1787                                                   "Reply to sender",
1788                                                   icon_wid,
1789                                                   toolbar_reply_to_sender_cb,
1790                                                   mainwin);
1791         CREATE_TOOLBAR_ICON(stock_mail_forward_xpm);
1792         fwd_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1793                                           _("Forward"),
1794                                           _("Forward the message"),
1795                                           "Fwd",
1796                                           icon_wid,
1797                                           toolbar_forward_cb,
1798                                           mainwin);
1799
1800         gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
1801
1802         CREATE_TOOLBAR_ICON(stock_close_xpm);
1803         delete_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1804                                           _("Delete"),
1805                                           _("Delete the message"),
1806                                           "Delete",
1807                                           icon_wid,
1808                                           toolbar_delete_cb,
1809                                           mainwin);
1810
1811         CREATE_TOOLBAR_ICON(stock_exec_xpm);
1812         exec_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1813                                            _("Execute"),
1814                                            _("Execute marked process"),
1815                                            "Execute",
1816                                            icon_wid,
1817                                            toolbar_exec_cb,
1818                                            mainwin);
1819
1820         CREATE_TOOLBAR_ICON(stock_down_arrow_xpm);
1821         next_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1822                                            _("Next"),
1823                                            _("Next unread message"),
1824                                            "Next unread",
1825                                            icon_wid,
1826                                            toolbar_next_unread_cb,
1827                                            mainwin);
1828
1829         /*
1830         gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
1831
1832         CREATE_TOOLBAR_ICON(stock_preferences_xpm);
1833         prefs_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1834                                             _("Prefs"),
1835                                             _("Common preference"),
1836                                             "Prefs",
1837                                             icon_wid,
1838                                             toolbar_prefs_cb,
1839                                             mainwin);
1840         CREATE_TOOLBAR_ICON(stock_properties_xpm);
1841         account_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
1842                                               _("Account"),
1843                                               _("Account setting"),
1844                                               "Account",
1845                                               icon_wid,
1846                                               toolbar_account_cb,
1847                                               mainwin);
1848         gtk_signal_connect(GTK_OBJECT(account_btn), "button_press_event",
1849                            GTK_SIGNAL_FUNC(toolbar_account_button_pressed),
1850                            mainwin);
1851         */
1852
1853         gtk_signal_connect(GTK_OBJECT(compose_type_btn), "clicked",
1854                 GTK_SIGNAL_FUNC(toolbar_popup_compose_type_cb),
1855                 mainwin);
1856
1857         gtk_signal_connect(GTK_OBJECT(compose_mail_btn), "clicked",
1858                 GTK_SIGNAL_FUNC(toolbar_compose_mail_cb),
1859                 mainwin);
1860
1861         gtk_signal_connect(GTK_OBJECT(compose_news_btn), "clicked",
1862                 GTK_SIGNAL_FUNC(toolbar_compose_news_cb),
1863                 mainwin);
1864
1865         mainwin->toolbar         = toolbar;
1866         mainwin->get_btn         = get_btn;
1867         mainwin->getall_btn      = getall_btn;
1868         mainwin->compose_mail_btn = compose_mail_btn;
1869         mainwin->compose_news_btn = compose_news_btn;
1870         mainwin->compose_mail_btn_plain = compose_mail_btn_plain;
1871         mainwin->compose_news_btn_plain = compose_news_btn_plain;
1872         mainwin->reply_btn       = reply_btn;
1873         mainwin->replyall_btn    = replyall_btn;
1874         mainwin->replysender_btn = replysender_btn;
1875         mainwin->fwd_btn         = fwd_btn;
1876         mainwin->send_btn        = send_btn;
1877         /*
1878         mainwin->prefs_btn       = prefs_btn;
1879         mainwin->account_btn     = account_btn;
1880         */
1881         mainwin->next_btn        = next_btn;
1882         mainwin->delete_btn      = delete_btn;
1883         mainwin->exec_btn        = exec_btn;
1884
1885         gtk_widget_show_all(toolbar);
1886
1887         /* activate Leandro menu system */
1888         activate_compose_button(mainwin, 
1889                                 prefs_common.toolbar_style,
1890                                 mainwin->compose_btn_type);
1891 }
1892
1893 /* callback functions */
1894
1895 static void toolbar_popup_compose_type_cb       (GtkWidget      *widget,
1896                                  gpointer data)
1897 {
1898         MainWindow *mainwindow = (MainWindow *) data;
1899         GtkWidget *compose_menu, *compose_item;
1900
1901         g_return_if_fail(mainwindow != NULL);
1902         
1903         compose_menu = gtk_menu_new();
1904         
1905         compose_item = gtk_menu_item_new_with_label(_("Email message"));
1906         gtk_widget_show(compose_item);
1907         gtk_menu_append(GTK_MENU(compose_menu), compose_item);
1908         gtk_signal_connect(GTK_OBJECT(compose_item), "activate",
1909                 GTK_SIGNAL_FUNC(toolbar_popup_compose_type_set),
1910                 mainwindow);
1911         gtk_object_set_data(GTK_OBJECT(compose_item), "entry", GINT_TO_POINTER(COMPOSEBUTTON_MAIL));            
1912         
1913         compose_item = gtk_menu_item_new_with_label(_("News article"));
1914         gtk_widget_show(compose_item);
1915         gtk_menu_append(GTK_MENU(compose_menu), compose_item);
1916         gtk_signal_connect(GTK_OBJECT(compose_item), "activate",
1917                 GTK_SIGNAL_FUNC(toolbar_popup_compose_type_set),
1918                 mainwindow);
1919         gtk_object_set_data(GTK_OBJECT(compose_item), "entry", GINT_TO_POINTER(COMPOSEBUTTON_NEWS));            
1920                 
1921         gtk_menu_popup(GTK_MENU(compose_menu), NULL, NULL, NULL,
1922                 NULL, 1, 0);
1923 }
1924
1925 static void toolbar_popup_compose_type_set(GtkWidget *widget, gpointer data)
1926 {
1927         ComposeButtonType compose_type = GPOINTER_TO_INT( gtk_object_get_data(GTK_OBJECT(widget), "entry") );
1928         MainWindow *mainwindow = (MainWindow *) data;
1929
1930         mainwindow->compose_btn_type = compose_type;
1931
1932         activate_compose_button(mainwindow, prefs_common.toolbar_style, mainwindow->compose_btn_type);
1933 }       
1934
1935 static void toolbar_inc_cb      (GtkWidget      *widget,
1936                                  gpointer        data)
1937 {
1938         MainWindow *mainwin = (MainWindow *)data;
1939
1940         inc_mail_cb(mainwin, 0, NULL);
1941 }
1942
1943 static void toolbar_inc_all_cb  (GtkWidget      *widget,
1944                                  gpointer        data)
1945 {
1946         MainWindow *mainwin = (MainWindow *)data;
1947
1948         inc_all_account_mail_cb(mainwin, 0, NULL);
1949 }
1950
1951 static void toolbar_send_cb     (GtkWidget      *widget,
1952                                  gpointer        data)
1953 {
1954         MainWindow *mainwin = (MainWindow *)data;
1955
1956         send_queue_cb(mainwin, 0, NULL);
1957 }
1958
1959 static void toolbar_compose_cb  (GtkWidget      *widget,
1960                                  gpointer        data)
1961 {
1962         MainWindow *mainwin = (MainWindow *)data;
1963
1964         if (mainwin->compose_btn_type == COMPOSEBUTTON_MAIL)
1965                 compose_cb(mainwin, 0, NULL);
1966         else
1967                 compose_news_cb(mainwin, 0, NULL);
1968 }
1969
1970 static void toolbar_compose_news_cb     (GtkWidget      *widget,
1971                                  gpointer        data)
1972 {
1973         MainWindow *mainwin = (MainWindow *)data;
1974
1975         compose_news_cb(mainwin, 0, NULL);
1976 }
1977
1978 static void toolbar_compose_mail_cb     (GtkWidget      *widget,
1979                                  gpointer        data)
1980 {
1981         MainWindow *mainwin = (MainWindow *)data;
1982
1983         compose_mail_cb(mainwin, 0, NULL);
1984 }
1985
1986 static void toolbar_reply_cb    (GtkWidget      *widget,
1987                                  gpointer        data)
1988 {
1989         MainWindow *mainwin = (MainWindow *)data;
1990
1991         reply_cb(mainwin, COMPOSE_REPLY, NULL);
1992 }
1993
1994 static void toolbar_reply_to_all_cb     (GtkWidget      *widget,
1995                                          gpointer        data)
1996 {
1997         MainWindow *mainwin = (MainWindow *)data;
1998
1999         reply_cb(mainwin, COMPOSE_REPLY_TO_ALL, NULL);
2000 }
2001
2002 static void toolbar_reply_to_sender_cb  (GtkWidget      *widget,
2003                                          gpointer        data)
2004 {
2005         MainWindow *mainwin = (MainWindow *)data;
2006
2007         reply_cb(mainwin, COMPOSE_REPLY_TO_SENDER, NULL);
2008 }
2009
2010 static void toolbar_forward_cb  (GtkWidget      *widget,
2011                                  gpointer        data)
2012 {
2013         MainWindow *mainwin = (MainWindow *)data;
2014
2015         if (prefs_common.forward_as_attachment)
2016                 reply_cb(mainwin, COMPOSE_FORWARD_AS_ATTACH, NULL);
2017         else
2018                 reply_cb(mainwin, COMPOSE_FORWARD, NULL);
2019 }
2020
2021 static void toolbar_delete_cb   (GtkWidget      *widget,
2022                                  gpointer        data)
2023 {
2024         MainWindow *mainwin = (MainWindow *)data;
2025
2026         summary_delete(mainwin->summaryview);
2027 }
2028
2029 static void toolbar_exec_cb     (GtkWidget      *widget,
2030                                  gpointer        data)
2031 {
2032         MainWindow *mainwin = (MainWindow *)data;
2033
2034         summary_execute(mainwin->summaryview);
2035 }
2036
2037 static void toolbar_next_unread_cb      (GtkWidget      *widget,
2038                                          gpointer        data)
2039 {
2040         MainWindow *mainwin = (MainWindow *)data;
2041
2042         next_unread_cb(mainwin, 0, NULL);
2043 }
2044
2045 static void toolbar_prefs_cb    (GtkWidget      *widget,
2046                                  gpointer        data)
2047 {
2048         prefs_common_open();
2049 }
2050
2051 static void toolbar_account_cb  (GtkWidget      *widget,
2052                                  gpointer        data)
2053 {
2054         MainWindow *mainwin = (MainWindow *)data;
2055
2056         prefs_account_open_cb(mainwin, 0, NULL);
2057 }
2058
2059 static void toolbar_account_button_pressed(GtkWidget *widget,
2060                                            GdkEventButton *event,
2061                                            gpointer data)
2062 {
2063         MainWindow *mainwin = (MainWindow *)data;
2064
2065         if (!event) return;
2066         if (event->button != 3) return;
2067
2068         gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
2069         gtk_object_set_data(GTK_OBJECT(mainwin->ac_menu), "menu_button",
2070                             widget);
2071
2072         gtk_menu_popup(GTK_MENU(mainwin->ac_menu), NULL, NULL,
2073                        menu_button_position, widget,
2074                        event->button, event->time);
2075 }
2076
2077 static void ac_label_button_pressed(GtkWidget *widget, GdkEventButton *event,
2078                                     gpointer data)
2079 {
2080         MainWindow *mainwin = (MainWindow *)data;
2081
2082         if (!event) return;
2083
2084         gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
2085         gtk_object_set_data(GTK_OBJECT(mainwin->ac_menu), "menu_button",
2086                             widget);
2087
2088         gtk_menu_popup(GTK_MENU(mainwin->ac_menu), NULL, NULL,
2089                        menu_button_position, widget,
2090                        event->button, event->time);
2091 }
2092
2093 static void ac_menu_popup_closed(GtkMenuShell *menu_shell, gpointer data)
2094 {
2095         MainWindow *mainwin = (MainWindow *)data;
2096         GtkWidget *button;
2097
2098         button = gtk_object_get_data(GTK_OBJECT(menu_shell), "menu_button");
2099         if (!button) return;
2100         gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE);
2101         gtk_object_remove_data(GTK_OBJECT(mainwin->ac_menu), "menu_button");
2102         manage_window_focus_in(mainwin->window, NULL, NULL);
2103 }
2104
2105 static gint main_window_close_cb(GtkWidget *widget, GdkEventAny *event,
2106                                  gpointer data)
2107 {
2108         MainWindow *mainwin = (MainWindow *)data;
2109
2110         if (mainwin->lock_count == 0)
2111                 app_exit_cb(data, 0, widget);
2112
2113         return TRUE;
2114 }
2115
2116 static void add_mailbox_cb(MainWindow *mainwin, guint action,
2117                            GtkWidget *widget)
2118 {
2119         main_window_add_mailbox(mainwin);
2120 }
2121
2122 static void add_mbox_cb(MainWindow *mainwin, guint action,
2123                         GtkWidget *widget)
2124 {
2125         main_window_add_mbox(mainwin);
2126 }
2127
2128 static void update_folderview_cb(MainWindow *mainwin, guint action,
2129                                  GtkWidget *widget)
2130 {
2131         summary_show(mainwin->summaryview, NULL, FALSE);
2132         folderview_update_all();
2133 }
2134
2135 static void new_folder_cb(MainWindow *mainwin, guint action,
2136                           GtkWidget *widget)
2137 {
2138         folderview_new_folder(mainwin->folderview);
2139 }
2140
2141 static void rename_folder_cb(MainWindow *mainwin, guint action,
2142                              GtkWidget *widget)
2143 {
2144         folderview_rename_folder(mainwin->folderview);
2145 }
2146
2147 static void delete_folder_cb(MainWindow *mainwin, guint action,
2148                              GtkWidget *widget)
2149 {
2150         folderview_delete_folder(mainwin->folderview);
2151 }
2152
2153 static void import_mbox_cb(MainWindow *mainwin, guint action,
2154                            GtkWidget *widget)
2155 {
2156         import_mbox(mainwin->summaryview->folder_item);
2157 }
2158
2159 static void export_mbox_cb(MainWindow *mainwin, guint action,
2160                            GtkWidget *widget)
2161 {
2162         export_mbox(mainwin->summaryview->folder_item);
2163 }
2164
2165 static void empty_trash_cb(MainWindow *mainwin, guint action,
2166                            GtkWidget *widget)
2167 {
2168         main_window_empty_trash(mainwin, TRUE);
2169 }
2170
2171 static void save_as_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2172 {
2173         summary_save_as(mainwin->summaryview);
2174 }
2175
2176 static void print_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2177 {
2178         summary_print(mainwin->summaryview);
2179 }
2180
2181 static void app_exit_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2182 {
2183         if (prefs_common.confirm_on_exit) {
2184                 if (alertpanel(_("Exit"), _("Exit this program?"),
2185                                _("OK"), _("Cancel"), NULL) != G_ALERTDEFAULT)
2186                         return;
2187                 manage_window_focus_in(mainwin->window, NULL, NULL);
2188         }
2189
2190         app_will_exit(widget, mainwin);
2191 }
2192
2193 static void search_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2194 {
2195         if (action == 1)
2196                 summary_search(mainwin->summaryview);
2197         else
2198                 message_search(mainwin->messageview);
2199 }
2200
2201 static void toggle_folder_cb(MainWindow *mainwin, guint action,
2202                              GtkWidget *widget)
2203 {
2204         switch (mainwin->type) {
2205         case SEPARATE_NONE:
2206         case SEPARATE_MESSAGE:
2207                 break;
2208         case SEPARATE_FOLDER:
2209                 if (GTK_CHECK_MENU_ITEM(widget)->active)
2210                         gtk_widget_show(mainwin->win.sep_folder.folderwin);
2211                 else
2212                         gtk_widget_hide(mainwin->win.sep_folder.folderwin);
2213                 break;
2214         case SEPARATE_BOTH:
2215                 if (GTK_CHECK_MENU_ITEM(widget)->active)
2216                         gtk_widget_show(mainwin->win.sep_both.folderwin);
2217                 else
2218                         gtk_widget_hide(mainwin->win.sep_both.folderwin);
2219                 break;
2220         }
2221 }
2222
2223 static void toggle_message_cb(MainWindow *mainwin, guint action,
2224                               GtkWidget *widget)
2225 {
2226         switch (mainwin->type) {
2227         case SEPARATE_NONE:
2228         case SEPARATE_FOLDER:
2229                 break;
2230         case SEPARATE_MESSAGE:
2231                 if (GTK_CHECK_MENU_ITEM(widget)->active)
2232                         gtk_widget_show(mainwin->win.sep_message.messagewin);
2233                 else
2234                         gtk_widget_hide(mainwin->win.sep_message.messagewin);
2235                 break;
2236         case SEPARATE_BOTH:
2237                 if (GTK_CHECK_MENU_ITEM(widget)->active)
2238                         gtk_widget_show(mainwin->win.sep_both.messagewin);
2239                 else
2240                         gtk_widget_hide(mainwin->win.sep_both.messagewin);
2241                 break;
2242         }
2243 }
2244
2245 static void toggle_toolbar_cb(MainWindow *mainwin, guint action,
2246                               GtkWidget *widget)
2247 {
2248         activate_compose_button(mainwin, (ToolbarStyle)action, 
2249                         mainwin->compose_btn_type);
2250         
2251         switch ((ToolbarStyle)action) {
2252         case TOOLBAR_NONE:
2253                 gtk_widget_hide(mainwin->handlebox);
2254         case TOOLBAR_ICON:
2255                 gtk_toolbar_set_style(GTK_TOOLBAR(mainwin->toolbar),
2256                                       GTK_TOOLBAR_ICONS);
2257                 break;
2258         case TOOLBAR_TEXT:
2259                 gtk_toolbar_set_style(GTK_TOOLBAR(mainwin->toolbar),
2260                                       GTK_TOOLBAR_TEXT);
2261                 break;
2262         case TOOLBAR_BOTH:
2263                 gtk_toolbar_set_style(GTK_TOOLBAR(mainwin->toolbar),
2264                                       GTK_TOOLBAR_BOTH);
2265                 break;
2266         }
2267
2268         if (action != TOOLBAR_NONE) {
2269                 gtk_widget_show(mainwin->handlebox);
2270                 gtk_widget_queue_resize(mainwin->handlebox);
2271         }
2272
2273         mainwin->toolbar_style = (ToolbarStyle)action;
2274         prefs_common.toolbar_style = (ToolbarStyle)action;
2275 }
2276
2277 static void toggle_statusbar_cb(MainWindow *mainwin, guint action,
2278                                 GtkWidget *widget)
2279 {
2280         if (GTK_CHECK_MENU_ITEM(widget)->active) {
2281                 gtk_widget_show(mainwin->hbox_stat);
2282                 prefs_common.show_statusbar = TRUE;
2283         } else {
2284                 gtk_widget_hide(mainwin->hbox_stat);
2285                 prefs_common.show_statusbar = FALSE;
2286         }
2287 }
2288
2289 static void separate_widget_cb(GtkCheckMenuItem *checkitem, guint action, GtkWidget *widget)
2290
2291 {
2292         MainWindow *mainwin;
2293         SeparateType type;
2294
2295         mainwin = (MainWindow *) gtk_object_get_data(GTK_OBJECT(checkitem), "mainwindow");
2296         g_return_if_fail(mainwin != NULL);
2297
2298         type = mainwin->type ^ action;
2299         main_window_separation_change(mainwin, type);
2300
2301         prefs_common.sep_folder = (type & SEPARATE_FOLDER)  != 0;
2302         prefs_common.sep_msg    = (type & SEPARATE_MESSAGE) != 0;
2303 }
2304
2305 static void addressbook_open_cb(MainWindow *mainwin, guint action,
2306                                 GtkWidget *widget)
2307 {
2308         addressbook_open(NULL);
2309 }
2310
2311 static void log_window_show_cb(MainWindow *mainwin, guint action,
2312                                GtkWidget *widget)
2313 {
2314         log_window_show(mainwin->logwin);
2315 }
2316
2317 static void inc_mail_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2318 {
2319         inc_mail(mainwin);
2320 }
2321
2322 static void inc_all_account_mail_cb(MainWindow *mainwin, guint action,
2323                                     GtkWidget *widget)
2324 {
2325         inc_all_account_mail(mainwin);
2326 }
2327
2328 static void send_queue_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2329 {
2330         GList *list;
2331
2332         if (procmsg_send_queue() < 0)
2333                 alertpanel_error(_("Some errors occurred while sending queued messages."));
2334
2335         statusbar_pop_all();
2336
2337         for (list = folder_get_list(); list != NULL; list = list->next) {
2338                 Folder *folder;
2339
2340                 folder = list->data;
2341                 if (folder->queue) {
2342                         folder_item_scan(folder->queue);
2343                         folderview_update_item(folder->queue, TRUE);
2344                 }
2345         }
2346 }
2347
2348 static void compose_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2349 {
2350         if (mainwin->summaryview->folder_item) {
2351                 if (mainwin->summaryview->folder_item->folder->account != NULL
2352                     && mainwin->summaryview->folder_item->folder->account->protocol == A_NNTP)
2353                         compose_new_with_recipient(mainwin->summaryview->folder_item->folder->account, mainwin->summaryview->folder_item->path);
2354                 else
2355                         compose_new_with_folderitem(mainwin->summaryview->folder_item->folder->account, mainwin->summaryview->folder_item);
2356         }
2357         else
2358                 compose_new(NULL);
2359 }
2360
2361 static void compose_mail_cb(MainWindow *mainwin, guint action,
2362                             GtkWidget *widget)
2363 {
2364         PrefsAccount * ac;
2365         GList * list;
2366         GList * cur;
2367
2368         if (mainwin->summaryview->folder_item) {
2369                 ac = mainwin->summaryview->folder_item->folder->account;
2370                 if (ac && ac->protocol != A_NNTP) {
2371                         compose_new_with_folderitem(ac, mainwin->summaryview->folder_item);
2372                         return;
2373                 }
2374         }
2375
2376         if(cur_account && (cur_account->protocol != A_NNTP)) {
2377                 compose_new_with_folderitem(cur_account, mainwin->summaryview->folder_item);
2378                 return;
2379         }
2380
2381         list = account_get_list();
2382         for(cur = list ; cur != NULL ; cur = g_list_next(cur)) {
2383                 ac = (PrefsAccount *) cur->data;
2384                 if (ac->protocol != A_NNTP) {
2385                         compose_new_with_folderitem(ac, mainwin->summaryview->folder_item);
2386                         return;
2387                 }
2388         }
2389 }
2390
2391 static void compose_news_cb(MainWindow *mainwin, guint action,
2392                             GtkWidget *widget)
2393 {
2394         PrefsAccount * ac = NULL;
2395         GList * list;
2396         GList * cur;
2397
2398         if (mainwin->summaryview->folder_item) {
2399                 ac = mainwin->summaryview->folder_item->folder->account;
2400                 if (ac && ac->protocol == A_NNTP) {
2401                         compose_new_with_recipient
2402                                 (ac, mainwin->summaryview->folder_item->path);
2403                         return;
2404                 }
2405         }
2406
2407         list = account_get_list();
2408         for(cur = list ; cur != NULL ; cur = g_list_next(cur)) {
2409                 ac = (PrefsAccount *) cur->data;
2410                 if (ac->protocol == A_NNTP) {
2411                         compose_new(ac);
2412                         return;
2413                 }
2414         }
2415 }
2416
2417 static void reply_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2418 {
2419         GList  *sel = GTK_CLIST(mainwin->summaryview->ctree)->selection;
2420         MsgInfo *msginfo;
2421
2422         msginfo = gtk_ctree_node_get_row_data
2423                 (GTK_CTREE(mainwin->summaryview->ctree),
2424                  mainwin->summaryview->selected);
2425
2426         if (!msginfo) return;
2427
2428         switch (action) {
2429         case COMPOSE_REPLY:
2430                 compose_reply(msginfo, prefs_common.reply_with_quote,
2431                               FALSE, FALSE);
2432                 break;
2433         case COMPOSE_REPLY_TO_SENDER:
2434                 compose_reply(msginfo, prefs_common.reply_with_quote,
2435                               FALSE, TRUE);
2436                 break;
2437         case COMPOSE_FOLLOWUP_AND_REPLY_TO:
2438                 compose_followup_and_reply_to(msginfo,
2439                                               prefs_common.reply_with_quote,
2440                                               FALSE, TRUE);
2441                 break;
2442         case COMPOSE_REPLY_TO_ALL:
2443                 compose_reply(msginfo, prefs_common.reply_with_quote,
2444                               TRUE, TRUE);
2445                 break;
2446         case COMPOSE_FORWARD:
2447                 if (!sel->next) {
2448                         compose_forward(NULL, msginfo, FALSE);
2449                         break;
2450                 }
2451                 /* if (sel->next) FALL_THROUGH */
2452         case COMPOSE_FORWARD_AS_ATTACH:
2453                 {
2454                         GSList *msginfo_list = NULL;
2455                         for ( ; sel != NULL; sel = sel->next)
2456                                 msginfo_list = g_slist_append(msginfo_list, 
2457                                         gtk_ctree_node_get_row_data(GTK_CTREE(mainwin->summaryview->ctree),
2458                                                 GTK_CTREE_NODE(sel->data)));
2459                         compose_forward_multiple(NULL, msginfo_list);
2460                         g_slist_free(msginfo_list);
2461                 }                       
2462                 break;
2463         default:
2464                 g_warning("reply_cb(): invalid action type: %d\n", action);
2465         }
2466
2467         summary_set_marks_selected(mainwin->summaryview);
2468 }
2469
2470 static void move_to_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2471 {
2472         summary_move_to(mainwin->summaryview);
2473 }
2474
2475 static void copy_to_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2476 {
2477         summary_copy_to(mainwin->summaryview);
2478 }
2479
2480 static void delete_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2481 {
2482         summary_delete(mainwin->summaryview);
2483 }
2484
2485 static void open_msg_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2486 {
2487         summary_open_msg(mainwin->summaryview);
2488 }
2489
2490 static void view_source_cb(MainWindow *mainwin, guint action,
2491                            GtkWidget *widget)
2492 {
2493         summary_view_source(mainwin->summaryview);
2494 }
2495
2496 static void reedit_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2497 {
2498         summary_reedit(mainwin->summaryview);
2499 }
2500
2501 static void mark_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2502 {
2503         summary_mark(mainwin->summaryview);
2504 }
2505
2506 static void unmark_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2507 {
2508         summary_unmark(mainwin->summaryview);
2509 }
2510
2511 static void mark_as_unread_cb(MainWindow *mainwin, guint action,
2512                               GtkWidget *widget)
2513 {
2514         summary_mark_as_unread(mainwin->summaryview);
2515 }
2516
2517 static void mark_as_read_cb(MainWindow *mainwin, guint action,
2518                             GtkWidget *widget)
2519 {
2520         summary_mark_as_read(mainwin->summaryview);
2521 }
2522
2523 static void mark_all_read_cb(MainWindow *mainwin, guint action,
2524                              GtkWidget *widget)
2525 {
2526         summary_mark_all_read(mainwin->summaryview);
2527 }
2528
2529 static void add_address_cb(MainWindow *mainwin, guint action,
2530                            GtkWidget *widget)
2531 {
2532         summary_add_address(mainwin->summaryview);
2533 }
2534
2535 static void set_charset_cb(MainWindow *mainwin, guint action,
2536                            GtkWidget *widget)
2537 {
2538         const gchar *str;
2539
2540         str = conv_get_charset_str((CharSet)action);
2541         g_free(prefs_common.force_charset);
2542         prefs_common.force_charset = str ? g_strdup(str) : NULL;
2543
2544         summary_redisplay_msg(mainwin->summaryview);
2545
2546         debug_print(_("forced charset: %s\n"), str ? str : "Auto-Detect");
2547 }
2548
2549 static void thread_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2550 {
2551         GtkItemFactory *ifactory;
2552
2553         if (!mainwin->summaryview->folder_item) return;
2554
2555         ifactory = gtk_item_factory_from_widget(widget);
2556
2557         if (0 == action) {
2558                 summary_thread_build(mainwin->summaryview, FALSE);
2559                 mainwin->summaryview->folder_item->threaded = TRUE;
2560                 menu_set_sensitive(ifactory, "/Summary/Thread view",   FALSE);
2561                 menu_set_sensitive(ifactory, "/Summary/Unthread view", TRUE);
2562         } else {
2563                 summary_unthread(mainwin->summaryview);
2564                 mainwin->summaryview->folder_item->threaded = FALSE;
2565                 menu_set_sensitive(ifactory, "/Summary/Thread view",   TRUE);
2566                 menu_set_sensitive(ifactory, "/Summary/Unthread view", FALSE);
2567         }
2568 }
2569
2570 static void set_display_item_cb(MainWindow *mainwin, guint action,
2571                                 GtkWidget *widget)
2572 {
2573         prefs_summary_display_item_set();
2574 }
2575
2576 static void sort_summary_cb(MainWindow *mainwin, guint action,
2577                             GtkWidget *widget)
2578 {
2579         summary_sort(mainwin->summaryview, (SummarySortType)action);
2580 }
2581
2582 static void attract_by_subject_cb(MainWindow *mainwin, guint action,
2583                                   GtkWidget *widget)
2584 {
2585         summary_attract_by_subject(mainwin->summaryview);
2586 }
2587
2588 static void delete_duplicated_cb(MainWindow *mainwin, guint action,
2589                                  GtkWidget *widget)
2590 {
2591         summary_delete_duplicated(mainwin->summaryview);
2592 }
2593
2594 static void filter_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2595 {
2596         summary_filter(mainwin->summaryview);
2597 }
2598
2599 static void execute_summary_cb(MainWindow *mainwin, guint action,
2600                                GtkWidget *widget)
2601 {
2602         summary_execute(mainwin->summaryview);
2603 }
2604
2605 static void update_summary_cb(MainWindow *mainwin, guint action,
2606                               GtkWidget *widget)
2607 {
2608         FolderItem *fitem;
2609         FolderView *folderview = mainwin->folderview;
2610
2611         if (!mainwin->summaryview->folder_item) return;
2612         if (!folderview->opened) return;
2613
2614         folder_update_op_count();
2615
2616         fitem = gtk_ctree_node_get_row_data(GTK_CTREE(folderview->ctree),
2617                                             folderview->opened);
2618         if (!fitem) return;
2619
2620         summary_show(mainwin->summaryview, fitem, TRUE);
2621 }
2622
2623 static void prev_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2624 {
2625         summary_step(mainwin->summaryview, GTK_SCROLL_STEP_BACKWARD);
2626 }
2627
2628 static void next_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2629 {
2630         summary_step(mainwin->summaryview, GTK_SCROLL_STEP_FORWARD);
2631 }
2632
2633 static void prev_unread_cb(MainWindow *mainwin, guint action,
2634                            GtkWidget *widget)
2635 {
2636         summary_select_prev_unread(mainwin->summaryview);
2637 }
2638
2639 static void next_unread_cb(MainWindow *mainwin, guint action,
2640                            GtkWidget *widget)
2641 {
2642         summary_select_next_unread(mainwin->summaryview);
2643 }
2644
2645 static void prev_marked_cb(MainWindow *mainwin, guint action,
2646                            GtkWidget *widget)
2647 {
2648         summary_select_prev_marked(mainwin->summaryview);
2649 }
2650
2651 static void next_marked_cb(MainWindow *mainwin, guint action,
2652                            GtkWidget *widget)
2653 {
2654         summary_select_next_marked(mainwin->summaryview);
2655 }
2656
2657 static void prev_labeled_cb(MainWindow *mainwin, guint action,
2658                             GtkWidget *widget)
2659 {
2660         summary_select_prev_labeled(mainwin->summaryview);
2661 }
2662
2663 static void next_labeled_cb(MainWindow *mainwin, guint action,
2664                             GtkWidget *widget)
2665 {
2666         summary_select_next_labeled(mainwin->summaryview);
2667 }
2668
2669 static void goto_folder_cb(MainWindow *mainwin, guint action,
2670                            GtkWidget *widget)
2671 {
2672         FolderItem *to_folder;
2673
2674         to_folder = foldersel_folder_sel(NULL, NULL);
2675
2676         if (to_folder)
2677                 folderview_select(mainwin->folderview, to_folder);
2678 }
2679
2680 static void copy_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2681 {
2682         messageview_copy_clipboard(mainwin->messageview);
2683 }
2684
2685 static void allsel_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2686 {
2687         if (GTK_WIDGET_HAS_FOCUS(mainwin->summaryview->ctree))
2688                 summary_select_all(mainwin->summaryview);
2689         else if (mainwin->summaryview->msg_is_toggled_on &&
2690                  GTK_WIDGET_HAS_FOCUS(mainwin->messageview->textview->text))
2691                 messageview_select_all(mainwin->messageview);
2692 }
2693
2694 static void prefs_common_open_cb(MainWindow *mainwin, guint action,
2695                                  GtkWidget *widget)
2696 {
2697         prefs_common_open();
2698 }
2699
2700 static void prefs_filter_open_cb(MainWindow *mainwin, guint action,
2701                                  GtkWidget *widget)
2702 {
2703         prefs_filter_open();
2704 }
2705
2706 static void prefs_scoring_open_cb(MainWindow *mainwin, guint action,
2707                                   GtkWidget *widget)
2708 {
2709         prefs_scoring_open(NULL);
2710 }
2711
2712 static void prefs_filtering_open_cb(MainWindow *mainwin, guint action,
2713                                     GtkWidget *widget)
2714 {
2715         prefs_filtering_open();
2716 }
2717
2718 static void prefs_account_open_cb(MainWindow *mainwin, guint action,
2719                                   GtkWidget *widget)
2720 {
2721         if (!cur_account) {
2722                 new_account_cb(mainwin, 0, widget);
2723         } else {
2724                 gboolean prev_default = cur_account->is_default;
2725
2726                 prefs_account_open(cur_account);
2727                 if (!prev_default && cur_account->is_default)
2728                         account_set_as_default(cur_account);
2729                 account_save_config_all();
2730                 account_set_menu();
2731                 main_window_reflect_prefs_all();
2732         }
2733 }
2734
2735 static void new_account_cb(MainWindow *mainwin, guint action,
2736                            GtkWidget *widget)
2737 {
2738         account_edit_open();
2739         if (!compose_get_compose_list()) account_add();
2740 }
2741
2742 static void account_menu_cb(GtkMenuItem *menuitem, gpointer data)
2743 {
2744         cur_account = (PrefsAccount *)data;
2745         main_window_reflect_prefs_all();
2746 }
2747
2748 static void manual_open_cb(MainWindow *mainwin, guint action,
2749                            GtkWidget *widget)
2750 {
2751         manual_open((ManualLang)action);
2752 }
2753
2754 static void scan_tree_func(Folder *folder, FolderItem *item, gpointer data)
2755 {
2756         MainWindow *mainwin = (MainWindow *)data;
2757         gchar *str;
2758
2759         if (item->path)
2760                 str = g_strdup_printf(_("Scanning folder %s%c%s ..."),
2761                                       LOCAL_FOLDER(folder)->rootpath,
2762                                       G_DIR_SEPARATOR,
2763                                       item->path);
2764         else
2765                 str = g_strdup_printf(_("Scanning folder %s ..."),
2766                                       LOCAL_FOLDER(folder)->rootpath);
2767
2768         STATUSBAR_PUSH(mainwin, str);
2769         STATUSBAR_POP(mainwin);
2770         g_free(str);
2771 }
2772
2773 static void activate_compose_button (MainWindow *mainwin,
2774                                 ToolbarStyle style,
2775                                 ComposeButtonType type)
2776 {
2777         if (style == TOOLBAR_NONE) 
2778                 return;
2779
2780         if (style == TOOLBAR_BOTH) {    
2781                 gtk_widget_hide(mainwin->compose_mail_btn_plain);
2782                 gtk_widget_hide(mainwin->compose_news_btn_plain);
2783                 gtk_widget_hide(type == COMPOSEBUTTON_NEWS ? mainwin->compose_mail_btn 
2784                         : mainwin->compose_news_btn);
2785                 gtk_widget_show(type == COMPOSEBUTTON_NEWS ? mainwin->compose_news_btn
2786                         : mainwin->compose_mail_btn);
2787                 mainwin->compose_btn_type = type;       
2788         }
2789         else {
2790                 gtk_widget_hide(mainwin->compose_news_btn);
2791                 gtk_widget_hide(mainwin->compose_mail_btn);
2792                 gtk_widget_hide(type == COMPOSEBUTTON_NEWS ? mainwin->compose_mail_btn_plain 
2793                         : mainwin->compose_news_btn_plain);
2794                 gtk_widget_show(type == COMPOSEBUTTON_NEWS ? mainwin->compose_news_btn_plain
2795                         : mainwin->compose_mail_btn_plain);
2796                 mainwin->compose_btn_type = type;               
2797         }
2798 }
2799
2800 static void prefs_templates_open_cb(MainWindow *mainwin, guint action,
2801                                     GtkWidget *widget)
2802 {
2803         prefs_templates_open();
2804 }