updated de.po
[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, guint action);
207
208 static void addressbook_open_cb (MainWindow     *mainwin,
209                                  guint           action,
210                                  GtkWidget      *widget);
211 static void log_window_show_cb  (MainWindow     *mainwin,
212                                  guint           action,
213                                  GtkWidget      *widget);
214
215 static void inc_mail_cb                 (MainWindow     *mainwin,
216                                          guint           action,
217                                          GtkWidget      *widget);
218 static void inc_all_account_mail_cb     (MainWindow     *mainwin,
219                                          guint           action,
220                                          GtkWidget      *widget);
221
222 static void send_queue_cb               (MainWindow     *mainwin,
223                                          guint           action,
224                                          GtkWidget      *widget);
225
226 static void compose_cb                  (MainWindow     *mainwin,
227                                          guint           action,
228                                          GtkWidget      *widget);
229 static void compose_mail_cb(MainWindow *mainwin, guint action,
230                             GtkWidget *widget);
231 static void compose_news_cb(MainWindow *mainwin, guint action,
232                             GtkWidget *widget);
233 static void reply_cb                    (MainWindow     *mainwin,
234                                          guint           action,
235                                          GtkWidget      *widget);
236
237 static void open_msg_cb                 (MainWindow     *mainwin,
238                                          guint           action,
239                                          GtkWidget      *widget);
240
241 static void view_source_cb              (MainWindow     *mainwin,
242                                          guint           action,
243                                          GtkWidget      *widget);
244
245 static void reedit_cb                   (MainWindow     *mainwin,
246                                          guint           action,
247                                          GtkWidget      *widget);
248
249 static void move_to_cb                  (MainWindow     *mainwin,
250                                          guint           action,
251                                          GtkWidget      *widget);
252 static void copy_to_cb                  (MainWindow     *mainwin,
253                                          guint           action,
254                                          GtkWidget      *widget);
255 static void delete_cb                   (MainWindow     *mainwin,
256                                          guint           action,
257                                          GtkWidget      *widget);
258
259 static void mark_cb                     (MainWindow     *mainwin,
260                                          guint           action,
261                                          GtkWidget      *widget);
262 static void unmark_cb                   (MainWindow     *mainwin,
263                                          guint           action,
264                                          GtkWidget      *widget);
265
266 static void mark_as_unread_cb           (MainWindow     *mainwin,
267                                          guint           action,
268                                          GtkWidget      *widget);
269 static void mark_as_read_cb             (MainWindow     *mainwin,
270                                          guint           action,
271                                          GtkWidget      *widget);
272
273 static void set_charset_cb              (MainWindow     *mainwin,
274                                          guint           action,
275                                          GtkWidget      *widget);
276
277 static void thread_cb            (MainWindow    *mainwin,
278                                   guint          action,
279                                   GtkWidget     *widget);
280 static void set_display_item_cb  (MainWindow    *mainwin,
281                                   guint          action,
282                                   GtkWidget     *widget);
283 static void sort_summary_cb      (MainWindow    *mainwin,
284                                   guint          action,
285                                   GtkWidget     *widget);
286 static void attract_by_subject_cb(MainWindow    *mainwin,
287                                   guint          action,
288                                   GtkWidget     *widget);
289
290 static void delete_duplicated_cb (MainWindow    *mainwin,
291                                   guint          action,
292                                   GtkWidget     *widget);
293 static void filter_cb            (MainWindow    *mainwin,
294                                   guint          action,
295                                   GtkWidget     *widget);
296 static void execute_summary_cb   (MainWindow    *mainwin,
297                                   guint          action,
298                                   GtkWidget     *widget);
299 static void update_summary_cb    (MainWindow    *mainwin,
300                                   guint          action,
301                                   GtkWidget     *widget);
302
303 static void prev_cb              (MainWindow    *mainwin,
304                                   guint          action,
305                                   GtkWidget     *widget);
306 static void next_cb              (MainWindow    *mainwin,
307                                   guint          action,
308                                   GtkWidget     *widget);
309
310 static void next_unread_cb       (MainWindow    *mainwin,
311                                   guint          action,
312                                   GtkWidget     *widget);
313
314 static void next_marked_cb       (MainWindow    *mainwin,
315                                   guint          action,
316                                   GtkWidget     *widget);
317
318 static void prev_marked_cb       (MainWindow    *mainwin,
319                                   guint          action,
320                                   GtkWidget     *widget);
321
322 static void goto_folder_cb       (MainWindow    *mainwin,
323                                   guint          action,
324                                   GtkWidget     *widget);
325
326 static void copy_cb              (MainWindow    *mainwin,
327                                   guint          action,
328                                   GtkWidget     *widget);
329 static void allsel_cb            (MainWindow    *mainwin,
330                                   guint          action,
331                                   GtkWidget     *widget);
332
333 static void prefs_common_open_cb (MainWindow    *mainwin,
334                                   guint          action,
335                                   GtkWidget     *widget);
336 static void prefs_filter_open_cb (MainWindow    *mainwin,
337                                   guint          action,
338                                   GtkWidget     *widget);
339 static void prefs_scoring_open_cb (MainWindow   *mainwin,
340                                   guint          action,
341                                   GtkWidget     *widget);
342 static void prefs_filtering_open_cb (MainWindow *mainwin,
343                                   guint          action,
344                                   GtkWidget     *widget);
345 static void prefs_account_open_cb(MainWindow    *mainwin,
346                                   guint          action,
347                                   GtkWidget     *widget);
348 static void new_account_cb       (MainWindow    *mainwin,
349                                   guint          action,
350                                   GtkWidget     *widget);
351
352 static void account_menu_cb      (GtkMenuItem   *menuitem,
353                                   gpointer       data);
354
355 static void manual_open_cb       (MainWindow    *mainwin,
356                                   guint          action,
357                                   GtkWidget     *widget);
358
359 static void scan_tree_func       (Folder        *folder,
360                                   FolderItem    *item,
361                                   gpointer       data);
362                                   
363 static void activate_compose_button (MainWindow *mainwin,
364                                 ToolbarStyle      style,
365                                 ComposeButtonType type);
366
367 #define  SEPARATE_ACTION  667
368
369 static GtkItemFactoryEntry mainwin_entries[] =
370 {
371         {N_("/_File"),                          NULL, NULL, 0, "<Branch>"},
372         {N_("/_File/_Add mailbox..."),          NULL, add_mailbox_cb, 0, NULL},
373         {N_("/_File/_Add mbox mailbox..."),     NULL, add_mbox_cb, 0, NULL},
374         {N_("/_File/_Update folder tree"),      NULL, update_folderview_cb, 0, NULL},
375         {N_("/_File/_Folder"),                  NULL, NULL, 0, "<Branch>"},
376         {N_("/_File/_Folder/Create _new folder..."),
377                                                 NULL, new_folder_cb, 0, NULL},
378         {N_("/_File/_Folder/_Rename folder..."),NULL, rename_folder_cb, 0, NULL},
379         {N_("/_File/_Folder/_Delete folder"),   NULL, delete_folder_cb, 0, NULL},
380         {N_("/_File/_Import mbox file..."),     NULL, import_mbox_cb, 0, NULL},
381         {N_("/_File/_Export to mbox file..."),  NULL, export_mbox_cb, 0, NULL},
382         {N_("/_File/Empty _trash"),             NULL, empty_trash_cb, 0, NULL},
383         {N_("/_File/---"),                      NULL, NULL, 0, "<Separator>"},
384         {N_("/_File/_Save as..."),              NULL, save_as_cb, 0, NULL},
385         {N_("/_File/_Print..."),                "<alt>P", print_cb, 0, NULL},
386         {N_("/_File/---"),                      NULL, NULL, 0, "<Separator>"},
387         {N_("/_File/_Close"),                   "<alt>W", app_exit_cb, 0, NULL},
388         {N_("/_File/E_xit"),                    "<alt>Q", app_exit_cb, 0, NULL},
389
390         {N_("/_Edit"),                          NULL, NULL, 0, "<Branch>"},
391         {N_("/_Edit/_Copy"),                    "<control>C", copy_cb, 0, NULL},
392         {N_("/_Edit/Select _all"),              "<control>A", allsel_cb, 0, NULL},
393         {N_("/_Edit/---"),                      NULL, NULL, 0, "<Separator>"},
394         {N_("/_Edit/_Search"),                  "<control>S", summary_search_cb, 0, NULL},
395
396         {N_("/_View"),                          NULL, NULL, 0, "<Branch>"},
397         {N_("/_View/_Folder tree"),             NULL, toggle_folder_cb, 0, "<ToggleItem>"},
398         {N_("/_View/_Message view"),            NULL, toggle_message_cb, 0, "<ToggleItem>"},
399         {N_("/_View/_Toolbar"),                 NULL, NULL, 0, "<Branch>"},
400         {N_("/_View/_Toolbar/Icon _and text"),  NULL, toggle_toolbar_cb, TOOLBAR_BOTH, "<RadioItem>"},
401         {N_("/_View/_Toolbar/_Icon"),           NULL, toggle_toolbar_cb, TOOLBAR_ICON, "/View/Toolbar/Icon and text"},
402         {N_("/_View/_Toolbar/_Text"),           NULL, toggle_toolbar_cb, TOOLBAR_TEXT, "/View/Toolbar/Icon and text"},
403         {N_("/_View/_Toolbar/_None"),           NULL, toggle_toolbar_cb, TOOLBAR_NONE, "/View/Toolbar/Icon and text"},
404         {N_("/_View/_Status bar"),              NULL, toggle_statusbar_cb, 0, "<ToggleItem>"},
405         {N_("/_View/---"),                      NULL, NULL, 0, "<Separator>"},
406         {N_("/_View/Separate f_older tree"),    NULL, NULL, SEPARATE_ACTION + SEPARATE_FOLDER, "<ToggleItem>"},
407         {N_("/_View/Separate m_essage view"),   NULL, NULL, SEPARATE_ACTION + SEPARATE_MESSAGE, "<ToggleItem>"},
408         {N_("/_View/---"),                      NULL, NULL, 0, "<Separator>"},
409         {N_("/_View/_Code set"),                NULL, NULL, 0, "<Branch>"},
410         {N_("/_View/_Code set/_Auto detect"),
411          NULL, set_charset_cb, C_AUTO, "<RadioItem>"},
412
413 #define CODESET_SEPARATOR \
414         {N_("/_View/_Code set/---"),            NULL, NULL, 0, "<Separator>"}
415 #define CODESET_ACTION(action) \
416          NULL, set_charset_cb, action, "/View/Code set/Auto detect"
417
418         {N_("/_View/_Code set/---"),            NULL, NULL, 0, "<Separator>"},
419         {N_("/_View/_Code set/7bit ascii (US-ASC_II)"),
420          CODESET_ACTION(C_US_ASCII)},
421
422 #if HAVE_LIBJCONV
423         {N_("/_View/_Code set/Unicode (_UTF-8)"),
424          CODESET_ACTION(C_UTF_8)},
425         CODESET_SEPARATOR,
426 #endif
427         {N_("/_View/_Code set/Western European (ISO-8859-_1)"),
428          CODESET_ACTION(C_ISO_8859_1)},
429         CODESET_SEPARATOR,
430 #if HAVE_LIBJCONV
431         {N_("/_View/_Code set/Central European (ISO-8859-_2)"),
432          CODESET_ACTION(C_ISO_8859_2)},
433         CODESET_SEPARATOR,
434         {N_("/_View/_Code set/_Baltic (ISO-8859-13)"),
435          CODESET_ACTION(C_ISO_8859_13)},
436         {N_("/_View/_Code set/Baltic (ISO-8859-_4)"),
437          CODESET_ACTION(C_ISO_8859_4)},
438         CODESET_SEPARATOR,
439         {N_("/_View/_Code set/Greek (ISO-8859-_7)"),
440          CODESET_ACTION(C_ISO_8859_7)},
441         CODESET_SEPARATOR,
442         {N_("/_View/_Code set/Turkish (ISO-8859-_9)"),
443          CODESET_ACTION(C_ISO_8859_9)},
444         CODESET_SEPARATOR,
445         {N_("/_View/_Code set/Cyrillic (ISO-8859-_5)"),
446          CODESET_ACTION(C_ISO_8859_5)},
447         {N_("/_View/_Code set/Cyrillic (KOI8-_R)"),
448          CODESET_ACTION(C_KOI8_R)},
449         {N_("/_View/_Code set/Cyrillic (Windows-1251)"),
450          CODESET_ACTION(C_CP1251)},
451         CODESET_SEPARATOR,
452 #endif
453         {N_("/_View/_Code set/Japanese (ISO-2022-_JP)"),
454          CODESET_ACTION(C_ISO_2022_JP)},
455 #if HAVE_LIBJCONV
456         {N_("/_View/_Code set/Japanese (ISO-2022-JP-2)"),
457          CODESET_ACTION(C_ISO_2022_JP_2)},
458 #endif
459         {N_("/_View/_Code set/Japanese (_EUC-JP)"),
460          CODESET_ACTION(C_EUC_JP)},
461         {N_("/_View/_Code set/Japanese (_Shift__JIS)"),
462          CODESET_ACTION(C_SHIFT_JIS)},
463 #if HAVE_LIBJCONV
464         CODESET_SEPARATOR,
465         {N_("/_View/_Code set/Simplified Chinese (_GB2312)"),
466          CODESET_ACTION(C_GB2312)},
467         {N_("/_View/_Code set/Traditional Chinese (_Big5)"),
468          CODESET_ACTION(C_BIG5)},
469         {N_("/_View/_Code set/Traditional Chinese (EUC-_TW)"),
470          CODESET_ACTION(C_EUC_TW)},
471         {N_("/_View/_Code set/Chinese (ISO-2022-_CN)"),
472          CODESET_ACTION(C_ISO_2022_CN)},
473         CODESET_SEPARATOR,
474         {N_("/_View/_Code set/Korean (EUC-_KR)"),
475          CODESET_ACTION(C_EUC_KR)},
476         {N_("/_View/_Code set/Korean (ISO-2022-KR)"),
477          CODESET_ACTION(C_ISO_2022_KR)},
478 #endif
479
480 #undef CODESET_SEPARATOR
481 #undef CODESET_ACTION
482
483         {N_("/_Message"),                       NULL, NULL, 0, "<Branch>"},
484         {N_("/_Message/Get new ma_il"),         "<alt>I",       inc_mail_cb, 0, NULL},
485         {N_("/_Message/Get from _all accounts"),
486                                                 "<shift><alt>I", inc_all_account_mail_cb, 0, NULL},
487         {N_("/_Message/---"),                   NULL, NULL, 0, "<Separator>"},
488         {N_("/_Message/Send queued messa_ges"),
489                                                 NULL, send_queue_cb, 0, NULL},
490         {N_("/_Message/---"),                   NULL, NULL, 0, "<Separator>"},
491         {N_("/_Message/Compose a_n email message"),     "<alt>N", compose_mail_cb, 0, NULL},
492         {N_("/_Message/Compose a news message"),        NULL,   compose_news_cb, 0, NULL},
493         {N_("/_Message/_Reply"),                "<alt>R",       reply_cb, COMPOSE_REPLY, NULL},
494         {N_("/_Message/Repl_y to sender"),      "<control><alt>R", reply_cb, COMPOSE_REPLY_TO_SENDER, NULL},
495         {N_("/_Message/Follow-up and reply to"), NULL, reply_cb, COMPOSE_FOLLOWUP_AND_REPLY_TO, NULL},
496         {N_("/_Message/Reply to a_ll"),         "<shift><alt>R", reply_cb, COMPOSE_REPLY_TO_ALL, NULL},
497         {N_("/_Message/_Forward"),              "<control>F", reply_cb, COMPOSE_FORWARD, NULL},
498         {N_("/_Message/Forward as a_ttachment"),
499                                                 "<shift><control>F", reply_cb, COMPOSE_FORWARD_AS_ATTACH, NULL},
500         {N_("/_Message/---"),                   NULL, NULL, 0, "<Separator>"},
501         {N_("/_Message/M_ove..."),              "<alt>O", move_to_cb, 0, NULL},
502         {N_("/_Message/_Copy..."),              NULL, copy_to_cb, 0, NULL},
503         {N_("/_Message/_Delete"),               "<alt>D", delete_cb,  0, NULL},
504         {N_("/_Message/_Mark"),                 NULL, NULL, 0, "<Branch>"},
505         {N_("/_Message/_Mark/_Mark"),           NULL, mark_cb,   0, NULL},
506         {N_("/_Message/_Mark/_Unmark"),         NULL, unmark_cb, 0, NULL},
507         {N_("/_Message/_Mark/---"),             NULL, NULL, 0, "<Separator>"},
508         {N_("/_Message/_Mark/Mark as unr_ead"), NULL, mark_as_unread_cb, 0, NULL},
509         {N_("/_Message/_Mark/Mark as rea_d"),
510                                                 NULL, mark_as_read_cb, 0, NULL},
511         {N_("/_Message/---"),                   NULL, NULL, 0, "<Separator>"},
512         {N_("/_Message/Open in new _window"),   "<shift><control>N", open_msg_cb, 0, NULL},
513         {N_("/_Message/View _source"),          "<control>U", view_source_cb, 0, NULL},
514         {N_("/_Message/Show all _header"),      "<control>H", header_window_show_cb, 0, NULL},
515         {N_("/_Message/Re-_edit"),              NULL, reedit_cb, 0, NULL},
516
517         {N_("/_Summary"),                       NULL, NULL, 0, "<Branch>"},
518         {N_("/_Summary/_Delete duplicated messages"),
519                                                 NULL, delete_duplicated_cb,   0, NULL},
520         {N_("/_Summary/_Filter messages"),      NULL, filter_cb, 0, NULL},
521         {N_("/_Summary/E_xecute"),              "<alt>X", execute_summary_cb, 0, NULL},
522         {N_("/_Summary/_Update"),               "<alt>U", update_summary_cb,  0, NULL},
523         {N_("/_Summary/---"),                   NULL, NULL, 0, "<Separator>"},
524         {N_("/_Summary/_Prev message"),         NULL, prev_cb, 0, NULL},
525         {N_("/_Summary/_Next message"),         NULL, next_cb, 0, NULL},
526         {N_("/_Summary/N_ext unread message"),  NULL, next_unread_cb, 0, NULL},
527         {N_("/_Summary/Prev marked message"),   NULL, prev_marked_cb, 0, NULL},
528         {N_("/_Summary/Next marked message"),   NULL, next_marked_cb, 0, NULL},
529         {N_("/_Summary/---"),                   NULL, NULL, 0, "<Separator>"},
530         {N_("/_Summary/_Go to other folder"),   "<alt>G", goto_folder_cb, 0, NULL},
531         {N_("/_Summary/---"),                   NULL, NULL, 0, "<Separator>"},
532         {N_("/_Summary/_Sort"),                 NULL, NULL, 0, "<Branch>"},
533         {N_("/_Summary/_Sort/Sort by _number"), NULL, sort_summary_cb, SORT_BY_NUMBER, NULL},
534         {N_("/_Summary/_Sort/Sort by s_ize"),   NULL, sort_summary_cb, SORT_BY_SIZE, NULL},
535         {N_("/_Summary/_Sort/Sort by _date"),   NULL, sort_summary_cb, SORT_BY_DATE, NULL},
536         {N_("/_Summary/_Sort/Sort by _from"),   NULL, sort_summary_cb, SORT_BY_FROM, NULL},
537         {N_("/_Summary/_Sort/Sort by _subject"),NULL, sort_summary_cb, SORT_BY_SUBJECT, NULL},
538         {N_("/_Summary/_Sort/Sort by sco_re"),  NULL, sort_summary_cb, SORT_BY_SCORE, NULL},
539         {N_("/_Summary/_Sort/Sort by _label"),  NULL, sort_summary_cb, SORT_BY_LABEL, NULL},
540         {N_("/_Summary/_Sort/---"),             NULL, NULL, 0, "<Separator>"},
541         {N_("/_Summary/_Sort/_Attract by subject"),
542                                                 NULL, attract_by_subject_cb, 0, NULL},
543         {N_("/_Summary/_Thread view"),          "<control>T",        thread_cb, 0, NULL},
544         {N_("/_Summary/Unt_hread view"),        "<shift><control>T", thread_cb, 1, NULL},
545         {N_("/_Summary/Set display _item..."),  NULL, set_display_item_cb, 0, NULL},
546
547         {N_("/_Tool"),                          NULL, NULL, 0, "<Branch>"},
548         {N_("/_Tool/_Address book"),            "<alt>A", addressbook_open_cb, 0, NULL},
549         {N_("/_Tool/_Log window"),              "<alt>L", log_window_show_cb, 0, NULL},
550
551         {N_("/_Configuration"),                 NULL, NULL, 0, "<Branch>"},
552         {N_("/_Configuration/_Common preferences..."),
553                                                 NULL, prefs_common_open_cb, 0, NULL},
554         {N_("/_Configuration/_Filter setting..."),
555                                                 NULL, prefs_filter_open_cb, 0, NULL},
556         {N_("/_Configuration/_Scoring ..."),
557                                                 NULL, prefs_scoring_open_cb, 0, NULL},
558         {N_("/_Configuration/_Filtering ..."),
559                                                 NULL, prefs_filtering_open_cb, 0, NULL},
560         {N_("/_Configuration/_Preferences per account..."),
561                                                 NULL, prefs_account_open_cb, 0, NULL},
562         {N_("/_Configuration/---"),             NULL, NULL, 0, "<Separator>"},
563         {N_("/_Configuration/Create _new account..."),
564                                                 NULL, new_account_cb, 0, NULL},
565         {N_("/_Configuration/_Edit accounts..."),
566                                                 NULL, account_edit_open, 0, NULL},
567         {N_("/_Configuration/C_hange current account"),
568                                                 NULL, NULL, 0, "<Branch>"},
569
570         {N_("/_Help"),                          NULL, NULL, 0, "<LastBranch>"},
571         {N_("/_Help/_Manual"),                  NULL, NULL, 0, "<Branch>"},
572         {N_("/_Help/_Manual/_English"),         NULL, manual_open_cb, MANUAL_LANG_EN, NULL},
573         {N_("/_Help/_Manual/_Japanese"),        NULL, manual_open_cb, MANUAL_LANG_JA, NULL},
574         {N_("/_Help/---"),                      NULL, NULL, 0, "<Separator>"},
575         {N_("/_Help/_About"),                   NULL, about_show, 0, NULL}
576 };
577
578 MainWindow *main_window_create(SeparateType type)
579 {
580         MainWindow *mainwin;
581         GtkWidget *window;
582         GtkWidget *vbox;
583         GtkWidget *menubar;
584         GtkWidget *handlebox;
585         GtkWidget *vbox_body;
586         GtkWidget *hbox_stat;
587         GtkWidget *statusbar;
588         GtkWidget *ac_button;
589         GtkWidget *ac_label;
590
591         FolderView *folderview;
592         SummaryView *summaryview;
593         MessageView *messageview;
594         GdkColormap *colormap;
595         GdkColor color[4];
596         gboolean success[4];
597         guint n_menu_entries;
598         GtkItemFactory *ifactory;
599         GtkWidget *ac_menu;
600         GtkWidget *menuitem;
601         gint i;
602
603         debug_print(_("Creating main window...\n"));
604         mainwin = g_new0(MainWindow, 1);
605
606         /* main window */
607         window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
608         gtk_window_set_title(GTK_WINDOW(window), PROG_VERSION);
609         gtk_window_set_policy(GTK_WINDOW(window), TRUE, TRUE, FALSE);
610         gtk_signal_connect(GTK_OBJECT(window), "delete_event",
611                            GTK_SIGNAL_FUNC(main_window_close_cb), mainwin);
612         gtk_signal_connect(GTK_OBJECT(window), "focus_in_event",
613                            GTK_SIGNAL_FUNC(manage_window_focus_in), NULL);
614         gtk_signal_connect(GTK_OBJECT(window), "focus_out_event",
615                            GTK_SIGNAL_FUNC(manage_window_focus_out), NULL);
616         gtk_widget_realize(window);
617
618         vbox = gtk_vbox_new(FALSE, 0);
619         gtk_widget_show(vbox);
620         gtk_container_add(GTK_CONTAINER(window), vbox);
621
622         /* menu bar */
623         n_menu_entries = sizeof(mainwin_entries) / sizeof(mainwin_entries[0]);
624         menubar = menubar_create(window, mainwin_entries, 
625                                  n_menu_entries, "<Main>", mainwin);
626         gtk_widget_show(menubar);
627         gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, TRUE, 0);
628
629         handlebox = gtk_handle_box_new();
630         gtk_widget_show(handlebox);
631         gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
632
633         main_window_toolbar_create(mainwin, handlebox);
634
635         /* vbox that contains body */
636         vbox_body = gtk_vbox_new(FALSE, BORDER_WIDTH);
637         gtk_widget_show(vbox_body);
638         gtk_container_set_border_width(GTK_CONTAINER(vbox_body), BORDER_WIDTH);
639         gtk_box_pack_start(GTK_BOX(vbox), vbox_body, TRUE, TRUE, 0);
640
641         hbox_stat = gtk_hbox_new(FALSE, 2);
642         gtk_box_pack_end(GTK_BOX(vbox_body), hbox_stat, FALSE, FALSE, 0);
643
644         statusbar = statusbar_create();
645         gtk_box_pack_start(GTK_BOX(hbox_stat), statusbar, TRUE, TRUE, 0);
646
647         ac_button = gtk_button_new();
648         gtk_button_set_relief(GTK_BUTTON(ac_button), GTK_RELIEF_NONE);
649         GTK_WIDGET_UNSET_FLAGS(ac_button, GTK_CAN_FOCUS);
650         gtk_widget_set_usize(ac_button, -1, 1);
651         gtk_box_pack_end(GTK_BOX(hbox_stat), ac_button, FALSE, FALSE, 0);
652         gtk_signal_connect(GTK_OBJECT(ac_button), "button_press_event",
653                            GTK_SIGNAL_FUNC(ac_label_button_pressed), mainwin);
654
655         ac_label = gtk_label_new("");
656         gtk_container_add(GTK_CONTAINER(ac_button), ac_label);
657
658         gtk_widget_show_all(hbox_stat);
659
660         /* create views */
661         mainwin->folderview  = folderview  = folderview_create();
662         mainwin->summaryview = summaryview = summary_create();
663         mainwin->messageview = messageview = messageview_create();
664         mainwin->headerwin   = header_window_create();
665         mainwin->logwin      = log_window_create();
666
667         folderview->mainwin      = mainwin;
668         folderview->summaryview  = summaryview;
669
670         summaryview->mainwin     = mainwin;
671         summaryview->folderview  = folderview;
672         summaryview->messageview = messageview;
673         summaryview->headerwin   = mainwin->headerwin;
674         summaryview->window      = window;
675
676         messageview->mainwin     = mainwin;
677
678         mainwin->window    = window;
679         mainwin->vbox      = vbox;
680         mainwin->menubar   = menubar;
681         mainwin->handlebox = handlebox;
682         mainwin->vbox_body = vbox_body;
683         mainwin->hbox_stat = hbox_stat;
684         mainwin->statusbar = statusbar;
685         mainwin->ac_button = ac_button;
686         mainwin->ac_label  = ac_label;
687
688         /* set context IDs for status bar */
689         mainwin->mainwin_cid = gtk_statusbar_get_context_id
690                 (GTK_STATUSBAR(statusbar), "Main Window");
691         mainwin->folderview_cid = gtk_statusbar_get_context_id
692                 (GTK_STATUSBAR(statusbar), "Folder View");
693         mainwin->summaryview_cid = gtk_statusbar_get_context_id
694                 (GTK_STATUSBAR(statusbar), "Summary View");
695
696         /* allocate colors for summary view and folder view */
697         summaryview->color_marked.red = summaryview->color_marked.green = 0;
698         summaryview->color_marked.blue = (guint16)65535;
699
700         summaryview->color_dim.red = summaryview->color_dim.green =
701                 summaryview->color_dim.blue = COLOR_DIM;
702
703         folderview->color_new.red = (guint16)55000;
704         folderview->color_new.green = folderview->color_new.blue = 15000;
705
706         gtkut_convert_int_to_gdk_color(prefs_common.tgt_folder_col,
707                                        &folderview->color_op);
708
709         summaryview->color_important.red = 0;
710         summaryview->color_marked.green = 0;
711         summaryview->color_important.blue = (guint16)65535;
712
713         color[0] = summaryview->color_marked;
714         color[1] = summaryview->color_dim;
715         color[2] = folderview->color_new;
716         color[3] = folderview->color_op;
717
718         colormap = gdk_window_get_colormap(window->window);
719         gdk_colormap_alloc_colors(colormap, color, 4, FALSE, TRUE, success);
720         for (i = 0; i < 4; i++) {
721                 if (success[i] == FALSE)
722                         g_warning(_("MainWindow: color allocation %d failed\n"), i);
723         }
724
725         debug_print(_("done.\n"));
726
727         main_window_set_widgets(mainwin, type);
728
729         /* set menu items */
730         ifactory = gtk_item_factory_from_widget(menubar);
731         menuitem = gtk_item_factory_get_item
732                 (ifactory, "/View/Code set/Auto detect");
733         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), TRUE);
734
735         switch (prefs_common.toolbar_style) {
736         case TOOLBAR_NONE:
737                 menuitem = gtk_item_factory_get_item
738                         (ifactory, "/View/Toolbar/None");
739                 break;
740         case TOOLBAR_ICON:
741                 menuitem = gtk_item_factory_get_item
742                         (ifactory, "/View/Toolbar/Icon");
743                 break;
744         case TOOLBAR_TEXT:
745                 menuitem = gtk_item_factory_get_item
746                         (ifactory, "/View/Toolbar/Text");
747                 break;
748         case TOOLBAR_BOTH:
749                 menuitem = gtk_item_factory_get_item
750                         (ifactory, "/View/Toolbar/Icon and text");
751         }
752         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), TRUE);
753
754         gtk_widget_hide(mainwin->hbox_stat);
755         menuitem = gtk_item_factory_get_item(ifactory, "/View/Status bar");
756         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
757                                        prefs_common.show_statusbar);
758
759         /* set the check of the SEPARATE_xxx menu items. we also need the main window
760          * as a property and pass the action type to the callback */
761         menuitem = gtk_item_factory_get_widget_by_action(ifactory, SEPARATE_ACTION + SEPARATE_FOLDER);
762         g_assert(menuitem);
763         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), type & SEPARATE_FOLDER);
764         gtk_object_set_data(GTK_OBJECT(menuitem), "mainwindow", mainwin);
765         gtk_signal_connect(GTK_OBJECT(menuitem), "toggled", GTK_SIGNAL_FUNC(separate_widget_cb), 
766                                            GUINT_TO_POINTER(SEPARATE_FOLDER));
767
768         menuitem = gtk_item_factory_get_widget_by_action(ifactory, SEPARATE_ACTION + SEPARATE_MESSAGE);
769         g_assert(menuitem);
770         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), type & SEPARATE_MESSAGE);
771         gtk_object_set_data(GTK_OBJECT(menuitem), "mainwindow", mainwin);
772         gtk_signal_connect(GTK_OBJECT(menuitem), "toggled", GTK_SIGNAL_FUNC(separate_widget_cb), 
773                                            GUINT_TO_POINTER(SEPARATE_MESSAGE));
774
775         /*
776         menu_set_sensitive(ifactory, "/Summary/Thread view",
777                            prefs_common.enable_thread ? FALSE : TRUE);
778         menu_set_sensitive(ifactory, "/Summary/Unthread view",
779                            prefs_common.enable_thread ? TRUE : FALSE);
780         */
781         main_window_set_thread_option(mainwin);
782
783
784         /* set account selection menu */
785         ac_menu = gtk_item_factory_get_widget
786                 (ifactory, "/Configuration/Change current account");
787         mainwin->ac_menu = ac_menu;
788
789         main_window_set_toolbar_sensitive(mainwin, FALSE);
790
791         /* show main window */
792         gtk_widget_set_uposition(mainwin->window,
793                                  prefs_common.mainwin_x,
794                                  prefs_common.mainwin_y);
795         gtk_widget_set_usize(window, prefs_common.mainwin_width,
796                              prefs_common.mainwin_height);
797         gtk_widget_show(mainwin->window);
798
799         /* initialize views */
800         folderview_init(folderview);
801         summary_init(summaryview);
802         messageview_init(messageview);
803         header_window_init(mainwin->headerwin);
804         log_window_init(mainwin->logwin);
805
806         mainwin->cursor_count = 0;
807
808         if (!watch_cursor)
809                 watch_cursor = gdk_cursor_new(GDK_WATCH);
810
811         mainwin_list = g_list_append(mainwin_list, mainwin);
812
813         return mainwin;
814 }
815
816 void main_window_cursor_wait(MainWindow *mainwin)
817 {
818         if (mainwin->cursor_count == 0)
819                 gdk_window_set_cursor(mainwin->window->window, watch_cursor);
820
821         mainwin->cursor_count++;
822
823         gdk_flush();
824 }
825
826 void main_window_cursor_normal(MainWindow *mainwin)
827 {
828         if (mainwin->cursor_count)
829                 mainwin->cursor_count--;
830
831         if (mainwin->cursor_count == 0)
832                 gdk_window_set_cursor(mainwin->window->window, NULL);
833
834         gdk_flush();
835 }
836
837 void main_window_reflect_prefs_all(void)
838 {
839         GList *cur;
840         MainWindow *mainwin;
841
842         for (cur = mainwin_list; cur != NULL; cur = cur->next) {
843                 mainwin = (MainWindow *)cur->data;
844
845                 main_window_show_cur_account(mainwin);
846                 if (cur_account) {
847                         gtk_widget_set_sensitive(mainwin->get_btn,    TRUE);
848                         gtk_widget_set_sensitive(mainwin->getall_btn, TRUE);
849                 } else {
850                         gtk_widget_set_sensitive(mainwin->get_btn,    FALSE);
851                         gtk_widget_set_sensitive(mainwin->getall_btn, FALSE);
852                 }
853
854                 if (prefs_common.immediate_exec)
855                         gtk_widget_hide(mainwin->exec_btn);
856                 else
857                         gtk_widget_show(mainwin->exec_btn);
858
859                 summary_change_display_item(mainwin->summaryview);
860                 summary_redisplay_msg(mainwin->summaryview);
861                 headerview_set_visibility(mainwin->messageview->headerview,
862                                           prefs_common.display_header_pane);
863         }
864 }
865
866 void main_window_set_account_menu(GList *account_list)
867 {
868         GList *cur, *cur_ac, *cur_item;
869         GtkWidget *menuitem;
870         MainWindow *mainwin;
871         PrefsAccount *ac_prefs;
872
873         for (cur = mainwin_list; cur != NULL; cur = cur->next) {
874                 mainwin = (MainWindow *)cur->data;
875
876                 /* destroy all previous menu item */
877                 cur_item = GTK_MENU_SHELL(mainwin->ac_menu)->children;
878                 while (cur_item != NULL) {
879                         GList *next = cur_item->next;
880                         gtk_widget_destroy(GTK_WIDGET(cur_item->data));
881                         cur_item = next;
882                 }
883
884                 for (cur_ac = account_list; cur_ac != NULL;
885                      cur_ac = cur_ac->next) {
886                         ac_prefs = (PrefsAccount *)cur_ac->data;
887
888                         menuitem = gtk_menu_item_new_with_label
889                                 (ac_prefs->account_name
890                                  ? ac_prefs->account_name : _("Untitled"));
891                         gtk_widget_show(menuitem);
892                         gtk_menu_append(GTK_MENU(mainwin->ac_menu), menuitem);
893                         gtk_signal_connect(GTK_OBJECT(menuitem), "activate",
894                                            GTK_SIGNAL_FUNC(account_menu_cb),
895                                            ac_prefs);
896                 }
897         }
898 }
899
900 static void main_window_show_cur_account(MainWindow *mainwin)
901 {
902         gchar *buf;
903         gchar *ac_name;
904
905         ac_name = g_strdup(cur_account
906                            ? (cur_account->account_name
907                               ? cur_account->account_name : _("Untitled"))
908                            : _("none"));
909
910         if (cur_account)
911                 buf = g_strdup_printf("%s - %s", ac_name, PROG_VERSION);
912         else
913                 buf = g_strdup(PROG_VERSION);
914         gtk_window_set_title(GTK_WINDOW(mainwin->window), buf);
915         g_free(buf);
916
917         buf = g_strdup_printf(_("Current account: %s"), ac_name);
918         gtk_label_set_text(GTK_LABEL(mainwin->ac_label), buf);
919         gtk_widget_queue_resize(mainwin->ac_button);
920         g_free(buf);
921
922         g_free(ac_name);
923 }
924
925 void main_window_separation_change(MainWindow *mainwin, SeparateType type)
926 {
927         GtkWidget *folder_wid  = GTK_WIDGET_PTR(mainwin->folderview);
928         GtkWidget *summary_wid = GTK_WIDGET_PTR(mainwin->summaryview);
929         GtkWidget *message_wid = GTK_WIDGET_PTR(mainwin->messageview);
930
931         if (mainwin->type == type) return;
932
933         /* remove widgets from those containers */
934         gtk_widget_ref(folder_wid);
935         gtk_widget_ref(summary_wid);
936         gtk_widget_ref(message_wid);
937         gtk_container_remove
938                 (GTK_CONTAINER(folder_wid->parent), folder_wid);
939         gtk_container_remove
940                 (GTK_CONTAINER(summary_wid->parent), summary_wid);
941         gtk_container_remove
942                 (GTK_CONTAINER(message_wid->parent), message_wid);
943
944         /* clean containers */
945         switch (mainwin->type) {
946         case SEPARATE_NONE:
947                 gtk_widget_destroy(mainwin->win.sep_none.hpaned);
948                 break;
949         case SEPARATE_FOLDER:
950                 gtk_widget_destroy(mainwin->win.sep_folder.vpaned);
951                 gtk_widget_destroy(mainwin->win.sep_folder.folderwin);
952                 break;
953         case SEPARATE_MESSAGE:
954                 gtk_widget_destroy(mainwin->win.sep_message.hpaned);
955                 gtk_widget_destroy(mainwin->win.sep_message.messagewin);
956                 break;
957         case SEPARATE_BOTH:
958                 gtk_widget_destroy(mainwin->win.sep_both.messagewin);
959                 gtk_widget_destroy(mainwin->win.sep_both.folderwin);
960                 break;
961         }
962
963         gtk_widget_hide(mainwin->window);
964         main_window_set_widgets(mainwin, type);
965         gtk_widget_show(mainwin->window);
966
967         gtk_widget_unref(folder_wid);
968         gtk_widget_unref(summary_wid);
969         gtk_widget_unref(message_wid);
970 }
971
972 void main_window_get_size(MainWindow *mainwin)
973 {
974         GtkAllocation *allocation;
975
976         allocation = &(GTK_WIDGET_PTR(mainwin->summaryview)->allocation);
977
978         prefs_common.summaryview_width  = allocation->width;
979
980         if (mainwin->summaryview->msg_is_toggled_on)
981                 prefs_common.summaryview_height = allocation->height;
982
983         prefs_common.mainview_width     = allocation->width;
984
985         allocation = &mainwin->window->allocation;
986
987         prefs_common.mainview_height = allocation->height;
988         prefs_common.mainwin_width   = allocation->width;
989         prefs_common.mainwin_height  = allocation->height;
990
991         allocation = &(GTK_WIDGET_PTR(mainwin->folderview)->allocation);
992
993         prefs_common.folderview_width  = allocation->width;
994         prefs_common.folderview_height = allocation->height;
995 }
996
997 void main_window_get_position(MainWindow *mainwin)
998 {
999         gint x, y;
1000
1001         gtkut_widget_get_uposition(mainwin->window, &x, &y);
1002
1003         prefs_common.mainview_x = x;
1004         prefs_common.mainview_y = y;
1005         prefs_common.mainwin_x = x;
1006         prefs_common.mainwin_y = y;
1007
1008         debug_print(_("window position: x = %d, y = %d\n"), x, y);
1009 }
1010
1011 void main_window_empty_trash(MainWindow *mainwin, gboolean confirm)
1012 {
1013         GList *list;
1014
1015         if (confirm) {
1016                 if (alertpanel(_("Empty trash"),
1017                                _("Empty all messages in trash?"),
1018                                _("Yes"), _("No"), NULL) != G_ALERTDEFAULT)
1019                         return;
1020                 manage_window_focus_in(mainwin->window, NULL, NULL);
1021         }
1022
1023         procmsg_empty_trash();
1024
1025         for (list = folder_get_list(); list != NULL; list = list->next) {
1026                 Folder *folder;
1027
1028                 folder = list->data;
1029                 if (folder->trash) {
1030                         folder_item_scan(folder->trash);
1031                         folderview_update_item(folder->trash, TRUE);
1032                 }
1033         }
1034
1035         if (mainwin->summaryview->folder_item &&
1036             mainwin->summaryview->folder_item->stype == F_TRASH)
1037                 gtk_widget_grab_focus(mainwin->folderview->ctree);
1038 }
1039
1040 void main_window_add_mailbox(MainWindow *mainwin)
1041 {
1042         gchar *path;
1043         Folder *folder;
1044
1045         path = input_dialog(_("Add mailbox"),
1046                             _("Input the location of mailbox.\n"
1047                               "If the existing mailbox is specified, it will be\n"
1048                               "scanned automatically."),
1049                             "Mail");
1050         if (!path) return;
1051         if (folder_find_from_path(path)) {
1052                 alertpanel_error(_("The mailbox `%s' already exists."), path);
1053                 g_free(path);
1054                 return;
1055         }
1056
1057         if (!strcmp(path, "Mail"))
1058                 folder = folder_new(F_MH, _("Mailbox"), path);
1059         else
1060                 folder = folder_new(F_MH, g_basename(path), path);
1061
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();
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)
2090 {
2091         MainWindow *mainwin;
2092         SeparateType type;
2093
2094         mainwin = (MainWindow *) gtk_object_get_data(GTK_OBJECT(checkitem), "mainwindow");
2095         g_return_if_fail(mainwin != NULL);
2096
2097         type = mainwin->type ^ action;
2098         main_window_separation_change(mainwin, type);
2099
2100         prefs_common.sep_folder = (type & SEPARATE_FOLDER)  != 0;
2101         prefs_common.sep_msg    = (type & SEPARATE_MESSAGE) != 0;
2102 }
2103
2104 static void addressbook_open_cb(MainWindow *mainwin, guint action,
2105                                 GtkWidget *widget)
2106 {
2107         addressbook_open(NULL);
2108 }
2109
2110 static void log_window_show_cb(MainWindow *mainwin, guint action,
2111                                GtkWidget *widget)
2112 {
2113         log_window_show(mainwin->logwin);
2114 }
2115
2116 static void inc_mail_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2117 {
2118         inc_mail(mainwin);
2119 }
2120
2121 static void inc_all_account_mail_cb(MainWindow *mainwin, guint action,
2122                                     GtkWidget *widget)
2123 {
2124         inc_all_account_mail(mainwin);
2125 }
2126
2127 static void send_queue_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2128 {
2129         GList *list;
2130
2131         if (procmsg_send_queue() < 0)
2132                 alertpanel_error(_("Sending queued message failed."));
2133
2134         statusbar_pop_all();
2135
2136         for (list = folder_get_list(); list != NULL; list = list->next) {
2137                 Folder *folder;
2138
2139                 folder = list->data;
2140                 if (folder->queue) {
2141                         folder_item_scan(folder->queue);
2142                         folderview_update_item(folder->queue, TRUE);
2143                 }
2144         }
2145 }
2146
2147 static void compose_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2148 {
2149         if (mainwin->summaryview->folder_item) {
2150                 if (mainwin->summaryview->folder_item->folder->account != NULL
2151                     && mainwin->summaryview->folder_item->folder->account->protocol == A_NNTP)
2152                         compose_new_with_recipient(mainwin->summaryview->folder_item->folder->account, mainwin->summaryview->folder_item->path);
2153                 else
2154                         compose_new_with_folderitem(mainwin->summaryview->folder_item->folder->account, mainwin->summaryview->folder_item);
2155         }
2156         else
2157                 compose_new(NULL);
2158 }
2159
2160 static void compose_mail_cb(MainWindow *mainwin, guint action,
2161                             GtkWidget *widget)
2162 {
2163         PrefsAccount * ac;
2164         GList * list;
2165         GList * cur;
2166
2167         if (mainwin->summaryview->folder_item) {
2168                 ac = mainwin->summaryview->folder_item->folder->account;
2169                 if (ac && ac->protocol != A_NNTP) {
2170                         compose_new_with_folderitem(ac, mainwin->summaryview->folder_item);
2171                         return;
2172                 }
2173         }
2174
2175         if(cur_account && (cur_account->protocol != A_NNTP)) {
2176                 compose_new_with_folderitem(cur_account, mainwin->summaryview->folder_item);
2177                 return;
2178         }
2179
2180         list = account_get_list();
2181         for(cur = list ; cur != NULL ; cur = g_list_next(cur)) {
2182                 ac = (PrefsAccount *) cur->data;
2183                 if (ac->protocol != A_NNTP) {
2184                         compose_new_with_folderitem(ac, mainwin->summaryview->folder_item);
2185                         return;
2186                 }
2187         }
2188 }
2189
2190 static void compose_news_cb(MainWindow *mainwin, guint action,
2191                             GtkWidget *widget)
2192 {
2193         PrefsAccount * ac = NULL;
2194         GList * list;
2195         GList * cur;
2196
2197         if (mainwin->summaryview->folder_item) {
2198                 ac = mainwin->summaryview->folder_item->folder->account;
2199                 if (ac && ac->protocol == A_NNTP) {
2200                         compose_new_with_recipient
2201                                 (ac, mainwin->summaryview->folder_item->path);
2202                         return;
2203                 }
2204         }
2205
2206         list = account_get_list();
2207         for(cur = list ; cur != NULL ; cur = g_list_next(cur)) {
2208                 ac = (PrefsAccount *) cur->data;
2209                 if (ac->protocol == A_NNTP) {
2210                         compose_new(ac);
2211                         return;
2212                 }
2213         }
2214 }
2215
2216 static void reply_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2217 {
2218         GList  *sel = GTK_CLIST(mainwin->summaryview->ctree)->selection;
2219         MsgInfo *msginfo;
2220
2221         msginfo = gtk_ctree_node_get_row_data
2222                 (GTK_CTREE(mainwin->summaryview->ctree),
2223                  mainwin->summaryview->selected);
2224
2225         if (!msginfo) return;
2226
2227         switch (action) {
2228         case COMPOSE_REPLY:
2229                 compose_reply(msginfo, prefs_common.reply_with_quote,
2230                               FALSE, FALSE);
2231                 break;
2232         case COMPOSE_REPLY_TO_SENDER:
2233                 compose_reply(msginfo, prefs_common.reply_with_quote,
2234                               FALSE, TRUE);
2235                 break;
2236         case COMPOSE_FOLLOWUP_AND_REPLY_TO:
2237                 compose_followup_and_reply_to(msginfo,
2238                                               prefs_common.reply_with_quote,
2239                                               FALSE, TRUE);
2240                 break;
2241         case COMPOSE_REPLY_TO_ALL:
2242                 compose_reply(msginfo, prefs_common.reply_with_quote,
2243                               TRUE, FALSE);
2244                 break;
2245         case COMPOSE_FORWARD:
2246                 if (!sel->next) {
2247                         compose_forward(NULL, msginfo, FALSE);
2248                         break;
2249                 }
2250                 /* if (sel->next) FALL_THROUGH */
2251         case COMPOSE_FORWARD_AS_ATTACH:
2252                 {
2253                         GSList *msginfo_list = NULL;
2254                         for ( ; sel != NULL; sel = sel->next)
2255                                 msginfo_list = g_slist_append(msginfo_list, 
2256                                         gtk_ctree_node_get_row_data(GTK_CTREE(mainwin->summaryview->ctree),
2257                                                 GTK_CTREE_NODE(sel->data)));
2258                         compose_forward_multiple(NULL, msginfo_list);
2259                         g_slist_free(msginfo_list);
2260                 }                       
2261                 break;
2262         default:
2263                 g_warning("reply_cb(): invalid action type: %d\n", action);
2264         }
2265
2266         summary_set_marks_selected(mainwin->summaryview);
2267 }
2268
2269 static void move_to_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2270 {
2271         summary_move_to(mainwin->summaryview);
2272 }
2273
2274 static void copy_to_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2275 {
2276         summary_copy_to(mainwin->summaryview);
2277 }
2278
2279 static void delete_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2280 {
2281         summary_delete(mainwin->summaryview);
2282 }
2283
2284 static void open_msg_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2285 {
2286         summary_open_msg(mainwin->summaryview);
2287 }
2288
2289 static void view_source_cb(MainWindow *mainwin, guint action,
2290                            GtkWidget *widget)
2291 {
2292         summary_view_source(mainwin->summaryview);
2293 }
2294
2295 static void reedit_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2296 {
2297         summary_reedit(mainwin->summaryview);
2298 }
2299
2300 static void mark_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2301 {
2302         summary_mark(mainwin->summaryview);
2303 }
2304
2305 static void unmark_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2306 {
2307         summary_unmark(mainwin->summaryview);
2308 }
2309
2310 static void mark_as_unread_cb(MainWindow *mainwin, guint action,
2311                               GtkWidget *widget)
2312 {
2313         summary_mark_as_unread(mainwin->summaryview);
2314 }
2315
2316 static void mark_as_read_cb(MainWindow *mainwin, guint action,
2317                             GtkWidget *widget)
2318 {
2319         summary_mark_as_read(mainwin->summaryview);
2320 }
2321
2322 static void set_charset_cb(MainWindow *mainwin, guint action,
2323                            GtkWidget *widget)
2324 {
2325         const gchar *str;
2326
2327         str = conv_get_charset_str((CharSet)action);
2328         g_free(prefs_common.force_charset);
2329         prefs_common.force_charset = str ? g_strdup(str) : NULL;
2330
2331         summary_redisplay_msg(mainwin->summaryview);
2332
2333         debug_print(_("forced charset: %s\n"), str ? str : "Auto-Detect");
2334 }
2335
2336 void main_window_set_thread_option(MainWindow *mainwin)
2337 {
2338         GtkItemFactory *ifactory;
2339         gboolean no_item = FALSE;
2340
2341         ifactory = gtk_item_factory_from_widget(mainwin->menubar);
2342
2343         if (mainwin->summaryview == NULL)
2344                 no_item = TRUE;
2345         else if (mainwin->summaryview->folder_item == NULL)
2346                 no_item = TRUE;
2347
2348         if (no_item) {
2349                 menu_set_sensitive(ifactory, "/Summary/Thread view",   FALSE);
2350                 menu_set_sensitive(ifactory, "/Summary/Unthread view", FALSE);
2351         }
2352         else {
2353                 if (mainwin->summaryview->folder_item->prefs->enable_thread) {
2354                         menu_set_sensitive(ifactory,
2355                                            "/Summary/Thread view",   FALSE);
2356                         menu_set_sensitive(ifactory,
2357                                            "/Summary/Unthread view", TRUE);
2358                         summary_thread_build(mainwin->summaryview);
2359                 }
2360                 else {
2361                         menu_set_sensitive(ifactory,
2362                                            "/Summary/Thread view",   TRUE);
2363                         menu_set_sensitive(ifactory,
2364                                            "/Summary/Unthread view", FALSE);
2365                         summary_unthread(mainwin->summaryview);
2366                 }
2367                 prefs_folder_item_save_config(mainwin->summaryview->folder_item);
2368         }
2369 }
2370
2371 static void thread_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2372 {
2373         mainwin->summaryview->folder_item->prefs->enable_thread =
2374                 !mainwin->summaryview->folder_item->prefs->enable_thread;
2375         main_window_set_thread_option(mainwin);
2376
2377         /*
2378         if (0 == action) {
2379                 summary_thread_build(mainwin->summaryview);
2380                 mainwin->summaryview->folder_item->prefs->enable_thread =
2381                         TRUE;
2382                 menu_set_sensitive(ifactory, "/Summary/Thread view",   FALSE);
2383                 menu_set_sensitive(ifactory, "/Summary/Unthread view", TRUE);
2384         } else {
2385                 summary_unthread(mainwin->summaryview);
2386                 mainwin->summaryview->folder_item->prefs->enable_thread =
2387                         FALSE;
2388                 menu_set_sensitive(ifactory, "/Summary/Thread view",   TRUE);
2389                 menu_set_sensitive(ifactory, "/Summary/Unthread view", FALSE);
2390         }
2391         */
2392 }
2393
2394 static void set_display_item_cb(MainWindow *mainwin, guint action,
2395                                 GtkWidget *widget)
2396 {
2397         prefs_summary_display_item_set();
2398 }
2399
2400 static void sort_summary_cb(MainWindow *mainwin, guint action,
2401                             GtkWidget *widget)
2402 {
2403         summary_sort(mainwin->summaryview, (SummarySortType)action);
2404 }
2405
2406 static void attract_by_subject_cb(MainWindow *mainwin, guint action,
2407                                   GtkWidget *widget)
2408 {
2409         summary_attract_by_subject(mainwin->summaryview);
2410 }
2411
2412 static void delete_duplicated_cb(MainWindow *mainwin, guint action,
2413                                  GtkWidget *widget)
2414 {
2415         summary_delete_duplicated(mainwin->summaryview);
2416 }
2417
2418 static void filter_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2419 {
2420         summary_filter(mainwin->summaryview);
2421 }
2422
2423 static void execute_summary_cb(MainWindow *mainwin, guint action,
2424                                GtkWidget *widget)
2425 {
2426         summary_execute(mainwin->summaryview);
2427 }
2428
2429 static void update_summary_cb(MainWindow *mainwin, guint action,
2430                               GtkWidget *widget)
2431 {
2432         FolderItem *fitem;
2433         FolderView *folderview = mainwin->folderview;
2434
2435         if (!mainwin->summaryview->folder_item) return;
2436         if (!folderview->opened) return;
2437
2438         folder_update_op_count();
2439
2440         fitem = gtk_ctree_node_get_row_data(GTK_CTREE(folderview->ctree),
2441                                             folderview->opened);
2442         if (!fitem) return;
2443
2444         summary_show(mainwin->summaryview, fitem, TRUE);
2445 }
2446
2447 static void prev_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2448 {
2449         summary_step(mainwin->summaryview, GTK_SCROLL_STEP_BACKWARD);
2450 }
2451
2452 static void next_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2453 {
2454         summary_step(mainwin->summaryview, GTK_SCROLL_STEP_FORWARD);
2455 }
2456
2457 static void next_unread_cb(MainWindow *mainwin, guint action,
2458                            GtkWidget *widget)
2459 {
2460         summary_select_next_unread(mainwin->summaryview);
2461 }
2462
2463 static void next_marked_cb(MainWindow *mainwin, guint action,
2464                            GtkWidget *widget)
2465 {
2466         summary_select_next_marked(mainwin->summaryview);
2467 }
2468
2469 static void prev_marked_cb(MainWindow *mainwin, guint action,
2470                            GtkWidget *widget)
2471 {
2472         summary_select_prev_marked(mainwin->summaryview);
2473 }
2474
2475 static void goto_folder_cb(MainWindow *mainwin, guint action,
2476                            GtkWidget *widget)
2477 {
2478         FolderItem *to_folder;
2479
2480         to_folder = foldersel_folder_sel(NULL, NULL);
2481
2482         if (to_folder)
2483                 folderview_select(mainwin->folderview, to_folder);
2484 }
2485
2486 static void copy_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2487 {
2488         messageview_copy_clipboard(mainwin->messageview);
2489 }
2490
2491 static void allsel_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2492 {
2493         if (GTK_WIDGET_HAS_FOCUS(mainwin->summaryview->ctree))
2494                 summary_select_all(mainwin->summaryview);
2495         else if (mainwin->summaryview->msg_is_toggled_on &&
2496                  GTK_WIDGET_HAS_FOCUS(mainwin->messageview->textview->text))
2497                 messageview_select_all(mainwin->messageview);
2498 }
2499
2500 static void prefs_common_open_cb(MainWindow *mainwin, guint action,
2501                                  GtkWidget *widget)
2502 {
2503         prefs_common_open();
2504 }
2505
2506 static void prefs_filter_open_cb(MainWindow *mainwin, guint action,
2507                                  GtkWidget *widget)
2508 {
2509         prefs_filter_open();
2510 }
2511
2512 static void prefs_scoring_open_cb(MainWindow *mainwin, guint action,
2513                                   GtkWidget *widget)
2514 {
2515         prefs_scoring_open(NULL);
2516 }
2517
2518 static void prefs_filtering_open_cb(MainWindow *mainwin, guint action,
2519                                     GtkWidget *widget)
2520 {
2521         prefs_filtering_open();
2522 }
2523
2524 static void prefs_account_open_cb(MainWindow *mainwin, guint action,
2525                                   GtkWidget *widget)
2526 {
2527         if (!cur_account) {
2528                 new_account_cb(mainwin, 0, widget);
2529         } else {
2530                 gboolean prev_default = cur_account->is_default;
2531
2532                 prefs_account_open(cur_account);
2533                 if (!prev_default && cur_account->is_default)
2534                         account_set_as_default(cur_account);
2535                 account_save_config_all();
2536                 account_set_menu();
2537                 main_window_reflect_prefs_all();
2538         }
2539 }
2540
2541 static void new_account_cb(MainWindow *mainwin, guint action,
2542                            GtkWidget *widget)
2543 {
2544         account_edit_open();
2545         if (!compose_get_compose_list()) account_add();
2546 }
2547
2548 static void account_menu_cb(GtkMenuItem *menuitem, gpointer data)
2549 {
2550         cur_account = (PrefsAccount *)data;
2551         main_window_reflect_prefs_all();
2552 }
2553
2554 static void manual_open_cb(MainWindow *mainwin, guint action,
2555                            GtkWidget *widget)
2556 {
2557         manual_open((ManualLang)action);
2558 }
2559
2560 static void scan_tree_func(Folder *folder, FolderItem *item, gpointer data)
2561 {
2562         MainWindow *mainwin = (MainWindow *)data;
2563         gchar *str;
2564
2565         if (item->path)
2566                 str = g_strdup_printf(_("Scanning folder %s%c%s ..."),
2567                                       LOCAL_FOLDER(folder)->rootpath,
2568                                       G_DIR_SEPARATOR,
2569                                       item->path);
2570         else
2571                 str = g_strdup_printf(_("Scanning folder %s ..."),
2572                                       LOCAL_FOLDER(folder)->rootpath);
2573
2574         STATUSBAR_PUSH(mainwin, str);
2575         STATUSBAR_POP(mainwin);
2576         g_free(str);
2577 }
2578
2579 static void activate_compose_button (MainWindow *mainwin,
2580                                 ToolbarStyle style,
2581                                 ComposeButtonType type)
2582 {
2583         if (style == TOOLBAR_NONE) 
2584                 return;
2585
2586         if (style == TOOLBAR_BOTH) {    
2587                 gtk_widget_hide(mainwin->compose_mail_btn_plain);
2588                 gtk_widget_hide(mainwin->compose_news_btn_plain);
2589                 gtk_widget_hide(type == COMPOSEBUTTON_NEWS ? mainwin->compose_mail_btn 
2590                         : mainwin->compose_news_btn);
2591                 gtk_widget_show(type == COMPOSEBUTTON_NEWS ? mainwin->compose_news_btn
2592                         : mainwin->compose_mail_btn);
2593                 mainwin->compose_btn_type = type;       
2594         }
2595         else {
2596                 gtk_widget_hide(mainwin->compose_news_btn);
2597                 gtk_widget_hide(mainwin->compose_mail_btn);
2598                 gtk_widget_hide(type == COMPOSEBUTTON_NEWS ? mainwin->compose_mail_btn_plain 
2599                         : mainwin->compose_news_btn_plain);
2600                 gtk_widget_show(type == COMPOSEBUTTON_NEWS ? mainwin->compose_news_btn_plain
2601                         : mainwin->compose_mail_btn_plain);
2602                 mainwin->compose_btn_type = type;               
2603         }
2604 }
2605