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