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