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