update and re-arrange
[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 "prefs_gtk.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         if (mainwin->summaryview->folder_item &&
1366             mainwin->summaryview->folder_item->stype == F_TRASH)
1367                 gtk_widget_grab_focus(mainwin->folderview->ctree);
1368 }
1369
1370 void main_window_add_mailbox(MainWindow *mainwin)
1371 {
1372         gchar *path;
1373         Folder *folder;
1374
1375         path = input_dialog(_("Add mailbox"),
1376                             _("Input the location of mailbox.\n"
1377                               "If the existing mailbox is specified, it will be\n"
1378                               "scanned automatically."),
1379                             "Mail");
1380         if (!path) return;
1381         if (folder_find_from_path(path)) {
1382                 alertpanel_error(_("The mailbox `%s' already exists."), path);
1383                 g_free(path);
1384                 return;
1385         }
1386         if (!strcmp(path, "Mail"))
1387                 folder = folder_new(F_MH, _("Mailbox"), path);
1388         else
1389                 folder = folder_new(F_MH, g_basename(path), path);
1390         g_free(path);
1391
1392         if (folder->create_tree(folder) < 0) {
1393                 alertpanel_error(_("Creation of the mailbox failed.\n"
1394                                    "Maybe some files already exist, or you don't have the permission to write there."));
1395                 folder_destroy(folder);
1396                 return;
1397         }
1398
1399         folder_add(folder);
1400         folder_set_ui_func(folder, scan_tree_func, mainwin);
1401         folder_scan_tree(folder);
1402         folder_set_ui_func(folder, NULL, NULL);
1403
1404         folderview_set(mainwin->folderview);
1405 }
1406
1407 void main_window_add_mbox(MainWindow *mainwin)
1408 {
1409         gchar *path;
1410         Folder *folder;
1411         FolderItem * item;
1412
1413         path = input_dialog(_("Add mbox mailbox"),
1414                             _("Input the location of mailbox."),
1415                             "mail");
1416
1417         if (!path) return;
1418
1419         if (folder_find_from_path(path)) {
1420                 alertpanel_error(_("The mailbox `%s' already exists."), path);
1421                 g_free(path);
1422                 return;
1423         }
1424
1425         /*
1426         if (!strcmp(path, "Mail"))
1427                 folder = folder_new(F_MBOX, _("Mailbox"), path);
1428                 else
1429         */
1430
1431         folder = folder_new(F_MBOX, g_basename(path), path);
1432         g_free(path);
1433
1434         if (folder->create_tree(folder) < 0) {
1435                 alertpanel_error(_("Creation of the mailbox failed."));
1436                 folder_destroy(folder);
1437                 return;
1438         }
1439
1440         folder_add(folder);
1441
1442         item = folder_item_new(folder, folder->name, NULL);
1443         item->folder = folder;
1444         folder->node = g_node_new(item);
1445
1446         folder_create_folder(item, "inbox");
1447         folder_create_folder(item, "outbox");
1448         folder_create_folder(item, "queue");
1449         folder_create_folder(item, "draft");
1450         folder_create_folder(item, "trash");
1451
1452         folderview_set(mainwin->folderview);
1453 }
1454
1455 SensitiveCond main_window_get_current_state(MainWindow *mainwin)
1456 {
1457         SensitiveCond state = 0;
1458         SummarySelection selection;
1459         FolderItem *item = mainwin->summaryview->folder_item;
1460         GList *account_list = account_get_list();
1461         
1462         selection = summary_get_selection_type(mainwin->summaryview);
1463
1464         if (mainwin->lock_count == 0)
1465                 state |= M_UNLOCKED;
1466         if (selection != SUMMARY_NONE)
1467                 state |= M_MSG_EXIST;
1468         if (item && item->path && item->parent && !item->no_select) {
1469                 state |= M_EXEC;
1470                 /*              if (item->folder->type != F_NEWS) */
1471                 state |= M_ALLOW_DELETE;
1472
1473                 if (prefs_common.immediate_exec == 0
1474                     && mainwin->lock_count == 0)
1475                         state |= M_DELAY_EXEC;
1476
1477                 if ((selection == SUMMARY_NONE && item->hide_read_msgs)
1478                     || selection != SUMMARY_NONE)
1479                         state |= M_HIDE_READ_MSG;       
1480         }               
1481         if (mainwin->summaryview->threaded)
1482                 state |= M_THREADED;
1483         else
1484                 state |= M_UNTHREADED;  
1485         if (selection == SUMMARY_SELECTED_SINGLE ||
1486             selection == SUMMARY_SELECTED_MULTIPLE)
1487                 state |= M_TARGET_EXIST;
1488         if (selection == SUMMARY_SELECTED_SINGLE)
1489                 state |= M_SINGLE_TARGET_EXIST;
1490         if (mainwin->summaryview->folder_item &&
1491             mainwin->summaryview->folder_item->folder->type == F_NEWS)
1492                 state |= M_NEWS;
1493         else
1494                 state |= M_NOT_NEWS;
1495         if (selection == SUMMARY_SELECTED_SINGLE &&
1496             (item &&
1497              (item->stype == F_OUTBOX || item->stype == F_DRAFT ||
1498               item->stype == F_QUEUE)))
1499                 state |= M_ALLOW_REEDIT;
1500         if (cur_account)
1501                 state |= M_HAVE_ACCOUNT;
1502         
1503         for ( ; account_list != NULL; account_list = account_list->next) {
1504                 if (((PrefsAccount*)account_list->data)->protocol == A_NNTP) {
1505                         state |= M_HAVE_NEWS_ACCOUNT;
1506                         break;
1507                 }
1508         }
1509
1510         if (inc_is_active())
1511                 state |= M_INC_ACTIVE;
1512
1513         return state;
1514 }
1515
1516
1517
1518 void main_window_set_menu_sensitive(MainWindow *mainwin)
1519 {
1520         GtkItemFactory *ifactory = mainwin->menu_factory;
1521         SensitiveCond state;
1522         gboolean sensitive;
1523         GtkWidget *menuitem;
1524         SummaryView *summaryview;
1525         gchar *menu_path;
1526         gint i;
1527
1528         static const struct {
1529                 gchar *const entry;
1530                 SensitiveCond cond;
1531         } entry[] = {
1532                 {"/File/Add mailbox..."                       , M_UNLOCKED},
1533                 {"/File/Add mbox mailbox..."                  , M_UNLOCKED},
1534                 {"/File/Check for new messages in all folders", M_UNLOCKED},
1535                 {"/File/Folder"                               , M_UNLOCKED},
1536                 {"/File/Import mbox file..."                  , M_UNLOCKED},
1537                 {"/File/Export to mbox file..."               , M_UNLOCKED},
1538                 {"/File/Empty trash"                          , M_UNLOCKED},
1539                 {"/File/Work offline"                         , M_UNLOCKED},
1540
1541                 {"/File/Save as...", M_SINGLE_TARGET_EXIST|M_UNLOCKED},
1542                 {"/File/Print..."  , M_TARGET_EXIST|M_UNLOCKED},
1543                 /* {"/File/Close"  , M_UNLOCKED}, */
1544                 {"/File/Exit"      , M_UNLOCKED},
1545
1546                 {"/Edit/Select thread"             , M_SINGLE_TARGET_EXIST},
1547
1548                 {"/View/Sort"                      , M_EXEC},
1549                 {"/View/Thread view"               , M_EXEC},
1550                 {"/View/Expand all threads"        , M_MSG_EXIST},
1551                 {"/View/Collapse all threads"      , M_MSG_EXIST},
1552                 {"/View/Hide read messages"        , M_HIDE_READ_MSG},
1553                 {"/View/Go to/Prev message"        , M_MSG_EXIST},
1554                 {"/View/Go to/Next message"        , M_MSG_EXIST},
1555                 {"/View/Go to/Prev unread message" , M_MSG_EXIST},
1556                 {"/View/Go to/Next unread message" , M_MSG_EXIST},
1557                 {"/View/Go to/Prev new message"    , M_MSG_EXIST},
1558                 {"/View/Go to/Next new message"    , M_MSG_EXIST},
1559                 {"/View/Go to/Prev marked message" , M_MSG_EXIST},
1560                 {"/View/Go to/Next marked message" , M_MSG_EXIST},
1561                 {"/View/Go to/Prev labeled message", M_MSG_EXIST},
1562                 {"/View/Go to/Next labeled message", M_MSG_EXIST},
1563                 {"/View/Open in new window"        , M_SINGLE_TARGET_EXIST},
1564                 {"/View/Show all headers"          , M_SINGLE_TARGET_EXIST},
1565                 {"/View/Message source"            , M_SINGLE_TARGET_EXIST},
1566
1567                 {"/Message/Get new mail"          , M_HAVE_ACCOUNT|M_UNLOCKED},
1568                 {"/Message/Get from all accounts" , M_HAVE_ACCOUNT|M_UNLOCKED},
1569                 {"/Message/Cancel receiving"      , M_INC_ACTIVE},
1570                 {"/Message/Compose a news message", M_HAVE_NEWS_ACCOUNT},
1571                 {"/Message/Reply"                 , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1572                 {"/Message/Reply to"             , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1573                 {"/Message/Follow-up and reply to", M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST|M_NEWS},
1574                 {"/Message/Forward"               , M_HAVE_ACCOUNT|M_TARGET_EXIST},
1575                 {"/Message/Redirect"              , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1576                 {"/Message/Re-edit"               , M_HAVE_ACCOUNT|M_ALLOW_REEDIT},
1577                 {"/Message/Move..."               , M_TARGET_EXIST|M_ALLOW_DELETE|M_UNLOCKED},
1578                 {"/Message/Copy..."               , M_TARGET_EXIST|M_EXEC|M_UNLOCKED},
1579                 {"/Message/Delete"                , M_TARGET_EXIST|M_ALLOW_DELETE|M_UNLOCKED|M_NOT_NEWS},
1580                 {"/Message/Cancel a news message" , M_TARGET_EXIST|M_ALLOW_DELETE|M_UNLOCKED|M_NEWS},
1581                 {"/Message/Mark"                  , M_TARGET_EXIST},
1582
1583                 {"/Tools/Selective download..."     , M_HAVE_ACCOUNT|M_UNLOCKED},
1584                 {"/Tools/Add sender to address book", M_SINGLE_TARGET_EXIST},
1585                 {"/Tools/Harvest addresses"         , M_UNLOCKED},
1586                 {"/Tools/Filter messages"           , M_MSG_EXIST|M_EXEC|M_UNLOCKED},
1587                 {"/Tools/Create filter rule"        , M_SINGLE_TARGET_EXIST|M_UNLOCKED},
1588                 {"/Tools/Actions"                   , M_TARGET_EXIST|M_UNLOCKED},
1589                 {"/Tools/Execute"                   , M_DELAY_EXEC},
1590                 {"/Tools/Delete duplicated messages", M_MSG_EXIST|M_ALLOW_DELETE|M_UNLOCKED},
1591
1592                 {"/Configuration", M_UNLOCKED},
1593
1594                 {NULL, 0}
1595         };
1596
1597         state = main_window_get_current_state(mainwin);
1598
1599         for (i = 0; entry[i].entry != NULL; i++) {
1600                 sensitive = ((entry[i].cond & state) == entry[i].cond);
1601                 menu_set_sensitive(ifactory, entry[i].entry, sensitive);
1602         }
1603
1604         main_window_menu_callback_block(mainwin);
1605
1606 #define SET_CHECK_MENU_ACTIVE(path, active) \
1607 { \
1608         menuitem = gtk_item_factory_get_widget(ifactory, path); \
1609         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), active); \
1610 }
1611
1612         SET_CHECK_MENU_ACTIVE("/View/Show or hide/Message view",
1613                               messageview_is_visible(mainwin->messageview));
1614
1615         summaryview = mainwin->summaryview;
1616         menu_path = "/View/Sort/Don't sort";
1617
1618         switch (summaryview->sort_key) {
1619         case SORT_BY_NUMBER:
1620                 menu_path = "/View/Sort/by number"; break;
1621         case SORT_BY_SIZE:
1622                 menu_path = "/View/Sort/by size"; break;
1623         case SORT_BY_DATE:
1624                 menu_path = "/View/Sort/by date"; break;
1625         case SORT_BY_FROM:
1626                 menu_path = "/View/Sort/by from"; break;
1627         case SORT_BY_TO:
1628                 menu_path = "/View/Sort/by recipient"; break;
1629         case SORT_BY_SUBJECT:
1630                 menu_path = "/View/Sort/by subject"; break;
1631         case SORT_BY_LABEL:
1632                 menu_path = "/View/Sort/by color label"; break;
1633         case SORT_BY_MARK:
1634                 menu_path = "/View/Sort/by mark"; break;
1635         case SORT_BY_UNREAD:
1636                 menu_path = "/View/Sort/by unread"; break;
1637         case SORT_BY_MIME:
1638                 menu_path = "/View/Sort/by attachment"; break;
1639         case SORT_BY_SCORE:
1640                 menu_path = "/View/Sort/by score"; break;
1641         case SORT_BY_LOCKED:
1642                 menu_path = "/View/Sort/by locked"; break;
1643         case SORT_BY_NONE:
1644         default:
1645                 menu_path = "/View/Sort/Don't sort"; break;
1646         }
1647         SET_CHECK_MENU_ACTIVE(menu_path, TRUE);
1648
1649         if (summaryview->sort_type == SORT_ASCENDING) {
1650                 SET_CHECK_MENU_ACTIVE("/View/Sort/Ascending", TRUE);
1651         } else {
1652                 SET_CHECK_MENU_ACTIVE("/View/Sort/Descending", TRUE);
1653         }
1654
1655         if (summaryview->sort_key != SORT_BY_NONE) {
1656                 menu_set_sensitive(ifactory, "/View/Sort/Ascending", TRUE);
1657                 menu_set_sensitive(ifactory, "/View/Sort/Descending", TRUE);
1658         } else {
1659                 menu_set_sensitive(ifactory, "/View/Sort/Ascending", FALSE);
1660                 menu_set_sensitive(ifactory, "/View/Sort/Descending", FALSE);
1661         }
1662
1663         SET_CHECK_MENU_ACTIVE("/View/Show all headers",
1664                               mainwin->messageview->textview->show_all_headers);
1665         SET_CHECK_MENU_ACTIVE("/View/Thread view", (state & M_THREADED) != 0);
1666
1667 #undef SET_CHECK_MENU_ACTIVE
1668
1669         main_window_menu_callback_unblock(mainwin);
1670 }
1671
1672 void main_window_popup(MainWindow *mainwin)
1673 {
1674         gtkut_window_popup(mainwin->window);
1675
1676         switch (mainwin->type) {
1677         case SEPARATE_FOLDER:
1678                 gtkut_window_popup(mainwin->win.sep_folder.folderwin);
1679                 break;
1680         case SEPARATE_MESSAGE:
1681                 gtkut_window_popup(mainwin->win.sep_message.messagewin);
1682                 break;
1683         case SEPARATE_BOTH:
1684                 gtkut_window_popup(mainwin->win.sep_both.folderwin);
1685                 gtkut_window_popup(mainwin->win.sep_both.messagewin);
1686                 break;
1687         default:
1688                 break;
1689         }
1690 }
1691
1692 static void main_window_set_widgets(MainWindow *mainwin, SeparateType type)
1693 {
1694         GtkWidget *folderwin = NULL;
1695         GtkWidget *messagewin = NULL;
1696         GtkWidget *hpaned;
1697         GtkWidget *vpaned;
1698         GtkWidget *vbox_body = mainwin->vbox_body;
1699         GtkItemFactory *ifactory = mainwin->menu_factory;
1700         GtkWidget *menuitem;
1701         GtkItemFactory *msgview_ifactory;
1702
1703         debug_print("Setting widgets...");
1704
1705         /* create separated window(s) if needed */
1706         if (type & SEPARATE_FOLDER) {
1707                 folderwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
1708                 gtk_window_set_title(GTK_WINDOW(folderwin),
1709                                      _("Sylpheed - Folder View"));
1710                 gtk_window_set_wmclass(GTK_WINDOW(folderwin),
1711                                        "folder_view", "Sylpheed");
1712                 gtk_window_set_policy(GTK_WINDOW(folderwin),
1713                                       TRUE, TRUE, FALSE);
1714                 gtk_widget_set_usize(folderwin, -1,
1715                                      prefs_common.mainview_height);
1716                 gtk_container_set_border_width(GTK_CONTAINER(folderwin),
1717                                                BORDER_WIDTH);
1718                 gtk_signal_connect(GTK_OBJECT(folderwin), "delete_event",
1719                                    GTK_SIGNAL_FUNC(folder_window_close_cb),
1720                                    mainwin);
1721         }
1722         if (type & SEPARATE_MESSAGE) {
1723                 messagewin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
1724                 gtk_window_set_title(GTK_WINDOW(messagewin),
1725                                      _("Sylpheed - Message View"));
1726                 gtk_window_set_wmclass(GTK_WINDOW(messagewin),
1727                                        "message_view", "Sylpheed");
1728                 gtk_window_set_policy(GTK_WINDOW(messagewin),
1729                                       TRUE, TRUE, FALSE);
1730                 gtk_widget_set_usize
1731                         (messagewin, prefs_common.mainview_width,
1732                          prefs_common.mainview_height
1733                          - prefs_common.summaryview_height
1734                          + DEFAULT_HEADERVIEW_HEIGHT);
1735                 gtk_container_set_border_width(GTK_CONTAINER(messagewin),
1736                                                BORDER_WIDTH);
1737                 gtk_signal_connect(GTK_OBJECT(messagewin), "delete_event",
1738                                    GTK_SIGNAL_FUNC(message_window_close_cb),
1739                                    mainwin);
1740         }
1741
1742         switch (type) {
1743         case SEPARATE_NONE:
1744                 hpaned = gtk_hpaned_new();
1745                 gtk_widget_show(hpaned);
1746                 gtk_box_pack_start(GTK_BOX(vbox_body), hpaned, TRUE, TRUE, 0);
1747                 gtk_paned_add1(GTK_PANED(hpaned),
1748                                GTK_WIDGET_PTR(mainwin->folderview));
1749
1750                 vpaned = gtk_vpaned_new();
1751                 if (messageview_is_visible(mainwin->messageview)) {
1752                         gtk_paned_add2(GTK_PANED(hpaned), vpaned);
1753                         gtk_paned_add1(GTK_PANED(vpaned),
1754                                        GTK_WIDGET_PTR(mainwin->summaryview));
1755                 } else {
1756                         gtk_paned_add2(GTK_PANED(hpaned),
1757                                        GTK_WIDGET_PTR(mainwin->summaryview));
1758                         gtk_widget_ref(vpaned);
1759                 }
1760                 gtk_widget_set_usize(GTK_WIDGET_PTR(mainwin->summaryview),
1761                                      prefs_common.summaryview_width,
1762                                      prefs_common.summaryview_height);
1763                 gtk_paned_add2(GTK_PANED(vpaned),
1764                                GTK_WIDGET_PTR(mainwin->messageview));
1765                 gtk_widget_set_usize(GTK_WIDGET_PTR(mainwin->messageview),
1766                                      prefs_common.mainview_width, -1);
1767                 gtk_widget_set_usize(mainwin->window,
1768                                      prefs_common.folderview_width +
1769                                      prefs_common.mainview_width,
1770                                      prefs_common.mainwin_height);
1771                 gtk_widget_show_all(vpaned);
1772
1773                 /* CLAWS: previous "gtk_widget_show_all" makes noticeview
1774                  * lose track of its visibility state */
1775                 if (!noticeview_is_visible(mainwin->messageview->noticeview)) 
1776                         gtk_widget_hide(GTK_WIDGET_PTR(mainwin->messageview->noticeview));
1777
1778                 mainwin->win.sep_none.hpaned = hpaned;
1779                 mainwin->win.sep_none.vpaned = vpaned;
1780                 
1781                 /* remove headerview if not in prefs */
1782                 headerview_set_visibility(mainwin->messageview->headerview,
1783                                           prefs_common.display_header_pane);
1784                 break;
1785         case SEPARATE_FOLDER:
1786                 vpaned = gtk_vpaned_new();
1787                 if (messageview_is_visible(mainwin->messageview)) {
1788                         gtk_box_pack_start(GTK_BOX(vbox_body), vpaned,
1789                                            TRUE, TRUE, 0);
1790                         gtk_paned_add1(GTK_PANED(vpaned),
1791                                        GTK_WIDGET_PTR(mainwin->summaryview));
1792                 } else {
1793                         gtk_box_pack_start(GTK_BOX(vbox_body),
1794                                            GTK_WIDGET_PTR(mainwin->summaryview),
1795                                            TRUE, TRUE, 0);
1796                         gtk_widget_ref(vpaned);
1797                 }
1798                 gtk_paned_add2(GTK_PANED(vpaned),
1799                                GTK_WIDGET_PTR(mainwin->messageview));
1800                 gtk_widget_show_all(vpaned);
1801                 gtk_widget_set_usize(GTK_WIDGET_PTR(mainwin->summaryview),
1802                                      prefs_common.summaryview_width,
1803                                      prefs_common.summaryview_height);
1804                 gtk_widget_set_usize(GTK_WIDGET_PTR(mainwin->messageview),
1805                                      prefs_common.mainview_width, -1);
1806                 gtk_widget_set_usize(mainwin->window,
1807                                      prefs_common.mainview_width,
1808                                      prefs_common.mainview_height);
1809
1810                 gtk_container_add(GTK_CONTAINER(folderwin),
1811                                   GTK_WIDGET_PTR(mainwin->folderview));
1812
1813                 mainwin->win.sep_folder.folderwin = folderwin;
1814                 mainwin->win.sep_folder.vpaned    = vpaned;
1815
1816                 gtk_widget_show_all(folderwin);
1817                 
1818                 /* CLAWS: previous "gtk_widget_show_all" makes noticeview
1819                  * lose track of its visibility state */
1820                 if (!noticeview_is_visible(mainwin->messageview->noticeview)) 
1821                         gtk_widget_hide(GTK_WIDGET_PTR(mainwin->messageview->noticeview));
1822                 
1823                 /* remove headerview if not in prefs */
1824                 headerview_set_visibility(mainwin->messageview->headerview,
1825                                           prefs_common.display_header_pane);
1826                 
1827                 break;
1828         case SEPARATE_MESSAGE:
1829                 hpaned = gtk_hpaned_new();
1830                 gtk_box_pack_start(GTK_BOX(vbox_body), hpaned, TRUE, TRUE, 0);
1831
1832                 gtk_paned_add1(GTK_PANED(hpaned),
1833                                GTK_WIDGET_PTR(mainwin->folderview));
1834                 gtk_paned_add2(GTK_PANED(hpaned),
1835                                GTK_WIDGET_PTR(mainwin->summaryview));
1836                 gtk_widget_set_usize(GTK_WIDGET_PTR(mainwin->summaryview),
1837                                      prefs_common.summaryview_width,
1838                                      prefs_common.summaryview_height);
1839                 gtk_widget_set_usize(mainwin->window,
1840                                      prefs_common.folderview_width +
1841                                      prefs_common.mainview_width,
1842                                      prefs_common.mainwin_height);
1843                 gtk_widget_show_all(hpaned);
1844
1845                 messageview_add_toolbar(mainwin->messageview, messagewin);
1846                 msgview_ifactory = gtk_item_factory_from_widget(mainwin->messageview->menubar);
1847                 menu_set_sensitive(msgview_ifactory, "/File/Close", FALSE);
1848
1849                 mainwin->win.sep_message.messagewin = messagewin;
1850                 mainwin->win.sep_message.hpaned     = hpaned;
1851
1852                 gtk_widget_show_all(messagewin);
1853                 
1854                 /* CLAWS: previous "gtk_widget_show_all" makes noticeview
1855                  * lose track of its visibility state */
1856                 if (!noticeview_is_visible(mainwin->messageview->noticeview)) 
1857                         gtk_widget_hide(GTK_WIDGET_PTR(mainwin->messageview->noticeview));
1858                 break;
1859         case SEPARATE_BOTH:
1860                 gtk_box_pack_start(GTK_BOX(vbox_body),
1861                                    GTK_WIDGET_PTR(mainwin->summaryview),
1862                                    TRUE, TRUE, 0);
1863                 gtk_widget_set_usize(GTK_WIDGET_PTR(mainwin->summaryview),
1864                                      prefs_common.summaryview_width,
1865                                      prefs_common.summaryview_height);
1866                 gtk_widget_set_usize(mainwin->window,
1867                                      prefs_common.mainview_width,
1868                                      prefs_common.mainwin_height);
1869                 gtk_container_add(GTK_CONTAINER(folderwin),
1870                                   GTK_WIDGET_PTR(mainwin->folderview));
1871                 gtk_container_add(GTK_CONTAINER(messagewin),
1872                                   GTK_WIDGET_PTR(mainwin->messageview));
1873
1874                 mainwin->win.sep_both.folderwin = folderwin;
1875                 mainwin->win.sep_both.messagewin = messagewin;
1876
1877                 gtk_widget_show_all(folderwin);
1878                 gtk_widget_show_all(messagewin);
1879
1880                 /* CLAWS: previous "gtk_widget_show_all" makes noticeview
1881                  * lose track of its visibility state */
1882                 if (!noticeview_is_visible(mainwin->messageview->noticeview)) 
1883                         gtk_widget_hide(GTK_WIDGET_PTR(mainwin->messageview->noticeview));
1884                 break;
1885         }
1886
1887         /* rehide quick search if necessary */
1888         if (!prefs_common.show_searchbar)
1889                 gtk_widget_hide(mainwin->summaryview->hbox_search);
1890         
1891         mainwin->type = type;
1892
1893         mainwin->messageview->visible = TRUE;
1894
1895         /* toggle menu state */
1896         menuitem = gtk_item_factory_get_item
1897                 (ifactory, "/View/Show or hide/Folder tree");
1898         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), TRUE);
1899         menuitem = gtk_item_factory_get_item
1900                 (ifactory, "/View/Show or hide/Message view");
1901         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), TRUE);
1902
1903         menuitem = gtk_item_factory_get_item
1904                 (ifactory, "/View/Separate folder tree");
1905         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
1906                                        ((type & SEPARATE_FOLDER) != 0));
1907         menuitem = gtk_item_factory_get_item
1908                 (ifactory, "/View/Separate message view");
1909         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
1910                                        ((type & SEPARATE_MESSAGE) != 0));
1911
1912         debug_print("done.\n");
1913 }
1914
1915 void main_window_destroy_all(void)
1916 {
1917         while (mainwin_list != NULL) {
1918                 MainWindow *mainwin = (MainWindow*)mainwin_list->data;
1919                 
1920                 /* free toolbar stuff */
1921                 toolbar_clear_list(TOOLBAR_MAIN);
1922                 TOOLBAR_DESTROY_ACTIONS(mainwin->toolbar->action_list);
1923                 TOOLBAR_DESTROY_ITEMS(mainwin->toolbar->item_list);
1924
1925                 g_free(mainwin->toolbar);
1926                 g_free(mainwin);
1927                 
1928                 mainwin_list = g_list_remove(mainwin_list, mainwin);
1929         }
1930         g_list_free(mainwin_list);
1931 }
1932
1933 #if 0
1934 static void toolbar_account_button_pressed(GtkWidget *widget,
1935                                            GdkEventButton *event,
1936                                            gpointer data)
1937 {
1938         MainWindow *mainwin = (MainWindow *)data;
1939
1940         if (!event) return;
1941         if (event->button != 3) return;
1942
1943         gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
1944         gtk_object_set_data(GTK_OBJECT(mainwin->ac_menu), "menu_button",
1945                             widget);
1946
1947         gtk_menu_popup(GTK_MENU(mainwin->ac_menu), NULL, NULL,
1948                        menu_button_position, widget,
1949                        event->button, event->time);
1950 }
1951 #endif
1952
1953 static void ac_label_button_pressed(GtkWidget *widget, GdkEventButton *event,
1954                                     gpointer data)
1955 {
1956         MainWindow *mainwin = (MainWindow *)data;
1957
1958         if (!event) return;
1959
1960         gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
1961         gtk_object_set_data(GTK_OBJECT(mainwin->ac_menu), "menu_button",
1962                             widget);
1963
1964         gtk_menu_popup(GTK_MENU(mainwin->ac_menu), NULL, NULL,
1965                        menu_button_position, widget,
1966                        event->button, event->time);
1967 }
1968
1969 static void ac_menu_popup_closed(GtkMenuShell *menu_shell, gpointer data)
1970 {
1971         MainWindow *mainwin = (MainWindow *)data;
1972         GtkWidget *button;
1973
1974         button = gtk_object_get_data(GTK_OBJECT(menu_shell), "menu_button");
1975         if (!button) return;
1976         gtk_button_set_relief(GTK_BUTTON(button), GTK_RELIEF_NONE);
1977         gtk_object_remove_data(GTK_OBJECT(mainwin->ac_menu), "menu_button");
1978         manage_window_focus_in(mainwin->window, NULL, NULL);
1979 }
1980
1981 static gint main_window_close_cb(GtkWidget *widget, GdkEventAny *event,
1982                                  gpointer data)
1983 {
1984         MainWindow *mainwin = (MainWindow *)data;
1985
1986         if (mainwin->lock_count == 0)
1987                 app_exit_cb(data, 0, widget);
1988
1989         return TRUE;
1990 }
1991
1992 static gint folder_window_close_cb(GtkWidget *widget, GdkEventAny *event,
1993                                    gpointer data)
1994 {
1995         MainWindow *mainwin = (MainWindow *)data;
1996         GtkWidget *menuitem;
1997
1998         menuitem = gtk_item_factory_get_item
1999                 (mainwin->menu_factory, "/View/Show or hide/Folder tree");
2000         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), FALSE);
2001
2002         return TRUE;
2003 }
2004
2005 static gint message_window_close_cb(GtkWidget *widget, GdkEventAny *event,
2006                                     gpointer data)
2007 {
2008         MainWindow *mainwin = (MainWindow *)data;
2009         GtkWidget *menuitem;
2010
2011         menuitem = gtk_item_factory_get_item
2012                 (mainwin->menu_factory, "/View/Show or hide/Message view");
2013         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), FALSE);
2014
2015         return TRUE;
2016 }
2017
2018 static void add_mailbox_cb(MainWindow *mainwin, guint action,
2019                            GtkWidget *widget)
2020 {
2021         main_window_add_mailbox(mainwin);
2022 }
2023
2024 static void add_mbox_cb(MainWindow *mainwin, guint action,
2025                         GtkWidget *widget)
2026 {
2027         main_window_add_mbox(mainwin);
2028 }
2029
2030 static void update_folderview_cb(MainWindow *mainwin, guint action,
2031                                  GtkWidget *widget)
2032 {
2033         summary_show(mainwin->summaryview, NULL);
2034         folderview_check_new_all();
2035 }
2036
2037 static void new_folder_cb(MainWindow *mainwin, guint action,
2038                           GtkWidget *widget)
2039 {
2040         folderview_new_folder(mainwin->folderview);
2041 }
2042
2043 static void rename_folder_cb(MainWindow *mainwin, guint action,
2044                              GtkWidget *widget)
2045 {
2046         folderview_rename_folder(mainwin->folderview);
2047 }
2048
2049 static void delete_folder_cb(MainWindow *mainwin, guint action,
2050                              GtkWidget *widget)
2051 {
2052         folderview_delete_folder(mainwin->folderview);
2053 }
2054
2055 static void import_mbox_cb(MainWindow *mainwin, guint action,
2056                            GtkWidget *widget)
2057 {
2058         import_mbox(mainwin->summaryview->folder_item);
2059 }
2060
2061 static void export_mbox_cb(MainWindow *mainwin, guint action,
2062                            GtkWidget *widget)
2063 {
2064         export_mbox(mainwin->summaryview->folder_item);
2065 }
2066
2067 static void empty_trash_cb(MainWindow *mainwin, guint action,
2068                            GtkWidget *widget)
2069 {
2070         main_window_empty_trash(mainwin, TRUE);
2071 }
2072
2073 static void save_as_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2074 {
2075         summary_save_as(mainwin->summaryview);
2076 }
2077
2078 static void print_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2079 {
2080         summary_print(mainwin->summaryview);
2081 }
2082
2083 static void app_exit_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2084 {
2085         if (prefs_common.confirm_on_exit) {
2086                 if (alertpanel(_("Exit"), _("Exit this program?"),
2087                                _("OK"), _("Cancel"), NULL) != G_ALERTDEFAULT)
2088                         return;
2089                 manage_window_focus_in(mainwin->window, NULL, NULL);
2090         }
2091
2092         app_will_exit(widget, mainwin);
2093 }
2094
2095 static void search_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2096 {
2097         if (action == 1)
2098                 summary_search(mainwin->summaryview);
2099         else
2100                 message_search(mainwin->messageview);
2101 }
2102
2103 static void toggle_folder_cb(MainWindow *mainwin, guint action,
2104                              GtkWidget *widget)
2105 {
2106         gboolean active;
2107
2108         active = GTK_CHECK_MENU_ITEM(widget)->active;
2109
2110         switch (mainwin->type) {
2111         case SEPARATE_NONE:
2112         case SEPARATE_MESSAGE:
2113 #if 0
2114                 if (active)
2115                         gtk_widget_show(GTK_WIDGET_PTR(mainwin->folderview));
2116                 else
2117                         gtk_widget_hide(GTK_WIDGET_PTR(mainwin->folderview));
2118 #endif
2119                 break;
2120         case SEPARATE_FOLDER:
2121                 debug_print("separate folder\n");
2122                 if (active)
2123                         gtk_widget_show(mainwin->win.sep_folder.folderwin);
2124                 else
2125                         gtk_widget_hide(mainwin->win.sep_folder.folderwin);
2126                 break;
2127         case SEPARATE_BOTH:
2128                 if (active)
2129                         gtk_widget_show(mainwin->win.sep_both.folderwin);
2130                 else
2131                         gtk_widget_hide(mainwin->win.sep_both.folderwin);
2132                 break;
2133         }
2134 }
2135
2136 static void toggle_message_cb(MainWindow *mainwin, guint action,
2137                               GtkWidget *widget)
2138 {
2139         gboolean active;
2140
2141         active = GTK_CHECK_MENU_ITEM(widget)->active;
2142
2143         if (active != messageview_is_visible(mainwin->messageview))
2144                 summary_toggle_view(mainwin->summaryview);
2145 }
2146
2147 static void toggle_toolbar_cb(MainWindow *mainwin, guint action,
2148                               GtkWidget *widget)
2149 {
2150         toolbar_toggle(action, mainwin);
2151 }
2152
2153 /* END Toolbar Stuff */
2154
2155 static void toggle_statusbar_cb(MainWindow *mainwin, guint action,
2156                                 GtkWidget *widget)
2157 {
2158         if (GTK_CHECK_MENU_ITEM(widget)->active) {
2159                 gtk_widget_show(mainwin->hbox_stat);
2160                 prefs_common.show_statusbar = TRUE;
2161         } else {
2162                 gtk_widget_hide(mainwin->hbox_stat);
2163                 prefs_common.show_statusbar = FALSE;
2164         }
2165 }
2166
2167 static void separate_widget_cb(MainWindow *mainwin, guint action,
2168                                GtkWidget *widget)
2169 {
2170         SeparateType type;
2171
2172         if (GTK_CHECK_MENU_ITEM(widget)->active)
2173                 type = mainwin->type | action;
2174         else
2175                 type = mainwin->type & ~action;
2176
2177         main_window_separation_change(mainwin, type);
2178
2179         prefs_common.sep_folder = (type & SEPARATE_FOLDER)  != 0;
2180         prefs_common.sep_msg    = (type & SEPARATE_MESSAGE) != 0;
2181 }
2182
2183 void main_window_toggle_work_offline (MainWindow *mainwin, gboolean offline)
2184 {
2185         if (offline)
2186                 online_switch_clicked (GTK_BUTTON(mainwin->online_switch), mainwin);
2187         else
2188                 online_switch_clicked (GTK_BUTTON(mainwin->offline_switch), mainwin);
2189 }
2190
2191 static void toggle_work_offline_cb (MainWindow *mainwin, guint action, GtkWidget *widget)
2192 {
2193         main_window_toggle_work_offline(mainwin, GTK_CHECK_MENU_ITEM(widget)->active);
2194 }
2195
2196 static void online_switch_clicked (GtkButton *btn, gpointer data) 
2197 {
2198         MainWindow *mainwin;
2199         GtkItemFactory *ifactory;
2200         GtkCheckMenuItem *menuitem;
2201
2202         mainwin = (MainWindow *) data;
2203         
2204         ifactory = gtk_item_factory_from_widget(mainwin->menubar);
2205         menuitem = GTK_CHECK_MENU_ITEM (gtk_item_factory_get_widget(ifactory, "/File/Work offline"));
2206         
2207         g_return_if_fail(mainwin != NULL);
2208         g_return_if_fail(menuitem != NULL);
2209         
2210         if (btn == GTK_BUTTON(mainwin->online_switch)) {
2211                 /* go offline */
2212                 gtk_widget_hide (mainwin->online_switch);
2213                 gtk_widget_show (mainwin->offline_switch);
2214                 menuitem->active = TRUE;
2215                 prefs_common.work_offline = TRUE;
2216                 inc_autocheck_timer_remove();           
2217         } else {
2218                 /*go online */
2219                 gtk_widget_hide (mainwin->offline_switch);
2220                 gtk_widget_show (mainwin->online_switch);
2221                 menuitem->active = FALSE;
2222                 prefs_common.work_offline = FALSE;
2223                 inc_autocheck_timer_set();
2224         }
2225 }
2226
2227 static void addressbook_open_cb(MainWindow *mainwin, guint action,
2228                                 GtkWidget *widget)
2229 {
2230         addressbook_open(NULL);
2231 }
2232
2233 static void log_window_show_cb(MainWindow *mainwin, guint action,
2234                                GtkWidget *widget)
2235 {
2236         log_window_show(mainwin->logwin);
2237 }
2238
2239 static void sel_download_cb(MainWindow *mainwin, guint action,
2240                                GtkWidget *widget)
2241 {
2242         selective_download(mainwin);
2243 }
2244
2245 static void prefs_toolbar_cb(MainWindow *mainwin, guint action,
2246                              GtkWidget *widget)
2247 {
2248         prefs_toolbar_open((ToolbarType)action);
2249 }
2250
2251 static void inc_cancel_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2252 {
2253         inc_cancel_all();
2254 }
2255
2256 static void move_to_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2257 {
2258         summary_move_to(mainwin->summaryview);
2259 }
2260
2261 static void copy_to_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2262 {
2263         summary_copy_to(mainwin->summaryview);
2264 }
2265
2266 static void delete_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2267 {
2268         summary_delete(mainwin->summaryview);
2269 }
2270
2271 static void cancel_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2272 {
2273         summary_cancel(mainwin->summaryview);
2274 }
2275
2276 static void open_msg_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2277 {
2278         summary_open_msg(mainwin->summaryview);
2279 }
2280
2281 static void view_source_cb(MainWindow *mainwin, guint action,
2282                            GtkWidget *widget)
2283 {
2284         summary_view_source(mainwin->summaryview);
2285 }
2286
2287 static void show_all_header_cb(MainWindow *mainwin, guint action,
2288                                GtkWidget *widget)
2289 {
2290         if (mainwin->menu_lock_count) return;
2291         summary_display_msg_selected(mainwin->summaryview,
2292                                      GTK_CHECK_MENU_ITEM(widget)->active);
2293 }
2294
2295 static void reedit_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2296 {
2297         summary_reedit(mainwin->summaryview);
2298 }
2299
2300 static void mark_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2301 {
2302         summary_mark(mainwin->summaryview);
2303 }
2304
2305 static void unmark_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2306 {
2307         summary_unmark(mainwin->summaryview);
2308 }
2309
2310 static void mark_as_unread_cb(MainWindow *mainwin, guint action,
2311                               GtkWidget *widget)
2312 {
2313         summary_mark_as_unread(mainwin->summaryview);
2314 }
2315
2316 static void mark_as_read_cb(MainWindow *mainwin, guint action,
2317                             GtkWidget *widget)
2318 {
2319         summary_mark_as_read(mainwin->summaryview);
2320 }
2321
2322 static void mark_all_read_cb(MainWindow *mainwin, guint action,
2323                              GtkWidget *widget)
2324 {
2325         summary_mark_all_read(mainwin->summaryview);
2326 }
2327
2328 static void add_address_cb(MainWindow *mainwin, guint action,
2329                            GtkWidget *widget)
2330 {
2331         summary_add_address(mainwin->summaryview);
2332 }
2333
2334 static void set_charset_cb(MainWindow *mainwin, guint action,
2335                            GtkWidget *widget)
2336 {
2337         const gchar *str;
2338
2339         if (GTK_CHECK_MENU_ITEM(widget)->active) {
2340                 str = conv_get_charset_str((CharSet)action);
2341                 g_free(prefs_common.force_charset);
2342                 prefs_common.force_charset = str ? g_strdup(str) : NULL;
2343
2344                 summary_redisplay_msg(mainwin->summaryview);
2345                 
2346                 debug_print("forced charset: %s\n", str ? str : "Auto-Detect");
2347         }
2348 }
2349
2350 static void hide_read_messages (MainWindow *mainwin, guint action,
2351                                 GtkWidget *widget)
2352 {
2353         if (!mainwin->summaryview->folder_item
2354             || gtk_object_get_data(GTK_OBJECT(widget), "dont_toggle"))
2355                 return;
2356         summary_toggle_show_read_messages(mainwin->summaryview);
2357 }
2358
2359 static void thread_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2360 {
2361         if (mainwin->menu_lock_count) return;
2362         if (!mainwin->summaryview->folder_item) return;
2363
2364         if (GTK_CHECK_MENU_ITEM(widget)->active) {
2365                 summary_thread_build(mainwin->summaryview);
2366 /*              mainwin->summaryview->folder_item->threaded = TRUE; */
2367         } else {
2368                 summary_unthread(mainwin->summaryview);
2369 /*              mainwin->summaryview->folder_item->threaded = FALSE; */
2370         }
2371 }
2372
2373 static void expand_threads_cb(MainWindow *mainwin, guint action,
2374                               GtkWidget *widget)
2375 {
2376         summary_expand_threads(mainwin->summaryview);
2377 }
2378
2379 static void collapse_threads_cb(MainWindow *mainwin, guint action,
2380                                 GtkWidget *widget)
2381 {
2382         summary_collapse_threads(mainwin->summaryview);
2383 }
2384
2385 static void set_display_item_cb(MainWindow *mainwin, guint action,
2386                                 GtkWidget *widget)
2387 {
2388         prefs_summary_column_open();
2389 }
2390
2391 static void sort_summary_cb(MainWindow *mainwin, guint action,
2392                             GtkWidget *widget)
2393 {
2394         FolderItem *item = mainwin->summaryview->folder_item;
2395         GtkWidget *menuitem;
2396
2397         if (mainwin->menu_lock_count) return;
2398
2399         if (GTK_CHECK_MENU_ITEM(widget)->active && item) {
2400                 menuitem = gtk_item_factory_get_item
2401                         (mainwin->menu_factory, "/View/Sort/Ascending");
2402                 summary_sort(mainwin->summaryview, (FolderSortKey)action,
2403                              GTK_CHECK_MENU_ITEM(menuitem)->active
2404                              ? SORT_ASCENDING : SORT_DESCENDING);
2405         }
2406 }
2407
2408 static void sort_summary_type_cb(MainWindow *mainwin, guint action,
2409                                  GtkWidget *widget)
2410 {
2411         FolderItem *item = mainwin->summaryview->folder_item;
2412
2413         if (mainwin->menu_lock_count) return;
2414
2415         if (GTK_CHECK_MENU_ITEM(widget)->active && item)
2416                 summary_sort(mainwin->summaryview,
2417                              item->sort_key, (FolderSortType)action);
2418 }
2419
2420 static void attract_by_subject_cb(MainWindow *mainwin, guint action,
2421                                   GtkWidget *widget)
2422 {
2423         summary_attract_by_subject(mainwin->summaryview);
2424 }
2425
2426 static void delete_duplicated_cb(MainWindow *mainwin, guint action,
2427                                  GtkWidget *widget)
2428 {
2429         summary_delete_duplicated(mainwin->summaryview);
2430 }
2431
2432 static void filter_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2433 {
2434         summary_filter(mainwin->summaryview);
2435 }
2436
2437 static void execute_summary_cb(MainWindow *mainwin, guint action,
2438                                GtkWidget *widget)
2439 {
2440         summary_execute(mainwin->summaryview);
2441 }
2442
2443 static void update_summary_cb(MainWindow *mainwin, guint action,
2444                               GtkWidget *widget)
2445 {
2446         FolderItem *fitem;
2447         FolderView *folderview = mainwin->folderview;
2448
2449         if (!mainwin->summaryview->folder_item) return;
2450         if (!folderview->opened) return;
2451
2452         folder_update_op_count();
2453
2454         fitem = gtk_ctree_node_get_row_data(GTK_CTREE(folderview->ctree),
2455                                             folderview->opened);
2456         if (!fitem) return;
2457
2458         folder_item_scan(fitem);
2459         summary_show(mainwin->summaryview, fitem);
2460 }
2461
2462 static void prev_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2463 {
2464         summary_step(mainwin->summaryview, GTK_SCROLL_STEP_BACKWARD);
2465 }
2466
2467 static void next_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2468 {
2469         summary_step(mainwin->summaryview, GTK_SCROLL_STEP_FORWARD);
2470 }
2471
2472 static void prev_unread_cb(MainWindow *mainwin, guint action,
2473                            GtkWidget *widget)
2474 {
2475         summary_select_prev_unread(mainwin->summaryview);
2476 }
2477
2478 static void next_unread_cb(MainWindow *mainwin, guint action,
2479                            GtkWidget *widget)
2480 {
2481         summary_select_next_unread(mainwin->summaryview);
2482 }
2483
2484 static void prev_new_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2485 {
2486         summary_select_prev_new(mainwin->summaryview);
2487 }
2488
2489 static void next_new_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2490 {
2491         summary_select_next_new(mainwin->summaryview);
2492 }
2493
2494 static void prev_marked_cb(MainWindow *mainwin, guint action,
2495                            GtkWidget *widget)
2496 {
2497         summary_select_prev_marked(mainwin->summaryview);
2498 }
2499
2500 static void next_marked_cb(MainWindow *mainwin, guint action,
2501                            GtkWidget *widget)
2502 {
2503         summary_select_next_marked(mainwin->summaryview);
2504 }
2505
2506 static void prev_labeled_cb(MainWindow *mainwin, guint action,
2507                             GtkWidget *widget)
2508 {
2509         summary_select_prev_labeled(mainwin->summaryview);
2510 }
2511
2512 static void next_labeled_cb(MainWindow *mainwin, guint action,
2513                             GtkWidget *widget)
2514 {
2515         summary_select_next_labeled(mainwin->summaryview);
2516 }
2517
2518 static void goto_folder_cb(MainWindow *mainwin, guint action,
2519                            GtkWidget *widget)
2520 {
2521         FolderItem *to_folder;
2522
2523         to_folder = foldersel_folder_sel(NULL, FOLDER_SEL_ALL, NULL);
2524
2525         if (to_folder)
2526                 folderview_select(mainwin->folderview, to_folder);
2527 }
2528
2529 static void copy_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2530 {
2531         messageview_copy_clipboard(mainwin->messageview);
2532 }
2533
2534 static void allsel_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2535 {
2536         MessageView *msgview = mainwin->messageview;
2537
2538         if (GTK_WIDGET_HAS_FOCUS(mainwin->summaryview->ctree))
2539                 summary_select_all(mainwin->summaryview);
2540         else if (messageview_is_visible(msgview) &&
2541                  (GTK_WIDGET_HAS_FOCUS(msgview->textview->text) ||
2542                   GTK_WIDGET_HAS_FOCUS(msgview->mimeview->textview->text)))
2543                 messageview_select_all(mainwin->messageview);
2544 }
2545
2546 static void select_thread_cb(MainWindow *mainwin, guint action,
2547                              GtkWidget *widget)
2548 {
2549         summary_select_thread(mainwin->summaryview);
2550 }
2551
2552 static void create_filter_cb(MainWindow *mainwin, guint action,
2553                              GtkWidget *widget)
2554 {
2555         summary_filter_open(mainwin->summaryview, (PrefsFilterType)action);
2556 }
2557
2558 static void prefs_common_open_cb(MainWindow *mainwin, guint action,
2559                                  GtkWidget *widget)
2560 {
2561         prefs_common_open();
2562 }
2563
2564 static void prefs_scoring_open_cb(MainWindow *mainwin, guint action,
2565                                   GtkWidget *widget)
2566 {
2567         prefs_scoring_open(NULL);
2568 }
2569
2570 static void prefs_filtering_open_cb(MainWindow *mainwin, guint action,
2571                                     GtkWidget *widget)
2572 {
2573         prefs_filtering_open(NULL, NULL, NULL);
2574 }
2575
2576 static void prefs_template_open_cb(MainWindow *mainwin, guint action,
2577                                    GtkWidget *widget)
2578 {
2579         prefs_template_open();
2580 }
2581
2582 static void prefs_actions_open_cb(MainWindow *mainwin, guint action,
2583                                   GtkWidget *widget)
2584 {
2585         prefs_actions_open(mainwin);
2586 }
2587 #ifdef USE_OPENSSL
2588 static void ssl_manager_open_cb(MainWindow *mainwin, guint action,
2589                                   GtkWidget *widget)
2590 {
2591         ssl_manager_open(mainwin);
2592 }
2593 #endif
2594 static void prefs_account_open_cb(MainWindow *mainwin, guint action,
2595                                   GtkWidget *widget)
2596 {
2597         if (!cur_account) {
2598                 new_account_cb(mainwin, 0, widget);
2599         } else {
2600                 account_open(cur_account);
2601         }
2602 }
2603
2604 static void new_account_cb(MainWindow *mainwin, guint action,
2605                            GtkWidget *widget)
2606 {
2607         account_edit_open();
2608         if (!compose_get_compose_list()) account_add();
2609 }
2610
2611 static void account_menu_cb(GtkMenuItem *menuitem, gpointer data)
2612 {
2613         cur_account = (PrefsAccount *)data;
2614         main_window_reflect_prefs_all();
2615 }
2616
2617 static void prefs_open_cb(GtkMenuItem *menuitem, gpointer data)
2618 {
2619         prefs_gtk_open();
2620 }
2621
2622 static void plugins_open_cb(GtkMenuItem *menuitem, gpointer data)
2623 {
2624         pluginwindow_create();
2625 }
2626
2627 static void manual_open_cb(MainWindow *mainwin, guint action,
2628                            GtkWidget *widget)
2629 {
2630         manual_open((ManualType)action);
2631 }
2632
2633 static void scan_tree_func(Folder *folder, FolderItem *item, gpointer data)
2634 {
2635         MainWindow *mainwin = (MainWindow *)data;
2636         gchar *str;
2637
2638         if (item->path)
2639                 str = g_strdup_printf(_("Scanning folder %s%c%s ..."),
2640                                       LOCAL_FOLDER(folder)->rootpath,
2641                                       G_DIR_SEPARATOR,
2642                                       item->path);
2643         else
2644                 str = g_strdup_printf(_("Scanning folder %s ..."),
2645                                       LOCAL_FOLDER(folder)->rootpath);
2646
2647         STATUSBAR_PUSH(mainwin, str);
2648         STATUSBAR_POP(mainwin);
2649         g_free(str);
2650 }
2651
2652 static gboolean mainwindow_focus_in_event(GtkWidget *widget, GdkEventFocus *focus,
2653                                           gpointer data)
2654 {
2655         SummaryView *summary;
2656
2657         g_return_val_if_fail(data, FALSE);
2658         summary = ((MainWindow *)data)->summaryview;
2659         g_return_val_if_fail(summary, FALSE);
2660         if (summary->selected != summary->displayed)
2661                 summary_select_node(summary, summary->displayed, FALSE, TRUE);
2662         return FALSE;
2663 }
2664
2665 #define BREAK_ON_MODIFIER_KEY() \
2666         if ((event->state & (GDK_MOD1_MASK|GDK_CONTROL_MASK)) != 0) break
2667
2668 void mainwindow_key_pressed (GtkWidget *widget, GdkEventKey *event,
2669                                     gpointer data)
2670 {
2671         MainWindow *mainwin = (MainWindow*) data;
2672         
2673         if (!mainwin || !event) return;
2674                 
2675         switch (event->keyval) {
2676         case GDK_Q:             /* Quit */
2677                 BREAK_ON_MODIFIER_KEY();
2678
2679                 app_exit_cb(mainwin, 0, NULL);
2680                 return;
2681         case GDK_space:
2682                 if (mainwin->folderview && mainwin->summaryview
2683                     && !mainwin->summaryview->displayed) {
2684                         summary_lock(mainwin->summaryview);
2685                         folderview_select_next_unread(mainwin->folderview);
2686                         summary_unlock(mainwin->summaryview);
2687                 }
2688                 break;
2689         default:
2690                 break;
2691         }
2692 }
2693
2694 #undef BREAK_ON_MODIFIER_KEY
2695
2696 /*
2697  * Harvest addresses for selected folder.
2698  */
2699 static void addr_harvest_cb( MainWindow *mainwin,
2700                             guint action,
2701                             GtkWidget *widget )
2702 {
2703         addressbook_harvest( mainwin->summaryview->folder_item, FALSE, NULL );
2704 }
2705
2706 /*
2707  * Harvest addresses for selected messages in summary view.
2708  */
2709 static void addr_harvest_msg_cb( MainWindow *mainwin,
2710                             guint action,
2711                             GtkWidget *widget )
2712 {
2713         summary_harvest_address( mainwin->summaryview );
2714 }
2715
2716 /*
2717 * End of Source.
2718 */
2719