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