930c71e4dd5d7405fd85a311b0c8504649263adc
[claws.git] / src / mainwindow.c
1 /*
2    Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3    Copyright (C) 1999-2018 the Claws Mail team and 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 3 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, see <http://www.gnu.org/licenses/>.
17  */
18
19 #include "defs.h"
20
21 #include <glib.h>
22 #include <glib/gi18n.h>
23 #include <gdk/gdkkeysyms.h>
24 #include <gtk/gtk.h>
25 #include <string.h>
26 #include <stdarg.h>
27
28 #include "main.h"
29 #include "mainwindow.h"
30 #include "folderview.h"
31 #include "folder_item_prefs.h"
32 #include "foldersel.h"
33 #include "quicksearch.h"
34 #include "summaryview.h"
35 #include "summary_search.h"
36 #include "messageview.h"
37 #include "mimeview.h"
38 #include "message_search.h"
39 #include "headerview.h"
40 #include "menu.h"
41 #include "stock_pixmap.h"
42 #include "folder.h"
43 #include "inc.h"
44 #include "log.h"
45 #include "compose.h"
46 #include "procmsg.h"
47 #include "import.h"
48 #include "export.h"
49 #include "edittags.h"
50 #include "password.h"
51 #include "prefs_common.h"
52 #include "prefs_actions.h"
53 #include "prefs_filtering.h"
54 #include "prefs_account.h"
55 #include "prefs_summary_column.h"
56 #include "prefs_folder_column.h"
57 #include "prefs_template.h"
58 #include "action.h"
59 #include "account.h"
60 #ifndef USE_ALT_ADDRBOOK
61         #include "addressbook.h"
62 #else
63         #include "addressbook-dbus.h"
64 #endif
65 #include "logwindow.h"
66 #include "manage_window.h"
67 #include "alertpanel.h"
68 #include "statusbar.h"
69 #include "inputdialog.h"
70 #include "utils.h"
71 #include "gtkutils.h"
72 #include "codeconv.h"
73 #include "about.h"
74 #include "manual.h"
75 #include "version.h"
76 #include "ssl_manager.h"
77 #include "sslcertwindow.h"
78 #include "prefs_gtk.h"
79 #include "pluginwindow.h"
80 #include "hooks.h"
81 #include "progressindicator.h"
82 #include "localfolder.h"
83 #include "filtering.h"
84 #include "folderutils.h"
85 #include "foldersort.h"
86 #include "icon_legend.h"
87 #include "colorlabel.h"
88 #include "tags.h"
89 #include "textview.h"
90 #include "imap.h"
91 #include "news.h"
92 #include "socket.h"
93 #include "printing.h"
94 #include "send_message.h"
95 #ifdef G_OS_WIN32
96 #include "w32lib.h"
97 #endif
98
99 #define AC_LABEL_WIDTH  240
100
101 /* list of all instantiated MainWindow */
102 static GList *mainwin_list = NULL;
103
104 static GdkCursor *watch_cursor = NULL;
105 static GdkCursor *hand_cursor = NULL;
106
107 static gint iconified_count = 0;
108
109 static void main_window_menu_callback_block     (MainWindow     *mainwin);
110 static void main_window_menu_callback_unblock   (MainWindow     *mainwin);
111
112 static void main_window_show_cur_account        (MainWindow     *mainwin);
113 #ifndef GENERIC_UMPC
114 static void main_window_separation_change       (MainWindow     *mainwin,
115                                                  LayoutType      layout_mode);
116 #endif
117 static void main_window_set_widgets             (MainWindow     *mainwin,
118                                                  LayoutType      layout_mode);
119
120 static void toolbar_child_attached              (GtkWidget      *widget,
121                                                  GtkWidget      *child,
122                                                  gpointer        data);
123 static void toolbar_child_detached              (GtkWidget      *widget,
124                                                  GtkWidget      *child,
125                                                  gpointer        data);
126 #ifndef GENERIC_UMPC
127 static gboolean ac_label_button_pressed         (GtkWidget      *widget,
128                                                  GdkEventButton *event,
129                                                  gpointer        data);
130 #endif
131 static gint main_window_close_cb                (GtkWidget      *widget,
132                                                  GdkEventAny    *event,
133                                                  gpointer        data);
134
135 static void main_window_size_allocate_cb        (GtkWidget      *widget,
136                                                  GtkAllocation  *allocation,
137                                                  gpointer        data);
138 static void folder_window_size_allocate_cb      (GtkWidget      *widget,
139                                                  GtkAllocation  *allocation,
140                                                  gpointer        data);
141 static void message_window_size_allocate_cb     (GtkWidget      *widget,
142                                                  GtkAllocation  *allocation,
143                                                  gpointer        data);
144
145 static void update_folderview_cb (GtkAction     *action,
146                                   gpointer       data);
147 static void add_mailbox_cb       (GtkAction     *action,
148                                   gpointer       data);
149 static void foldersort_cb        (GtkAction     *action,
150                                   gpointer       data);
151 static void import_mbox_cb       (GtkAction     *action,
152                                   gpointer       data);
153 static void export_mbox_cb       (GtkAction     *action,
154                                   gpointer       data);
155 static void export_list_mbox_cb  (GtkAction     *action,
156                                   gpointer       data);
157 static void empty_trash_cb       (GtkAction     *action,
158                                   gpointer       data);
159 static void save_as_cb           (GtkAction     *action,
160                                   gpointer       data);
161 static void page_setup_cb        (GtkAction     *action,
162                                   gpointer       data);
163 static void print_cb             (GtkAction     *action,
164                                   gpointer       data);
165 static void app_exit_cb          (GtkAction     *action,
166                                   gpointer       data);
167
168
169 static void search_cb            (GtkAction     *action,
170                                   gpointer       data);
171 static void search_folder_cb     (GtkAction     *action,
172                                   gpointer       data);
173
174 static void toggle_message_cb    (GtkAction     *action,
175                                   gpointer       data);
176 static void toggle_toolbar_cb    (GtkAction *action, GtkRadioAction *current, gpointer data);
177 static void toggle_col_headers_cb(GtkAction     *action,
178                                   gpointer       data);
179 #ifndef GENERIC_UMPC
180 static void toggle_statusbar_cb  (GtkAction     *action,
181                                   gpointer       data);
182 static void set_layout_cb        (GtkAction *action, GtkRadioAction *current, gpointer data);
183 #endif
184 static void addressbook_open_cb (GtkAction      *action,
185                                   gpointer       data);
186 static void log_window_show_cb  (GtkAction      *action,
187                                   gpointer       data);
188 static void filtering_debug_window_show_cb      (GtkAction      *action,
189                                   gpointer       data);
190
191 static void inc_cancel_cb               (GtkAction      *action,
192                                   gpointer       data);
193 static void send_cancel_cb              (GtkAction      *action,
194                                   gpointer       data);
195
196 static void open_msg_cb                 (GtkAction      *action,
197                                   gpointer       data);
198
199 static void view_source_cb              (GtkAction      *action,
200                                   gpointer       data);
201
202 static void show_all_header_cb          (GtkAction      *action,
203                                   gpointer       data);
204 static void toggle_fullscreen_cb        (GtkAction      *action,
205                                   gpointer       data);
206 static void toggle_menubar_cb   (GtkAction      *action,
207                                   gpointer       data);
208
209 static void hide_quotes_cb(GtkAction    *action,
210                                   gpointer       data);
211
212 static void move_to_cb                  (GtkAction      *action,
213                                   gpointer       data);
214 static void copy_to_cb                  (GtkAction      *action,
215                                   gpointer       data);
216 static void delete_cb                   (GtkAction      *action,
217                                   gpointer       data);
218 static void delete_trash_cb                     (GtkAction      *action,
219                                   gpointer       data);
220
221 static void cancel_cb                   (GtkAction      *action,
222                                   gpointer       data);
223
224 static void mark_cb                     (GtkAction      *action,
225                                   gpointer       data);
226 static void unmark_cb                   (GtkAction      *action,
227                                   gpointer       data);
228
229 static void mark_as_unread_cb           (GtkAction      *action,
230                                   gpointer       data);
231 static void mark_as_read_cb             (GtkAction      *action,
232                                   gpointer       data);
233 static void mark_all_read_cb            (GtkAction      *action,
234                                   gpointer       data);
235 static void mark_all_unread_cb          (GtkAction      *action,
236                                   gpointer       data);
237 static void mark_as_spam_cb             (GtkAction      *action,
238                                   gpointer       data);
239 static void mark_as_ham_cb              (GtkAction      *action,
240                                   gpointer       data);
241
242 static void ignore_thread_cb            (GtkAction      *action,
243                                   gpointer       data);
244 static void unignore_thread_cb          (GtkAction      *action,
245                                   gpointer       data);
246 static void watch_thread_cb             (GtkAction      *action,
247                                   gpointer       data);
248 static void unwatch_thread_cb           (GtkAction      *action,
249                                   gpointer       data);
250 static void lock_msgs_cb                (GtkAction      *action,
251                                   gpointer       data);
252 static void unlock_msgs_cb              (GtkAction      *action,
253                                   gpointer       data);
254
255 static void reedit_cb                   (GtkAction      *action,
256                                   gpointer       data);
257
258 static void add_address_cb              (GtkAction      *action,
259                                   gpointer       data);
260
261 static void set_charset_cb              (GtkAction *action, GtkRadioAction *current, gpointer data);
262
263 static void set_decode_cb               (GtkAction *action, GtkRadioAction *current, gpointer data);
264
265 static void hide_read_messages   (GtkAction     *action,
266                                   gpointer       data);
267 static void hide_read_threads   (GtkAction      *action,
268                                   gpointer       data);
269 static void hide_del_messages   (GtkAction      *action,
270                                   gpointer       data);
271
272 static void thread_cb            (GtkAction     *action,
273                                   gpointer       data);
274 static void expand_threads_cb    (GtkAction     *action,
275                                   gpointer       data);
276 static void collapse_threads_cb  (GtkAction     *action,
277                                   gpointer       data);
278
279 static void set_summary_display_item_cb  (GtkAction     *action,
280                                   gpointer       data);
281 static void set_folder_display_item_cb   (GtkAction     *action,
282                                   gpointer       data);
283 static void sort_summary_cb      (GtkAction *action, GtkRadioAction *current, gpointer data);
284 static void sort_summary_type_cb (GtkAction *action, GtkRadioAction *current, gpointer data);
285 static void attract_by_subject_cb(GtkAction     *action,
286                                   gpointer       data);
287
288 static void delete_duplicated_cb (GtkAction     *action,
289                                   gpointer       data);
290 static void delete_duplicated_all_cb (GtkAction *action,
291                                   gpointer       data);
292 static void filter_cb            (GtkAction     *action,
293                                   gpointer       data);
294 static void filter_list_cb       (GtkAction     *action,
295                                   gpointer       data);
296 static void process_cb           (GtkAction     *action,
297                                   gpointer       data);
298 static void execute_summary_cb   (GtkAction     *action,
299                                   gpointer       data);
300 static void expunge_summary_cb   (GtkAction     *action,
301                                   gpointer       data);
302 static void update_summary_cb    (GtkAction     *action,
303                                   gpointer       data);
304
305 static void prev_cb              (GtkAction     *action,
306                                   gpointer       data);
307 static void next_cb              (GtkAction     *action,
308                                   gpointer       data);
309 static void next_unread_cb       (GtkAction     *action,
310                                   gpointer       data);
311 static void prev_unread_cb       (GtkAction     *action,
312                                   gpointer       data);
313
314 static void prev_new_cb          (GtkAction     *action,
315                                   gpointer       data);
316 static void next_new_cb          (GtkAction     *action,
317                                   gpointer       data);
318 static void prev_marked_cb       (GtkAction     *action,
319                                   gpointer       data);
320 static void next_marked_cb       (GtkAction     *action,
321                                   gpointer       data);
322 static void prev_labeled_cb      (GtkAction     *action,
323                                   gpointer       data);
324 static void next_labeled_cb      (GtkAction     *action,
325                                   gpointer       data);
326 static void prev_history_cb      (GtkAction     *action,
327                                   gpointer       data);
328 static void next_history_cb      (GtkAction     *action,
329                                   gpointer       data);
330 static void parent_cb            (GtkAction     *action,
331                                   gpointer       data);
332
333 static void goto_folder_cb       (GtkAction     *action,
334                                   gpointer       data);
335 static void goto_unread_folder_cb(GtkAction     *action,
336                                   gpointer       data);
337
338 static void scroll_prev_line_cb  (GtkAction      *action,
339                                   gpointer        data);
340 static void scroll_next_line_cb  (GtkAction      *action,
341                                   gpointer        data);
342 static void scroll_prev_page_cb  (GtkAction      *action,
343                                   gpointer        data);
344 static void scroll_next_page_cb  (GtkAction      *action,
345                                   gpointer        data);
346
347 static void copy_cb              (GtkAction     *action,
348                                   gpointer       data);
349 static void allsel_cb            (GtkAction     *action,
350                                   gpointer       data);
351 static void select_thread_cb     (GtkAction     *action,
352                                   gpointer       data);
353 static void trash_thread_cb      (GtkAction     *action,
354                                   gpointer       data);
355 static void delete_thread_cb     (GtkAction     *action,
356                                   gpointer       data);
357
358 static void create_filter_cb     (GtkAction     *action,
359                                   gpointer       data);
360 static void create_processing_cb (GtkAction     *action,
361                                   gpointer       data);
362 static void open_urls_cb         (GtkAction     *action,
363                                   gpointer       data);
364
365 static void prefs_template_open_cb      (GtkAction      *action,
366                                   gpointer       data);
367 static void prefs_actions_open_cb       (GtkAction      *action,
368                                   gpointer       data);
369 static void prefs_tags_open_cb          (GtkAction      *action,
370                                   gpointer       data);
371 static void prefs_account_open_cb       (GtkAction      *action,
372                                   gpointer       data);
373
374 static void prefs_pre_processing_open_cb  (GtkAction    *action,
375                                   gpointer       data);
376
377 static void prefs_post_processing_open_cb (GtkAction    *action,
378                                   gpointer       data);
379
380 static void prefs_filtering_open_cb     (GtkAction      *action,
381                                   gpointer       data);
382 #ifdef USE_GNUTLS
383 static void ssl_manager_open_cb         (GtkAction      *action,
384                                   gpointer       data);
385 #endif
386 static void new_account_cb       (GtkAction     *action,
387                                   gpointer       data);
388
389 static void account_selector_menu_cb     (GtkMenuItem   *menuitem,
390                                           gpointer       data);
391 static void account_receive_menu_cb      (GtkMenuItem   *menuitem,
392                                           gpointer       data);
393 #ifndef GENERIC_UMPC
394 static void account_compose_menu_cb      (GtkMenuItem   *menuitem,
395                                           gpointer       data);
396 #endif
397 static void prefs_open_cb       (GtkAction      *action,
398                                   gpointer       data);
399 static void plugins_open_cb     (GtkAction      *action,
400                                   gpointer       data);
401
402 static void online_switch_clicked(GtkButton     *btn, 
403                                   gpointer data);
404
405 static void manual_open_cb       (GtkAction     *action,
406                                   gpointer       data);
407 static void manual_faq_open_cb   (GtkAction     *action,
408                                   gpointer       data);
409
410 static void legend_open_cb       (GtkAction     *action,
411                                   gpointer       data);
412
413 #ifdef G_OS_WIN32
414 static void set_default_client_cb (GtkAction    *action,
415                                   gpointer       data);
416 #endif
417
418 static void scan_tree_func       (Folder        *folder,
419                                   FolderItem    *item,
420                                   gpointer       data);
421                                   
422 static void toggle_work_offline_cb(GtkAction    *action,
423                                   gpointer       data);
424
425 static void addr_harvest_cb      ( GtkAction    *action,
426                                   gpointer       data );
427
428 static void addr_harvest_msg_cb  ( GtkAction    *action,
429                                   gpointer       data );
430 static void sync_cb              ( GtkAction    *action,
431                                   gpointer       data );
432
433 static void forget_session_passwords_cb (GtkAction      *action,
434                                          gpointer        data );
435 #ifndef PASSWORD_CRYPTO_OLD
436 static void forget_master_passphrase_cb (GtkAction      *action,
437                                          gpointer        data );
438 #endif
439 static gboolean mainwindow_focus_in_event       (GtkWidget      *widget, 
440                                                  GdkEventFocus  *focus,
441                                                  gpointer        data);
442 static gboolean mainwindow_visibility_event_cb  (GtkWidget      *widget, 
443                                                  GdkEventVisibility     *state,
444                                                  gpointer        data);
445 static gboolean mainwindow_state_event_cb       (GtkWidget      *widget, 
446                                                  GdkEventWindowState    *state,
447                                                  gpointer        data);
448 static void main_window_reply_cb                        (GtkAction      *action,
449                                   gpointer       data);
450 static gboolean mainwindow_progressindicator_hook       (gpointer        source,
451                                                  gpointer        userdata);
452
453 static gint mailing_list_create_submenu(MainWindow *mainwindow,
454                                        MsgInfo *msginfo);
455
456 static gint mailing_list_populate_submenu(GtkWidget *menu, const gchar * list_header);
457         
458 static void get_url_part(const gchar **buf, gchar *url_decoded);
459
460 static void mailing_list_compose(GtkWidget *w, gpointer *data);
461  
462 static void mailing_list_open_uri(GtkWidget *w, gpointer *data);
463 #define  SEPARATE_ACTION 500 
464 static void mainwindow_quicksearch              (GtkAction      *action,
465                                   gpointer       data);
466 static gboolean any_folder_want_synchronise(void);
467
468 static void save_part_as_cb(GtkAction *action, gpointer data);
469 static void view_part_as_text_cb(GtkAction *action, gpointer data);
470 static void open_part_cb(GtkAction *action, gpointer data);
471 #ifndef G_OS_WIN32
472 static void open_part_with_cb(GtkAction *action, gpointer data);
473 #endif
474 static void check_signature_cb(GtkAction *action, gpointer data);
475 static void goto_next_part_cb(GtkAction *action, gpointer data);
476 static void goto_prev_part_cb(GtkAction *action, gpointer data);
477 #define DO_ACTION(name, act)    { if (!strcmp(a_name, name)) action = act; }
478
479 static void mainwindow_nothing_cb          (GtkAction *action, gpointer data)
480 {
481
482 }
483
484 static void about_cb(GtkAction *gaction, gpointer data)
485 {
486         about_show();
487 }
488
489 static void     mw_inc_mail_cb                  (GtkAction *gaction, gpointer data)
490 {
491         inc_mail_cb(data, 0, NULL);
492 }
493 static void     mw_inc_all_account_mail_cb              (GtkAction *gaction, gpointer data)
494 {
495         inc_all_account_mail_cb(data, 0, NULL);
496 }
497 static void     mw_send_queue_cb                        (GtkAction *gaction, gpointer data)
498 {
499         send_queue_cb(data, 0, NULL);
500 }
501 static void     mw_compose_mail_cb                      (GtkAction *gaction, gpointer data)
502 {
503         compose_mail_cb(data, 0, NULL);
504 }
505 static void     mw_compose_news_cb                      (GtkAction *gaction, gpointer data)
506 {
507         compose_news_cb(data, 0, NULL);
508 }
509
510 static GtkActionEntry mainwin_entries[] =
511 {
512         {"Menu",                        NULL, "Menu", NULL, NULL, NULL },
513 /* menus */
514         {"File",                        NULL, N_("_File"), NULL, NULL, NULL },
515         {"Edit",                        NULL, N_("_Edit"), NULL, NULL, NULL },
516         {"View",                        NULL, N_("_View"), NULL, NULL, NULL },
517         {"Message",                     NULL, N_("_Message"), NULL, NULL, NULL },
518         {"Tools",                       NULL, N_("_Tools"), NULL, NULL, NULL },
519         {"Configuration",               NULL, N_("_Configuration"), NULL, NULL, NULL },
520         {"Help",                        NULL, N_("_Help"), NULL, NULL, NULL },
521
522 /* File menu */
523         {"File/AddMailbox",             NULL, N_("_Add mailbox"), NULL, NULL, NULL },
524         {"File/AddMailbox/MH",          NULL, N_("MH..."), NULL, NULL, G_CALLBACK(add_mailbox_cb) },
525         {"File/---",                    NULL, "---", NULL, NULL, NULL },
526
527         {"File/SortMailboxes",          NULL, N_("Change mailbox order..."), NULL, NULL, G_CALLBACK(foldersort_cb) },
528
529         /* {"File/---",                 NULL, "---", NULL, NULL, NULL }, */
530         {"File/ImportMbox",             NULL, N_("_Import mbox file..."), NULL, NULL, G_CALLBACK(import_mbox_cb) },
531         {"File/ExportMbox",             NULL, N_("_Export to mbox file..."), NULL, NULL, G_CALLBACK(export_mbox_cb) },
532         {"File/ExportSelMbox",          NULL, N_("_Export selected to mbox file..."), NULL, NULL, G_CALLBACK(export_list_mbox_cb) },
533         /* {"File/---",                 NULL, "---", NULL, NULL, NULL }, */
534         {"File/EmptyTrashes",           NULL, N_("Empty all _Trash folders"), "<shift>D", NULL, G_CALLBACK(empty_trash_cb) },
535         /* {"File/---",                 NULL, "---", NULL, NULL, NULL }, */
536
537         {"File/SaveAs",                 NULL, N_("_Save email as..."), "<control>S", NULL, G_CALLBACK(save_as_cb) },
538         {"File/SavePartAs",             NULL, N_("_Save part as..."), "Y", NULL, G_CALLBACK(save_part_as_cb) },
539         /* {"File/---",                 NULL, "---", NULL, NULL, NULL }, */
540
541         {"File/PageSetup",              NULL, N_("Page setup..."), NULL, NULL, G_CALLBACK(page_setup_cb) },
542         {"File/Print",                  NULL, N_("_Print..."), "<control>P", NULL, G_CALLBACK(print_cb) },
543         /* {"File/---",                 NULL, "---", NULL, NULL, NULL }, */
544         {"File/SynchroniseFolders",     NULL, N_("Synchronise folders"), "<control><shift>S", NULL, G_CALLBACK(sync_cb) }, 
545         /* {"File/---",                 NULL, "---", NULL, NULL, NULL }, */
546         {"File/Exit",                   NULL, N_("E_xit"), "<control>Q", NULL, G_CALLBACK(app_exit_cb) }, 
547
548 /* Edit menu */
549         {"Edit/Copy",                   NULL, N_("_Copy"), "<control>C", NULL, G_CALLBACK(copy_cb) }, 
550         {"Edit/SelectAll",              NULL, N_("Select _all"), "<control>A", NULL, G_CALLBACK(allsel_cb) }, 
551         {"Edit/SelectThread",           NULL, N_("Select _thread"), NULL, NULL, G_CALLBACK(select_thread_cb) }, 
552         {"Edit/---",                    NULL, "---", NULL, NULL, NULL },
553         {"Edit/Find",                   NULL, N_("_Find in current message..."), "<control>F", NULL, G_CALLBACK(search_cb) },
554         {"Edit/SearchFolder",                   NULL, N_("_Search folder..."), "<shift><control>F", NULL, G_CALLBACK(search_folder_cb) },
555         {"Edit/QuickSearch",                    NULL, N_("_Quick search"), "slash", NULL, G_CALLBACK(mainwindow_quicksearch) },
556
557 /* View menu */
558         {"View/ShowHide",               NULL, N_("Show or hi_de"), NULL, NULL, NULL },
559         {"View/ShowHide/Toolbar",       NULL, N_("_Toolbar"), NULL, NULL, NULL },
560
561         {"View/SetColumns",             NULL, N_("Set displayed _columns"), NULL, NULL, NULL },
562         {"View/SetColumns/Folderlist",  NULL, N_("In _folder list..."), NULL, NULL, G_CALLBACK(set_folder_display_item_cb) },
563         {"View/SetColumns/Messagelist", NULL, N_("In _message list..."), NULL, NULL, G_CALLBACK(set_summary_display_item_cb) },
564         {"View/---",                    NULL, "---", NULL, NULL, NULL },
565
566
567 #ifndef GENERIC_UMPC
568         {"View/Layout",                 NULL, N_("La_yout"), NULL, NULL, NULL },
569 #endif
570         {"View/Sort",                   NULL, N_("_Sort"), NULL, NULL, NULL },
571         {"View/Sort/---",               NULL, "---", NULL, NULL, NULL }, 
572         {"View/Sort/AttractSubj",               NULL, N_("_Attract by subject"), NULL, NULL, G_CALLBACK(attract_by_subject_cb) }, 
573
574         {"View/ExpandThreads",                  NULL, N_("E_xpand all threads"), NULL, NULL, G_CALLBACK(expand_threads_cb) }, 
575         {"View/CollapseThreads",                NULL, N_("Co_llapse all threads"), NULL, NULL, G_CALLBACK(collapse_threads_cb) }, 
576
577         {"View/Goto",                   NULL, N_("_Go to"), NULL, NULL, NULL },
578         {"View/Goto/Prev",              NULL, N_("_Previous message"), "P", NULL, G_CALLBACK(prev_cb) },
579         {"View/Goto/Next",              NULL, N_("_Next message"), "N", NULL, G_CALLBACK(next_cb) },
580         {"View/Goto/---",               NULL, "---", NULL, NULL, NULL },
581         {"View/Goto/PrevUnread",        NULL, N_("P_revious unread message"), "<shift>P", NULL, G_CALLBACK(prev_unread_cb) },
582         {"View/Goto/NextUnread",        NULL, N_("N_ext unread message"), "<shift>N", NULL, G_CALLBACK(next_unread_cb) },
583         /* {"View/Goto/---",            NULL, "---", NULL, NULL, NULL }, */
584         {"View/Goto/PrevNew",           NULL, N_("Previous ne_w message"), NULL, NULL, G_CALLBACK(prev_new_cb) },
585         {"View/Goto/NextNew",           NULL, N_("Ne_xt new message"), NULL, NULL, G_CALLBACK(next_new_cb) },
586         /* {"View/Goto/---",            NULL, "---", NULL, NULL, NULL }, */
587         {"View/Goto/PrevMarked",        NULL, N_("Previous _marked message"), NULL, NULL, G_CALLBACK(prev_marked_cb) },
588         {"View/Goto/NextMarked",        NULL, N_("Next m_arked message"), NULL, NULL, G_CALLBACK(next_marked_cb) },
589         /* {"View/Goto/---",            NULL, "---", NULL, NULL, NULL }, */
590         {"View/Goto/PrevLabeled",       NULL, N_("Previous _labeled message"), NULL, NULL, G_CALLBACK(prev_labeled_cb) },
591         {"View/Goto/NextLabeled",       NULL, N_("Next la_beled message"), NULL, NULL, G_CALLBACK(next_labeled_cb) },
592         /* {"View/Goto/---",            NULL, "---", NULL, NULL, NULL }, */
593         {"View/Goto/PrevHistory",       NULL, N_("Previous opened message"), "<alt>Left", NULL, G_CALLBACK(prev_history_cb) },
594         {"View/Goto/NextHistory",       NULL, N_("Next opened message"), "<alt>Right", NULL, G_CALLBACK(next_history_cb) },
595         /* {"View/Goto/---",            NULL, "---", NULL, NULL, NULL }, */
596         {"View/Goto/ParentMessage",     NULL, N_("Parent message"), "<control>Up", NULL, G_CALLBACK(parent_cb) },
597         /* {"View/Goto/---",            NULL, "---", NULL, NULL, NULL }, */
598         {"View/Goto/NextUnreadFolder",  NULL, N_("Next unread _folder"), "<shift>G", NULL, G_CALLBACK(goto_unread_folder_cb) },
599         {"View/Goto/Folder",            NULL, N_("F_older..."), "G", NULL, G_CALLBACK(goto_folder_cb) },
600         /* {"View/Goto/---",            NULL, "---", NULL, NULL, NULL }, */
601         {"View/Goto/NextPart",          NULL, N_("Next part"), "A", NULL, G_CALLBACK(goto_next_part_cb) },
602         {"View/Goto/PrevPart",          NULL, N_("Previous part"), "Z", NULL, G_CALLBACK(goto_prev_part_cb) },
603
604         /* {"View/Scroll/---",          NULL, "---", NULL, NULL, NULL }, */
605         {"View/Scroll",                 NULL, N_("Message scroll"), NULL, NULL, NULL },
606         {"View/Scroll/PrevLine",        NULL, N_("Previous line"), NULL, NULL, G_CALLBACK(scroll_prev_line_cb) },
607         {"View/Scroll/NextLine",        NULL, N_("Next line"), NULL, NULL, G_CALLBACK(scroll_next_line_cb) },
608         {"View/Scroll/PrevPage",        NULL, N_("Previous page"), NULL, NULL, G_CALLBACK(scroll_prev_page_cb) },
609         {"View/Scroll/NextPage",        NULL, N_("Next page"), NULL, NULL, G_CALLBACK(scroll_next_page_cb) },
610
611         /* {"View/---",                 NULL, "---", NULL, NULL, NULL }, */
612         {"View/Encoding",               NULL, N_("Character _encoding"), NULL, NULL, NULL }, /* set_charset_cb */
613         {"View/Encoding/---",           NULL, "---", NULL, NULL, NULL },
614 #define ENC_ACTION(cs_char,c_char,string) \
615         { "View/Encoding/" cs_char, NULL, N_(string), NULL, NULL, c_char }
616
617         {"View/Encoding/Western",       NULL, N_("Western European"), NULL, NULL, NULL },
618         {"View/Encoding/Baltic",        NULL, N_("Baltic"), NULL, NULL, NULL },
619         {"View/Encoding/Hebrew",        NULL, N_("Hebrew"), NULL, NULL, NULL },
620         {"View/Encoding/Arabic",        NULL, N_("Arabic"), NULL, NULL, NULL },
621         {"View/Encoding/Cyrillic",      NULL, N_("Cyrillic"), NULL, NULL, NULL },
622         {"View/Encoding/Japanese",      NULL, N_("Japanese"), NULL, NULL, NULL },
623         {"View/Encoding/Chinese",       NULL, N_("Chinese"), NULL, NULL, NULL },
624         {"View/Encoding/Korean",        NULL, N_("Korean"), NULL, NULL, NULL },
625         {"View/Encoding/Thai",          NULL, N_("Thai"), NULL, NULL, NULL },
626
627         {"View/Decode",                 NULL, N_("Decode"), NULL, NULL, NULL }, /* set_decode_cb */
628         {"View/Decode/---",             NULL, "---", NULL, NULL, NULL },
629
630 #define DEC_ACTION(cs_type,c_type,string) \
631         { "View/Decode/" cs_type, NULL, N_(string), NULL, NULL, c_type }
632
633         /* {"View/---",                 NULL, "---", NULL, NULL, NULL }, */
634         {"View/OpenNewWindow",          NULL, N_("Open in new _window"), "<control><alt>N", NULL, G_CALLBACK(open_msg_cb) },
635         {"View/MessageSource",          NULL, N_("Mess_age source"), "<control>U", NULL, G_CALLBACK(view_source_cb) },
636         /* {"View/---",                 NULL, "---", NULL, NULL, NULL }, */
637         {"View/Part",                   NULL, N_("Message part"), NULL, NULL, NULL },
638         {"View/Part/AsText",            NULL, N_("View as text"), "T", NULL, G_CALLBACK(view_part_as_text_cb) },
639         {"View/Part/Open",              NULL, N_("Open"), "L", NULL, G_CALLBACK(open_part_cb) },
640 #ifndef G_OS_WIN32
641         {"View/Part/OpenWith",          NULL, N_("Open with..."), "O", NULL, G_CALLBACK(open_part_with_cb) },
642 #endif
643         /* {"View/---",                 NULL, "---", NULL, NULL, NULL }, */
644
645         {"View/Quotes",                 NULL, N_("Quotes"), NULL, NULL, NULL }, 
646         /* {"View/---",                 NULL, "---", NULL, NULL, NULL }, */
647         {"View/UpdateSummary",          NULL, N_("_Update summary"), "<control><alt>U", NULL, G_CALLBACK(update_summary_cb) },
648
649 /* Message menu */
650         {"Message/Receive",                              NULL, N_("Recei_ve"), NULL, NULL, NULL },
651         {"Message/Receive/CurrentAccount",               NULL, N_("Get from _current account"), "<control>I", NULL, G_CALLBACK(mw_inc_mail_cb) },
652         {"Message/Receive/AllAccounts",                  NULL, N_("Get from _all accounts"), "<shift><control>I", NULL, G_CALLBACK(mw_inc_all_account_mail_cb) },
653         {"Message/Receive/CancelReceiving",              NULL, N_("Cancel receivin_g"), NULL, NULL, G_CALLBACK(inc_cancel_cb) },
654         {"Message/Receive/---",                          NULL, "---", NULL, NULL, NULL },
655         {"Message/Receive/PlaceHolder",                  NULL, "PlaceHolder,", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
656         {"Message/SendQueue",                            NULL, N_("_Send queued messages"), NULL, NULL, G_CALLBACK(mw_send_queue_cb) },
657         {"Message/CancelSending",                        NULL, N_("Cancel sending"), NULL, NULL, G_CALLBACK(send_cancel_cb) },
658
659         {"Message/---",                                  NULL, "---", NULL, NULL, NULL },
660
661         {"Message/ComposeEmail",                         NULL, N_("Compose a_n email message"), "<control>M", NULL, G_CALLBACK(mw_compose_mail_cb) },
662         {"Message/ComposeNews",                          NULL, N_("Compose a news message"), NULL, NULL, G_CALLBACK(mw_compose_news_cb) },
663
664         {"Message/Reply",                                NULL, N_("_Reply"), "<control>R", NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_REPLY */
665         {"Message/ReplyTo",                              NULL, N_("Repl_y to"), NULL, NULL, NULL }, 
666         {"Message/ReplyTo/All",                          NULL, N_("_All"), "<control><shift>R", NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_REPLY_TO_ALL */
667         {"Message/ReplyTo/Sender",                       NULL, N_("_Sender"), NULL, NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_REPLY_TO_SENDER */
668         {"Message/ReplyTo/List",                         NULL, N_("Mailing _list"), "<control>L", NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_REPLY_TO_LIST */
669         {"Message/FollowupReply",                        NULL, N_("Follow-up and reply to"), NULL, NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_FOLLOWUP_AND_REPLY_TO */
670         /* {"Message/---",                               NULL, "---", NULL, NULL, NULL }, */
671
672         {"Message/Forward",                              NULL, N_("_Forward"), "<control><alt>F", NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_FORWARD_INLINE */
673         {"Message/ForwardAtt",                           NULL, N_("For_ward as attachment"), NULL, NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_FORWARD_AS_ATTACH */
674         {"Message/Redirect",                             NULL, N_("Redirec_t"), NULL, NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_REDIRECT */
675
676         {"Message/MailingList",                          NULL, N_("Mailing-_List"), NULL, NULL, NULL }, 
677         {"Message/MailingList/Post",                     NULL, N_("Post"), NULL, NULL, NULL }, 
678         {"Message/MailingList/Post/PlaceHolder",         NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
679         {"Message/MailingList/Help",                     NULL, N_("Help"), NULL, NULL, NULL }, 
680         {"Message/MailingList/Help/PlaceHolder",         NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
681         {"Message/MailingList/Subscribe",                NULL, N_("Subscribe"), NULL, NULL, NULL }, 
682         {"Message/MailingList/Subscribe/PlaceHolder",    NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
683         {"Message/MailingList/Unsubscribe",              NULL, N_("Unsubscribe"), NULL, NULL, NULL }, 
684         {"Message/MailingList/Unsubscribe/PlaceHolder",  NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
685         {"Message/MailingList/ViewArchive",              NULL, N_("View archive"), NULL, NULL, NULL }, 
686         {"Message/MailingList/ViewArchive/PlaceHolder",  NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
687         {"Message/MailingList/ContactOwner",             NULL, N_("Contact owner"), NULL, NULL, NULL }, 
688         {"Message/MailingList/ContactOwner/PlaceHolder", NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
689         /* separation */
690
691         {"Message/Move",                             NULL, N_("M_ove..."), "<control>O", NULL, G_CALLBACK(move_to_cb) },
692         {"Message/Copy",                             NULL, N_("_Copy..."), "<shift><control>O", NULL, G_CALLBACK(copy_to_cb) },
693         {"Message/Trash",                            NULL, N_("Move to _trash"), "<control>D", NULL, G_CALLBACK(delete_trash_cb) },
694         {"Message/Delete",                           NULL, N_("_Delete..."), NULL, NULL, G_CALLBACK(delete_cb) },
695         {"Message/TrashThread",                      NULL, N_("Move thread to tr_ash"), NULL, NULL, G_CALLBACK(trash_thread_cb) }, 
696         {"Message/DeleteThread",                     NULL, N_("Delete t_hread"), NULL, NULL, G_CALLBACK(delete_thread_cb) }, 
697         {"Message/CancelNews",                       NULL, N_("Cancel a news message"), NULL, NULL, G_CALLBACK(cancel_cb) },
698         /* separation */
699         
700         {"Message/Mark",                             NULL, N_("_Mark"), NULL, NULL, NULL },
701         {"Message/Mark/Mark",                        NULL, N_("_Mark"), "<shift>asterisk", NULL, G_CALLBACK(mark_cb) },
702         {"Message/Mark/Unmark",                      NULL, N_("_Unmark"), "U", NULL, G_CALLBACK(unmark_cb) },
703         {"Message/Mark/---",                         NULL, "---", NULL, NULL, NULL },
704
705         {"Message/Mark/MarkRead",                    NULL, N_("Mark as rea_d"), NULL, NULL, G_CALLBACK(mark_as_read_cb) },
706         {"Message/Mark/MarkUnread",                  NULL, N_("Mark as unr_ead"), "<shift>exclam", NULL, G_CALLBACK(mark_as_unread_cb) },
707         /* separation */
708         {"Message/Mark/MarkAllRead",                 NULL, N_("Mark all read"), NULL, NULL, G_CALLBACK(mark_all_read_cb) },
709         {"Message/Mark/MarkAllUnread",               NULL, N_("Mark all unread"), NULL, NULL, G_CALLBACK(mark_all_unread_cb) },
710         /* separation */
711         {"Message/Mark/IgnoreThread",                NULL, N_("Ignore thread"), NULL, NULL, G_CALLBACK(ignore_thread_cb) },
712         {"Message/Mark/UnignoreThread",              NULL, N_("Unignore thread"), NULL, NULL, G_CALLBACK(unignore_thread_cb) },
713         {"Message/Mark/WatchThread",                 NULL, N_("Watch thread"), NULL, NULL, G_CALLBACK(watch_thread_cb) },
714         {"Message/Mark/UnwatchThread",               NULL, N_("Unwatch thread"), NULL, NULL, G_CALLBACK(unwatch_thread_cb) },
715         /* separation */
716
717         {"Message/Mark/MarkSpam",                    NULL, N_("Mark as _spam"), NULL, NULL, G_CALLBACK(mark_as_spam_cb) },
718         {"Message/Mark/MarkHam",                     NULL, N_("Mark as _ham"), NULL, NULL, G_CALLBACK(mark_as_ham_cb) },
719         /* separation */
720
721         {"Message/Mark/Lock",                        NULL, N_("Lock"), NULL, NULL, G_CALLBACK(lock_msgs_cb) },
722         {"Message/Mark/Unlock",                      NULL, N_("Unlock"), NULL, NULL, G_CALLBACK(unlock_msgs_cb) },
723
724         {"Message/ColorLabel",                       NULL, N_("Color la_bel"), NULL, NULL, NULL },
725         {"Message/Tags",                             NULL, N_("Ta_gs"), NULL, NULL, NULL },
726         /*{"Message/---",                            NULL, "---", NULL, NULL, NULL },*/
727
728         {"Message/Reedit",                           NULL, N_("Re-_edit"), NULL, NULL, G_CALLBACK(reedit_cb) },
729         /*{"Message/---",                            NULL, "---", NULL, NULL, NULL },*/
730
731         {"Message/CheckSignature",                   NULL, N_("Check signature"), "C", NULL, G_CALLBACK(check_signature_cb) },
732
733 /* Tools menu */
734
735         {"Tools/AddressBook",                        NULL, N_("_Address book"), "<control><shift>A", NULL, G_CALLBACK(addressbook_open_cb) }, 
736         {"Tools/AddSenderToAB",                      NULL, N_("Add sender to address boo_k"), NULL, NULL, G_CALLBACK(add_address_cb) }, 
737
738         {"Tools/CollectAddresses",                   NULL, N_("C_ollect addresses"), NULL, NULL, NULL }, 
739         {"Tools/CollectAddresses/FromFolder",        NULL, N_("From current _folder..."), NULL, NULL, G_CALLBACK(addr_harvest_cb) }, 
740         {"Tools/CollectAddresses/FromSelected",      NULL, N_("From selected _messages..."), NULL, NULL, G_CALLBACK(addr_harvest_msg_cb) }, 
741         {"Tools/---",                                NULL, "---", NULL, NULL, NULL },
742
743         {"Tools/FilterFolder",                       NULL, N_("_Filter all messages in folder"), NULL, NULL, G_CALLBACK(filter_cb) }, 
744         {"Tools/FilterSelected",                     NULL, N_("Filter _selected messages"), NULL, NULL, G_CALLBACK(filter_list_cb) }, 
745         {"Tools/RunProcessing",                      NULL, N_("Run folder pr_ocessing rules"), NULL, NULL, G_CALLBACK(process_cb) }, 
746
747         {"Tools/CreateFilterRule",                   NULL, N_("_Create filter rule"), NULL, NULL, NULL },
748         {"Tools/CreateFilterRule/Automatically",     NULL, N_("_Automatically"), NULL, NULL, G_CALLBACK(create_filter_cb) }, /* FILTER_BY_AUTO */
749         {"Tools/CreateFilterRule/ByFrom",            NULL, N_("By _From"), NULL, NULL, G_CALLBACK(create_filter_cb) }, /* FILTER_BY_FROM */
750         {"Tools/CreateFilterRule/ByTo",              NULL, N_("By _To"), NULL, NULL, G_CALLBACK(create_filter_cb) }, /* FILTER_BY_TO     */
751         {"Tools/CreateFilterRule/BySubject",         NULL, N_("By _Subject"), NULL, NULL, G_CALLBACK(create_filter_cb) }, /* FILTER_BY_SUBJECT */
752
753         {"Tools/CreateProcessingRule",               NULL, N_("Create processing rule"), NULL, NULL, NULL },
754         {"Tools/CreateProcessingRule/Automatically", NULL, N_("_Automatically"), NULL, NULL, G_CALLBACK(create_processing_cb) }, 
755         {"Tools/CreateProcessingRule/ByFrom",        NULL, N_("By _From"), NULL, NULL, G_CALLBACK(create_processing_cb) }, 
756         {"Tools/CreateProcessingRule/ByTo",          NULL, N_("By _To"), NULL, NULL, G_CALLBACK(create_processing_cb) }, 
757         {"Tools/CreateProcessingRule/BySubject",     NULL, N_("By _Subject"), NULL, NULL, G_CALLBACK(create_processing_cb) }, 
758         /* {"Tools/---",                             NULL, "---", NULL, NULL, NULL }, */
759
760         {"Tools/ListUrls",                           NULL, N_("List _URLs..."), "<control><shift>U", NULL, G_CALLBACK(open_urls_cb) }, 
761
762         /* {"Tools/---",                             NULL, "---", NULL, NULL, NULL }, */
763         {"Tools/Actions",                            NULL, N_("Actio_ns"), NULL, NULL, NULL },
764         {"Tools/Actions/PlaceHolder",                NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
765         /* {"Tools/---",                             NULL, "---", NULL, NULL, NULL }, */
766
767         {"Tools/CheckNewMessages",                   NULL, N_("Ch_eck for new messages in all folders"), NULL, NULL, G_CALLBACK(update_folderview_cb) }, 
768         {"Tools/DeleteDuplicates",                   NULL, N_("Delete du_plicated messages"), NULL, NULL, NULL },
769         {"Tools/DeleteDuplicates/SelFolder",         NULL, N_("In selected folder"), NULL, NULL, G_CALLBACK(delete_duplicated_cb) },
770         {"Tools/DeleteDuplicates/AllFolders",        NULL, N_("In all folders"), NULL, NULL, G_CALLBACK(delete_duplicated_all_cb) },
771         /* {"Tools/---",                             NULL, "---", NULL, NULL, NULL }, */
772
773         {"Tools/Execute",                            NULL, N_("E_xecute"), "X", NULL, G_CALLBACK(execute_summary_cb) }, 
774         {"Tools/Expunge",                            NULL, N_("Exp_unge"), "<control>E", NULL, G_CALLBACK(expunge_summary_cb) }, 
775 #ifdef USE_GNUTLS
776         /* {"Tools/---",                             NULL, "---", NULL, NULL, NULL }, */
777         {"Tools/SSLCertificates",                    NULL, N_("SSL/TLS cer_tificates"), NULL, NULL, G_CALLBACK(ssl_manager_open_cb) }, 
778 #endif
779         /* {"Tools/---",                             NULL, "---", NULL, NULL, NULL }, */
780         {"Tools/FilteringLog",                       NULL, N_("Filtering Lo_g"), NULL, NULL, G_CALLBACK(filtering_debug_window_show_cb) }, 
781         {"Tools/NetworkLog",                         NULL, N_("Network _Log"), "<shift><control>L", NULL, G_CALLBACK(log_window_show_cb) }, 
782         /* {"Tools/---",                             NULL, "---", NULL, NULL, NULL }, */
783         {"Tools/ForgetSessionPasswords",             NULL, N_("_Forget all session passwords"), NULL, NULL, G_CALLBACK(forget_session_passwords_cb) }, 
784 #ifndef PASSWORD_CRYPTO_OLD
785         {"Tools/ForgetMasterPassphrase",             NULL, N_("Forget _master passphrase"), NULL, NULL, G_CALLBACK(forget_master_passphrase_cb) },
786 #endif
787
788 /* Configuration menu */        
789         {"Configuration/ChangeAccount",              NULL, N_("C_hange current account"), NULL, NULL, NULL },
790         {"Configuration/ChangeAccount/PlaceHolder",  NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
791         {"Configuration/AccountPrefs",               NULL, N_("_Preferences for current account..."), NULL, NULL, G_CALLBACK(prefs_account_open_cb) },
792         {"Configuration/CreateAccount",              NULL, N_("Create _new account..."), NULL, NULL, G_CALLBACK(new_account_cb) },
793         {"Configuration/EditAccounts",               NULL, N_("_Edit accounts..."), NULL, NULL, G_CALLBACK(account_edit_open) },
794         {"Configuration/---",                        NULL, "---", NULL, NULL, NULL }, 
795
796         {"Configuration/Preferences",                NULL, N_("P_references..."), NULL, NULL, G_CALLBACK(prefs_open_cb) },
797         {"Configuration/PreProcessing",              NULL, N_("Pre-pr_ocessing..."), NULL, NULL, G_CALLBACK(prefs_pre_processing_open_cb) },
798         {"Configuration/PostProcessing",             NULL, N_("Post-pro_cessing..."), NULL, NULL, G_CALLBACK(prefs_post_processing_open_cb) },
799         {"Configuration/Filtering",                  NULL, N_("_Filtering..."), NULL, NULL, G_CALLBACK(prefs_filtering_open_cb) },
800         {"Configuration/Templates",                  NULL, N_("_Templates..."), NULL, NULL, G_CALLBACK(prefs_template_open_cb) },
801         {"Configuration/Actions",                    NULL, N_("_Actions..."), NULL, NULL, G_CALLBACK(prefs_actions_open_cb) },
802         {"Configuration/Tags",                       NULL, N_("Tag_s..."), NULL, NULL, G_CALLBACK(prefs_tags_open_cb) },
803         /* {"Configuration/---",                     NULL, "---", NULL, NULL, NULL }, */
804         {"Configuration/Plugins",                    NULL, N_("Plu_gins..."), NULL, NULL, G_CALLBACK(plugins_open_cb) },
805
806 /* Help menu */
807         {"Help/Manual",                              NULL, N_("_Manual"), NULL, NULL, G_CALLBACK(manual_open_cb) }, 
808         {"Help/FAQ",                                 NULL, N_("_Online User-contributed FAQ"), NULL, NULL, G_CALLBACK(manual_faq_open_cb) }, 
809         {"Help/IconLegend",                          NULL, N_("Icon _Legend"), NULL, NULL, G_CALLBACK(legend_open_cb) }, 
810 #ifdef G_OS_WIN32
811         {"Help/SetDefault",                          NULL, N_("Set as default client"), NULL, NULL, G_CALLBACK(set_default_client_cb) }, 
812 #endif
813         {"Help/---",                                 NULL, "---", NULL, NULL, NULL }, 
814         {"Help/About",                               NULL, N_("_About"), NULL, NULL, G_CALLBACK(about_cb) }, 
815 };
816
817 static GtkToggleActionEntry mainwin_toggle_entries[] = {
818         {"File/OfflineMode",                     NULL, N_("Offline _mode"), "<control>W", NULL, G_CALLBACK(toggle_work_offline_cb), FALSE }, /*toggle*/
819         {"View/ShowHide/MenuBar",                NULL, N_("Men_ubar"), "<control>F12", NULL, G_CALLBACK(toggle_menubar_cb), FALSE }, /* toggle */
820         {"View/ShowHide/MessageView",            NULL, N_("_Message view"), "V", NULL, G_CALLBACK(toggle_message_cb), FALSE }, /* toggle */
821 #ifndef GENERIC_UMPC
822         {"View/ShowHide/StatusBar",              NULL, N_("Status _bar"), NULL, NULL, G_CALLBACK(toggle_statusbar_cb), FALSE }, /* toggle */
823 #endif
824         {"View/ShowHide/ColumnHeaders",          NULL, N_("Column headers"), NULL, NULL, G_CALLBACK(toggle_col_headers_cb), FALSE }, /* toggle */
825         {"View/ThreadView",                      NULL, N_("Th_read view"), "<control>T", NULL, G_CALLBACK(thread_cb), FALSE }, /* toggle */
826         {"View/HideReadThreads",                 NULL, N_("Hide read threads"), NULL, NULL, G_CALLBACK(hide_read_threads), FALSE }, /* toggle */
827         {"View/HideReadMessages",                NULL, N_("_Hide read messages"), NULL, NULL, G_CALLBACK(hide_read_messages), FALSE }, /* toggle */
828         {"View/HideDelMessages",                 NULL, N_("Hide deleted messages"), NULL, NULL, G_CALLBACK(hide_del_messages), FALSE }, /* toggle */
829         {"View/FullScreen",                      NULL, N_("_Fullscreen"), "F11", NULL, G_CALLBACK(toggle_fullscreen_cb), FALSE }, /* toggle */
830         {"View/AllHeaders",                      NULL, N_("Show all _headers"), "<control>H", NULL, G_CALLBACK(show_all_header_cb), FALSE }, /* toggle */
831         {"View/Quotes/CollapseAll",              NULL, N_("_Collapse all"), "<control><shift>Q", NULL, G_CALLBACK(hide_quotes_cb), FALSE }, /* 1 toggle */
832         {"View/Quotes/Collapse2",                NULL, N_("Collapse from level _2"), NULL, NULL, G_CALLBACK(hide_quotes_cb), FALSE }, /* 2 toggle */
833         {"View/Quotes/Collapse3",                NULL, N_("Collapse from level _3"), NULL, NULL, G_CALLBACK(hide_quotes_cb), FALSE }, /* 3 toggle */
834 };
835
836 static GtkRadioActionEntry mainwin_showhide_radio_entries[] = { /* toggle_toolbar_cb */
837         {"View/ShowHide/Toolbar/TextBelowIcon",  NULL, N_("Text _below icons"), NULL, NULL, TOOLBAR_BOTH }, /* radio TOOLBAR_BOTH */
838         {"View/ShowHide/Toolbar/TextBesideIcon", NULL, N_("Text be_side icons"), NULL, NULL, TOOLBAR_BOTH_HORIZ }, /* radio TOOLBAR_BOTH_HORIZ */
839         {"View/ShowHide/Toolbar/IconOnly",       NULL, N_("_Icons only"), NULL, NULL, TOOLBAR_ICON }, /* radio TOOLBAR_ICON */
840         {"View/ShowHide/Toolbar/TextOnly",       NULL, N_("_Text only"), NULL, NULL, TOOLBAR_TEXT }, /* radio TOOLBAR_TEXT */
841 #ifndef GENERIC_UMPC
842         {"View/ShowHide/Toolbar/Hide",           NULL, N_("_Hide"), NULL, NULL, TOOLBAR_NONE }, /* radio TOOLBAR_NONE */
843 #endif
844 };
845 #ifndef GENERIC_UMPC
846 static GtkRadioActionEntry mainwin_layout_radio_entries[] = { /* set_layout_cb */
847         {"View/Layout/Standard",                 NULL, N_("_Standard"), NULL, NULL, NORMAL_LAYOUT }, /* radio NORMAL_LAYOUT */
848         {"View/Layout/ThreeColumns",             NULL, N_("_Three columns"), NULL, NULL, VERTICAL_LAYOUT }, /* radio VERTICAL_LAYOUT */
849         {"View/Layout/WideMessage",              NULL, N_("_Wide message"), NULL, NULL, WIDE_LAYOUT }, /* radio WIDE_LAYOUT */
850         {"View/Layout/WideMessageList",          NULL, N_("W_ide message list"), NULL, NULL, WIDE_MSGLIST_LAYOUT }, /* radio WIDE_MSGLIST_LAYOUT */
851         {"View/Layout/SmallScreen",              NULL, N_("S_mall screen"), NULL, NULL, SMALL_LAYOUT }, /* radio SMALL_LAYOUT */
852 };
853 #endif
854 static GtkRadioActionEntry mainwin_sort_radio_entries[] = { /* sort_summary_cb */
855         {"View/Sort/Number",                     NULL, N_("By _number"), NULL, NULL, SORT_BY_NUMBER }, /* radio SORT_BY_NUMBER */
856         {"View/Sort/Size",                       NULL, N_("By s_ize"), NULL, NULL, SORT_BY_SIZE }, /* radio SORT_BY_SIZE */
857         {"View/Sort/Date",                       NULL, N_("By _date"), NULL, NULL, SORT_BY_DATE }, /* radio SORT_BY_DATE */
858         {"View/Sort/ThreadDate",                 NULL, N_("By thread date"), NULL, NULL, SORT_BY_THREAD_DATE }, /* radio SORT_BY_THREAD_DATE */
859         {"View/Sort/From",                       NULL, N_("By _From"), NULL, NULL, SORT_BY_FROM }, /* radio SORT_BY_FROM */
860         {"View/Sort/To",                         NULL, N_("By _To"), NULL, NULL, SORT_BY_TO }, /* radio SORT_BY_TO */
861         {"View/Sort/Subject",                    NULL, N_("By s_ubject"), NULL, NULL, SORT_BY_SUBJECT }, /* radio SORT_BY_SUBJECT */
862         {"View/Sort/Color",                      NULL, N_("By _color label"), NULL, NULL, SORT_BY_LABEL }, /* radio SORT_BY_LABEL */
863         {"View/Sort/Tag",                        NULL, N_("By tag"), NULL, NULL, SORT_BY_TAGS }, /* radio SORT_BY_TAGS */
864         {"View/Sort/Mark",                       NULL, N_("By _mark"), NULL, NULL, SORT_BY_MARK }, /* radio SORT_BY_MARK */
865         {"View/Sort/Status",                     NULL, N_("By _status"), NULL, NULL, SORT_BY_STATUS }, /* radio SORT_BY_STATUS */
866         {"View/Sort/Attachment",                 NULL, N_("By a_ttachment"), NULL, NULL, SORT_BY_MIME }, /* radio SORT_BY_MIME */
867         {"View/Sort/Score",                      NULL, N_("By score"), NULL, NULL, SORT_BY_SCORE }, /* radio SORT_BY_SCORE */
868         {"View/Sort/Locked",                     NULL, N_("By locked"), NULL, NULL, SORT_BY_LOCKED }, /* radio SORT_BY_LOCKED */
869         {"View/Sort/DontSort",                   NULL, N_("D_on't sort"), NULL, NULL, SORT_BY_NONE }, /* radio SORT_BY_NONE */
870 };
871
872 static GtkRadioActionEntry mainwin_sorttype_radio_entries[] = { /* sort_summary_type_cb */
873         {"View/Sort/Ascending",                  NULL, N_("Ascending"), NULL, NULL, SORT_ASCENDING }, /* radio SORT_ASCENDING */
874         {"View/Sort/Descending",                 NULL, N_("Descending"), NULL, NULL, SORT_DESCENDING }, /* radio SORT_DESCENDING */
875 };
876
877 static GtkRadioActionEntry mainwin_radio_enc_entries[] =
878 {
879         ENC_ACTION(CS_AUTO, C_AUTO, N_("_Automatic")), /* RADIO set_charset_cb */
880         ENC_ACTION(CS_US_ASCII, C_US_ASCII, N_("7bit ASCII (US-ASC_II)")), /* RADIO set_charset_cb */
881         ENC_ACTION(CS_UTF_8, C_UTF_8, N_("Unicode (_UTF-8)")), /* RADIO set_charset_cb */
882         ENC_ACTION("Western/"CS_ISO_8859_1, C_ISO_8859_1, "ISO-8859-_1"), /* RADIO set_charset_cb */
883         ENC_ACTION("Western/"CS_ISO_8859_15, C_ISO_8859_15, "ISO-8859-15"), /* RADIO set_charset_cb */
884         ENC_ACTION("Western/"CS_WINDOWS_1252, C_WINDOWS_1252, "Windows-1252"), /* RADIO set_charset_cb */
885         ENC_ACTION(CS_ISO_8859_2, C_ISO_8859_2, N_("Central European (ISO-8859-_2)")), /* RADIO set_charset_cb */
886         ENC_ACTION("Baltic/"CS_ISO_8859_13, C_ISO_8859_13, "ISO-8859-13"), /* RADIO set_charset_cb */
887         ENC_ACTION("Baltic/"CS_ISO_8859_4, C_ISO_8859_14, "ISO-8859-_4"), /* RADIO set_charset_cb */
888         ENC_ACTION(CS_ISO_8859_7, C_ISO_8859_7, N_("Greek (ISO-8859-_7)")), /* RADIO set_charset_cb */
889         ENC_ACTION("Hebrew/"CS_ISO_8859_8, C_ISO_8859_8, "ISO-8859-_8"), /* RADIO set_charset_cb */
890         ENC_ACTION("Hebrew/"CS_WINDOWS_1255, C_WINDOWS_1255, "Windows-1255"), /* RADIO set_charset_cb */
891         ENC_ACTION("Arabic/"CS_ISO_8859_6, C_ISO_8859_6, "ISO-8859-_6"), /* RADIO set_charset_cb */
892         ENC_ACTION("Arabic/"CS_WINDOWS_1256, C_WINDOWS_1256, "Windows-1256"), /* RADIO set_charset_cb */
893         ENC_ACTION(CS_ISO_8859_9, C_ISO_8859_9, N_("Turkish (ISO-8859-_9)")), /* RADIO set_charset_cb */
894         ENC_ACTION("Cyrillic/"CS_ISO_8859_5, C_ISO_8859_5, "ISO-8859-_5"), /* RADIO set_charset_cb */
895         ENC_ACTION("Cyrillic/"CS_KOI8_R, C_KOI8_R, "KOI8-_R"), /* RADIO set_charset_cb */
896         ENC_ACTION("Cyrillic/"CS_MACCYR, C_MACCYR, "_Mac-Cyrillic"), /* RADIO set_charset_cb */
897         ENC_ACTION("Cyrillic/"CS_KOI8_U, C_KOI8_U, "KOI8-_U"), /* RADIO set_charset_cb */
898         ENC_ACTION("Cyrillic/"CS_WINDOWS_1251, C_WINDOWS_1251, "Windows-1251"), /* RADIO set_charset_cb */
899         ENC_ACTION("Japanese/"CS_ISO_2022_JP, C_ISO_2022_JP, "ISO-2022-_JP"), /* RADIO set_charset_cb */
900         ENC_ACTION("Japanese/"CS_ISO_2022_JP_2, C_ISO_2022_JP_2, "ISO-2022-JP-_2"), /* RADIO set_charset_cb */
901         ENC_ACTION("Japanese/"CS_EUC_JP, C_EUC_JP, "_EUC-JP"), /* RADIO set_charset_cb */
902         ENC_ACTION("Japanese/"CS_SHIFT_JIS, C_SHIFT_JIS, "_Shift-JIS"), /* RADIO set_charset_cb */
903         ENC_ACTION("Chinese/"CS_GB18030, C_GB18030, "_GB18030"), /* RADIO set_charset_cb */
904         ENC_ACTION("Chinese/"CS_GB2312, C_GB2312, "_GB2312"), /* RADIO set_charset_cb */
905         ENC_ACTION("Chinese/"CS_GBK, C_GBK, "GB_K"), /* RADIO set_charset_cb */
906         ENC_ACTION("Chinese/"CS_BIG5, C_BIG5, "_Big5-JP"), /* RADIO set_charset_cb */
907         ENC_ACTION("Chinese/"CS_EUC_TW, C_EUC_TW, "EUC-_TW"), /* RADIO set_charset_cb */
908         ENC_ACTION("Korean/"CS_EUC_KR, C_EUC_KR, "_EUC-KR"), /* RADIO set_charset_cb */
909         ENC_ACTION("Korean/"CS_ISO_2022_KR, C_ISO_2022_KR, "_ISO-2022-KR"), /* RADIO set_charset_cb */
910         ENC_ACTION("Thai/"CS_TIS_620, C_TIS_620, "_TIS-620-KR"), /* RADIO set_charset_cb */
911         ENC_ACTION("Thai/"CS_WINDOWS_874, C_WINDOWS_874, "_Windows-874"), /* RADIO set_charset_cb */
912 };
913
914 static GtkRadioActionEntry mainwin_radio_dec_entries[] =
915 {
916         DEC_ACTION("AutoDetect", 0, N_("_Auto detect")),        /* set_decode_cb */
917         /* --- */
918         DEC_ACTION("8bit", ENC_8BIT, "_8bit"),
919         DEC_ACTION("QP", ENC_QUOTED_PRINTABLE, "_Quoted printable"),
920         DEC_ACTION("B64", ENC_BASE64, "_Base64"),
921         DEC_ACTION("Uuencode", ENC_X_UUENCODE, "_Uuencode"),
922 };
923
924 static gboolean offline_ask_sync = TRUE;
925 static gboolean is_obscured = FALSE;
926
927 #define N_COLOR_LABELS colorlabel_get_color_count()
928
929 static void mainwindow_colorlabel_menu_item_activate_item_cb(GtkMenuItem *menu_item,
930                                                           gpointer data)
931 {
932         MainWindow *mainwin;
933         GtkMenuShell *menu;
934         GtkCheckMenuItem **items;
935         gint n;
936         GList *children, *cur;
937         GSList *sel;
938
939         mainwin = (MainWindow *)data;
940         cm_return_if_fail(mainwin != NULL);
941
942         sel = summary_get_selection(mainwin->summaryview);
943         if (!sel) return;
944
945         menu = GTK_MENU_SHELL(mainwin->colorlabel_menu);
946         cm_return_if_fail(menu != NULL);
947
948         Xalloca(items, (N_COLOR_LABELS + 1) * sizeof(GtkWidget *), return);
949
950         /* NOTE: don't return prematurely because we set the "dont_toggle"
951          * state for check menu items. This would be bad! */
952         g_object_set_data(G_OBJECT(menu), "dont_toggle",
953                           GINT_TO_POINTER(1));
954
955         /* clear items. get item pointers. */
956         children = gtk_container_get_children(GTK_CONTAINER(menu));
957         for (n = 0, cur = children; cur != NULL && cur->data != NULL; cur = cur->next) {
958                 if (GTK_IS_CHECK_MENU_ITEM(cur->data)) {
959                         gtk_check_menu_item_set_active
960                                 (GTK_CHECK_MENU_ITEM(cur->data), FALSE);
961                         items[n] = GTK_CHECK_MENU_ITEM(cur->data);
962                         n++;
963                 }
964         }
965
966         g_list_free(children);
967
968         if (n == (N_COLOR_LABELS + 1)) {
969                 /* iterate all messages and set the state of the appropriate
970                  * items */
971                 for (; sel != NULL; sel = sel->next) {
972                         MsgInfo *msginfo;
973                         gint clabel;
974
975                         msginfo = (MsgInfo *)sel->data;
976                         if (msginfo) {
977                                 clabel = MSG_GET_COLORLABEL_VALUE(msginfo->flags);
978                                 if (!gtk_check_menu_item_get_active(items[clabel]))
979                                         gtk_check_menu_item_set_active
980                                                 (items[clabel], TRUE);
981                         }
982                 }
983         } else
984                 g_warning("invalid number of color elements (%d)", n);
985
986         g_slist_free(sel);
987         /* reset "dont_toggle" state */
988         g_object_set_data(G_OBJECT(menu), "dont_toggle",
989                           GINT_TO_POINTER(0));
990 }
991
992 static void mainwindow_colorlabel_menu_item_activate_cb(GtkWidget *widget,
993                                                      gpointer data)
994 {
995         guint color = GPOINTER_TO_UINT(data);
996         MainWindow *mainwin;
997
998         mainwin = g_object_get_data(G_OBJECT(widget), "mainwin");
999         cm_return_if_fail(mainwin != NULL);
1000
1001         /* "dont_toggle" state set? */
1002         if (g_object_get_data(G_OBJECT(mainwin->colorlabel_menu),
1003                                 "dont_toggle"))
1004                 return;
1005
1006         summary_set_colorlabel(mainwin->summaryview, color, NULL);
1007 }
1008
1009 static void mainwindow_tags_menu_item_activate_item_cb(GtkMenuItem *menu_item,
1010                                                           gpointer data)
1011 {
1012         MainWindow *mainwin;
1013         GtkMenuShell *menu;
1014         GList *children, *cur;
1015         GSList *sel;
1016         GHashTable *menu_table = g_hash_table_new_full(
1017                                         g_direct_hash,
1018                                         g_direct_equal,
1019                                         NULL, NULL);
1020         GHashTable *menu_allsel_table = g_hash_table_new_full(
1021                                         g_direct_hash,
1022                                         g_direct_equal,
1023                                         NULL, NULL);
1024         gint sel_len;
1025         mainwin = (MainWindow *)data;
1026         cm_return_if_fail(mainwin != NULL);
1027
1028         sel = summary_get_selection(mainwin->summaryview);
1029         if (!sel) return;
1030
1031         menu = GTK_MENU_SHELL(mainwin->tags_menu);
1032         cm_return_if_fail(menu != NULL);
1033
1034         /* NOTE: don't return prematurely because we set the "dont_toggle"
1035          * state for check menu items */
1036         g_object_set_data(G_OBJECT(menu), "dont_toggle",
1037                           GINT_TO_POINTER(1));
1038
1039         /* clear items. get item pointers. */
1040         children = gtk_container_get_children(GTK_CONTAINER(menu));
1041         for (cur = children; cur != NULL && cur->data != NULL; cur = cur->next) {
1042                 if (GTK_IS_CHECK_MENU_ITEM(cur->data)) {
1043                         gint id = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(cur->data),
1044                                 "tag_id"));
1045                         gtk_check_menu_item_set_active
1046                                 (GTK_CHECK_MENU_ITEM(cur->data), FALSE);
1047                                 
1048                         g_hash_table_insert(menu_table, GINT_TO_POINTER(id), GTK_CHECK_MENU_ITEM(cur->data));
1049                         g_hash_table_insert(menu_allsel_table, GINT_TO_POINTER(id), GINT_TO_POINTER(0));
1050                 }
1051         }
1052
1053         g_list_free(children);
1054
1055         /* iterate all messages and set the state of the appropriate
1056          * items */
1057         sel_len = 0;
1058         for (; sel != NULL; sel = sel->next) {
1059                 MsgInfo *msginfo;
1060                 GSList *tags = NULL;
1061                 GtkCheckMenuItem *item;
1062                 msginfo = (MsgInfo *)sel->data;
1063                 sel_len++;
1064                 if (msginfo) {
1065                         tags =  msginfo->tags;
1066                         if (!tags)
1067                                 continue;
1068
1069                         for (; tags; tags = tags->next) {
1070                                 gint num_checked = GPOINTER_TO_INT(g_hash_table_lookup(menu_allsel_table, tags->data));
1071                                 item = g_hash_table_lookup(menu_table, GINT_TO_POINTER(tags->data));
1072                                 if (item && !gtk_check_menu_item_get_active(item)) {
1073                                         gtk_check_menu_item_set_active
1074                                                 (item, TRUE);
1075                                 }
1076                                 num_checked++;
1077                                 g_hash_table_replace(menu_allsel_table, tags->data, GINT_TO_POINTER(num_checked));
1078                         }
1079                 }
1080         }
1081
1082         children = gtk_container_get_children(GTK_CONTAINER(menu));
1083         for (cur = children; cur != NULL && cur->data != NULL; cur = cur->next) {
1084                 if (GTK_IS_CHECK_MENU_ITEM(cur->data)) {
1085                         gint id = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(cur->data),
1086                                 "tag_id"));
1087                         gint num_checked = GPOINTER_TO_INT(g_hash_table_lookup(menu_allsel_table, GINT_TO_POINTER(id)));
1088                         if (num_checked < sel_len && num_checked > 0)
1089                                 gtk_check_menu_item_set_inconsistent(GTK_CHECK_MENU_ITEM(cur->data), TRUE);
1090                         else
1091                                 gtk_check_menu_item_set_inconsistent(GTK_CHECK_MENU_ITEM(cur->data), FALSE);
1092                 }
1093         }
1094         g_list_free(children);
1095         g_slist_free(sel);
1096         g_hash_table_destroy(menu_table);
1097         g_hash_table_destroy(menu_allsel_table);
1098         /* reset "dont_toggle" state */
1099         g_object_set_data(G_OBJECT(menu), "dont_toggle",
1100                           GINT_TO_POINTER(0));
1101 }
1102
1103 static void mainwindow_tags_menu_item_activate_cb(GtkWidget *widget,
1104                                                      gpointer data)
1105 {
1106         gint id = GPOINTER_TO_INT(data);
1107         gboolean set = gtk_check_menu_item_get_active(GTK_CHECK_MENU_ITEM(widget));
1108         MainWindow *mainwin;
1109
1110         mainwin = g_object_get_data(G_OBJECT(widget), "mainwin");
1111         cm_return_if_fail(mainwin != NULL);
1112
1113         /* "dont_toggle" state set? */
1114         if (g_object_get_data(G_OBJECT(mainwin->tags_menu),
1115                                 "dont_toggle"))
1116                 return;
1117
1118         if (!set)
1119                 id = -id;
1120         summary_set_tag(mainwin->summaryview, id, NULL);
1121 }
1122
1123 void mainwin_accel_changed_cb (GtkAccelGroup *accelgroup, guint keyval, GdkModifierType modifier,
1124                                   GClosure *closure, GtkMenuItem *item)
1125 {
1126         GList *closures = gtk_widget_list_accel_closures(GTK_WIDGET(item));
1127         GList *cur;
1128         for (cur = closures; cur; cur = cur->next) {
1129                 if (closure == cur->data) {
1130                         GtkLabel *label = g_object_get_data(G_OBJECT(item), "accel_label");
1131                         gchar *new_accel;
1132                         
1133                         if (keyval == GDK_KEY_Delete) {
1134                                 const gchar *accel_path;
1135                                 accel_path = gtk_menu_item_get_accel_path(item);
1136                                 keyval = 0; modifier = 0;
1137                                 gtk_accel_map_change_entry (accel_path, keyval, modifier, TRUE);
1138                         }
1139                         new_accel = gtk_accelerator_get_label(keyval, modifier);
1140                         gtk_label_set_text(label, new_accel);
1141                         g_free(new_accel);
1142                 }
1143         }
1144         g_list_free(closures);
1145 }
1146
1147 static void mainwindow_colorlabel_menu_create(MainWindow *mainwin, gboolean refresh)
1148 {
1149         GtkWidget *label_menuitem;
1150         GtkWidget *menu;
1151         GtkWidget *item;
1152         gint i;
1153         gchar *accel_path = NULL;
1154
1155         label_menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/ColorLabel");
1156         g_signal_connect(G_OBJECT(label_menuitem), "activate",
1157                          G_CALLBACK(mainwindow_colorlabel_menu_item_activate_item_cb),
1158                            mainwin);
1159         gtk_widget_show(label_menuitem);
1160
1161         menu = gtk_menu_new();
1162         gtk_menu_set_accel_group (GTK_MENU (menu), 
1163                 gtk_ui_manager_get_accel_group(mainwin->ui_manager));
1164
1165         /* create sub items. for the menu item activation callback we pass the
1166          * index of label_colors[] as data parameter. for the None color we
1167          * pass an invalid (high) value. also we attach a data pointer so we
1168          * can always get back the Mainwindow pointer. */
1169
1170         item = gtk_check_menu_item_new_with_label(_("None"));
1171         gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1172         g_signal_connect(G_OBJECT(item), "activate",
1173                          G_CALLBACK(mainwindow_colorlabel_menu_item_activate_cb),
1174                            GUINT_TO_POINTER(0));
1175         g_object_set_data(G_OBJECT(item), "mainwin", mainwin);
1176         gtk_widget_show(item);
1177
1178         accel_path = g_strdup_printf("<ClawsColorLabels>/None");
1179         gtk_menu_item_set_accel_path(GTK_MENU_ITEM(item), accel_path);
1180         g_free(accel_path);
1181         gtk_accel_map_add_entry("<ClawsColorLabels>/None", GDK_KEY_0, GDK_CONTROL_MASK);
1182         item = gtk_menu_item_new();
1183         gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1184         gtk_widget_show(item);
1185
1186         /* create pixmap/label menu items */
1187         for (i = 0; i < N_COLOR_LABELS; i++) {
1188                 item = colorlabel_create_check_color_menu_item(
1189                         i, refresh, MAINWIN_COLORMENU);
1190                 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1191                 g_signal_connect(G_OBJECT(item), "activate",
1192                                  G_CALLBACK(mainwindow_colorlabel_menu_item_activate_cb),
1193                                  GUINT_TO_POINTER(i + 1));
1194                 g_object_set_data(G_OBJECT(item), "mainwin",
1195                                   mainwin);
1196                 gtk_widget_show(item);
1197                 accel_path = g_strdup_printf("<ClawsColorLabels>/%d", i+1);
1198                 gtk_menu_item_set_accel_path(GTK_MENU_ITEM(item), accel_path);
1199                 if (i < 9)
1200                         gtk_accel_map_add_entry(accel_path, GDK_KEY_1+i, GDK_CONTROL_MASK);
1201                 g_free(accel_path);
1202                 g_signal_connect (gtk_ui_manager_get_accel_group(mainwin->ui_manager), 
1203                         "accel-changed", G_CALLBACK (mainwin_accel_changed_cb), item);
1204
1205
1206         }
1207         gtk_widget_show(menu);
1208         gtk_menu_item_set_submenu(GTK_MENU_ITEM(label_menuitem), menu);
1209         mainwin->colorlabel_menu = menu;
1210 }
1211
1212 static void mainwindow_tags_menu_item_apply_tags_activate_cb(GtkWidget *widget,
1213                                                      gpointer data)
1214 {
1215         MainWindow *mainwin;
1216
1217         mainwin = g_object_get_data(G_OBJECT(widget), "mainwin");
1218         cm_return_if_fail(mainwin != NULL);
1219
1220         /* "dont_toggle" state set? */
1221         if (g_object_get_data(G_OBJECT(mainwin->tags_menu),
1222                                 "dont_toggle"))
1223                 return;
1224         
1225         tag_apply_open(summary_get_selection(mainwin->summaryview));    
1226 }
1227
1228 static gint mainwin_tag_cmp_list(gconstpointer a, gconstpointer b)
1229 {
1230         gint id_a = GPOINTER_TO_INT(a);
1231         gint id_b = GPOINTER_TO_INT(b);
1232         const gchar *tag_a = tags_get_tag(id_a);
1233         const gchar *tag_b = tags_get_tag(id_b);
1234         
1235                 
1236         if (tag_a == NULL)
1237                 return tag_b == NULL ? 0:1;
1238         
1239         if (tag_b == NULL)
1240                 return 1;
1241  
1242         return g_utf8_collate(tag_a, tag_b);
1243 }
1244
1245 static void mainwindow_tags_menu_create(MainWindow *mainwin, gboolean refresh)
1246 {
1247         GtkWidget *label_menuitem;
1248         GtkWidget *menu;
1249         GtkWidget *item;
1250         GSList *cur = tags_get_list();
1251         GSList *orig = NULL;
1252         gboolean existing_tags = FALSE;
1253         gchar *accel_path;
1254         cur = orig = g_slist_sort(cur, mainwin_tag_cmp_list);
1255
1256         label_menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/Tags");
1257         g_signal_connect(G_OBJECT(label_menuitem), "activate",
1258                          G_CALLBACK(mainwindow_tags_menu_item_activate_item_cb),
1259                            mainwin);
1260
1261         gtk_widget_show(label_menuitem);
1262
1263         menu = gtk_menu_new();
1264         gtk_menu_set_accel_group (GTK_MENU (menu), 
1265                 gtk_ui_manager_get_accel_group(mainwin->ui_manager));
1266
1267         /* create tags menu items */
1268         for (; cur; cur = cur->next) {
1269                 gint id = GPOINTER_TO_INT(cur->data);
1270                 const gchar *tag = tags_get_tag(id);
1271
1272                 item = gtk_check_menu_item_new_with_label(tag);
1273                 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1274                 g_signal_connect(G_OBJECT(item), "activate",
1275                                  G_CALLBACK(mainwindow_tags_menu_item_activate_cb),
1276                                  GINT_TO_POINTER(id));
1277                 g_object_set_data(G_OBJECT(item), "mainwin",
1278                                   mainwin);
1279                 g_object_set_data(G_OBJECT(item), "tag_id",
1280                                   GINT_TO_POINTER(id));
1281                 gtk_widget_show(item);
1282                 accel_path = g_strconcat("<ClawsTags>/",tag, NULL);
1283                 gtk_menu_item_set_accel_path(GTK_MENU_ITEM(item), accel_path);
1284                 g_free(accel_path);
1285                 existing_tags = TRUE;
1286         }
1287         if (existing_tags) {
1288                 /* separator */
1289                 item = gtk_menu_item_new();
1290                 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1291                 gtk_widget_show(item);
1292         }
1293
1294         item = gtk_menu_item_new_with_label(_("Apply tags..."));
1295         gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1296         g_signal_connect(G_OBJECT(item), "activate",
1297                          G_CALLBACK(mainwindow_tags_menu_item_apply_tags_activate_cb),
1298                          NULL);
1299         g_object_set_data(G_OBJECT(item), "mainwin",
1300                           mainwin);
1301         gtk_widget_show(item);
1302         accel_path = g_strdup_printf("<ClawsTags>/ApplyTags");
1303         gtk_menu_item_set_accel_path(GTK_MENU_ITEM(item), accel_path);
1304         g_free(accel_path);
1305         gtk_accel_map_add_entry("<ClawsTags>/ApplyTags", GDK_KEY_T, GDK_CONTROL_MASK|GDK_SHIFT_MASK);
1306         g_slist_free(orig);
1307         gtk_widget_show(menu);
1308         gtk_menu_item_set_submenu(GTK_MENU_ITEM(label_menuitem), menu);
1309         mainwin->tags_menu = menu;
1310 }
1311 #ifndef GENERIC_UMPC
1312 static gboolean warning_icon_pressed(GtkWidget *widget, GdkEventButton *evt,
1313                                     MainWindow *mainwindow)
1314 {
1315         if (evt && evt->button == 1) {
1316                 log_window_show_error(mainwindow->logwin);
1317                 gtk_widget_hide(mainwindow->warning_btn);
1318         }
1319         return FALSE;
1320 }
1321
1322 static gboolean warning_visi_notify(GtkWidget *widget,
1323                                        GdkEventVisibility *event,
1324                                        MainWindow *mainwindow)
1325 {
1326         gdk_window_set_cursor(gtk_widget_get_window(mainwindow->warning_btn), hand_cursor);
1327         return FALSE;
1328 }
1329
1330 static gboolean warning_leave_notify(GtkWidget *widget,
1331                                       GdkEventCrossing *event,
1332                                       MainWindow *mainwindow)
1333 {
1334         gdk_window_set_cursor(gtk_widget_get_window(mainwindow->warning_btn), NULL);
1335         return FALSE;
1336 }
1337
1338 static gboolean warning_enter_notify(GtkWidget *widget,
1339                                       GdkEventCrossing *event,
1340                                       MainWindow *mainwindow)
1341 {
1342         gdk_window_set_cursor(gtk_widget_get_window(mainwindow->warning_btn), hand_cursor);
1343         return FALSE;
1344 }
1345 #endif
1346 void mainwindow_show_error(void)
1347 {
1348         MainWindow *mainwin = mainwindow_get_mainwindow();
1349         gtk_widget_show(mainwin->warning_btn);
1350 }
1351
1352 void mainwindow_clear_error(MainWindow *mainwin)
1353 {
1354         gtk_widget_hide(mainwin->warning_btn);
1355 }
1356
1357 #define BREAK_ON_MODIFIER_KEY() \
1358         if ((event->state & (GDK_MOD1_MASK|GDK_CONTROL_MASK)) != 0) break
1359
1360 static gboolean mainwindow_key_pressed (GtkWidget *widget, GdkEventKey *event,
1361                                     gpointer data)
1362 {
1363         MainWindow *mainwin = (MainWindow*) data;
1364
1365         if (!mainwin || !event) 
1366                 return FALSE;
1367
1368         if (quicksearch_has_focus(mainwin->summaryview->quicksearch))
1369         {
1370                 GtkWidget *entry =
1371                         quicksearch_get_entry(mainwin->summaryview->quicksearch);
1372                 gboolean handled;
1373                 g_signal_emit_by_name(entry, "key-press-event", event, &handled);
1374                 if (handled) {
1375                         return TRUE;
1376                 }
1377         }
1378
1379         switch (event->keyval) {
1380         case GDK_KEY_Q:             /* Quit */
1381                 BREAK_ON_MODIFIER_KEY();
1382
1383                 if (gtk_window_is_active(GTK_WINDOW(mainwin->window))) {
1384                         app_exit_cb(NULL, mainwin);
1385                 }
1386                 return FALSE;
1387         case GDK_KEY_space:
1388                 BREAK_ON_MODIFIER_KEY();
1389                 if (gtk_window_is_active(GTK_WINDOW(mainwin->window))) {
1390                         if (mainwin->folderview != NULL && mainwin->summaryview != NULL
1391                             && ((!mainwin->summaryview->displayed
1392                                 && !mainwin->summaryview->selected) 
1393                                 || (mainwin->summaryview->folder_item
1394                                     && mainwin->summaryview->folder_item->total_msgs == 0))) {
1395                                 g_signal_stop_emission_by_name(G_OBJECT(widget), 
1396                                                "key_press_event");
1397                                 folderview_select_next_with_flag(mainwin->folderview, MSG_UNREAD);
1398                         }
1399                 }
1400                 break;
1401         default:
1402                 break;
1403         }
1404         return FALSE;
1405 }
1406
1407 #undef BREAK_ON_MODIFIER_KEY
1408
1409 MainWindow *main_window_create()
1410 {
1411         MainWindow *mainwin;
1412         GtkWidget *window;
1413         GtkWidget *vbox;
1414         GtkWidget *menubar;
1415         GtkWidget *handlebox;
1416         GtkWidget *vbox_body;
1417         GtkWidget *menuitem;
1418 #ifndef GENERIC_UMPC
1419         GtkWidget *hbox_stat;
1420         GtkWidget *statusbar;
1421         GtkWidget *progressbar;
1422         GtkWidget *statuslabel;
1423         GtkWidget *ac_button;
1424         GtkWidget *ac_label;
1425         GtkWidget *online_pixmap;
1426         GtkWidget *offline_pixmap;
1427         GtkWidget *warning_icon;
1428         GtkWidget *warning_btn;
1429 #endif
1430         GtkWidget *online_switch;
1431         GtkWidget *offline_switch;
1432         FolderView *folderview;
1433         SummaryView *summaryview;
1434         MessageView *messageview;
1435 #if !GTK_CHECK_VERSION(3, 0, 0)
1436         GdkColormap *colormap;
1437         gboolean success[4];
1438 #endif
1439         GdkColor color[4];
1440         GtkWidget *ac_menu;
1441         gint i;
1442
1443         static GdkGeometry geometry;
1444
1445         debug_print("Creating main window...\n");
1446         mainwin = g_new0(MainWindow, 1);
1447
1448         /* main window */
1449         window = GTK_WIDGET(gtkut_window_new(GTK_WINDOW_TOPLEVEL, "mainwindow"));
1450         gtk_window_set_title(GTK_WINDOW(window), PROG_VERSION);
1451         gtk_window_set_resizable(GTK_WINDOW(window), TRUE);
1452 #ifdef GENERIC_UMPC
1453         prefs_common.layout_mode = SMALL_LAYOUT;
1454 #endif
1455         if (!geometry.min_height) {
1456                 geometry.min_width = 320;
1457                 geometry.min_height = 200;
1458         }
1459         gtk_window_set_geometry_hints(GTK_WINDOW(window), NULL, &geometry,
1460                                       GDK_HINT_MIN_SIZE);
1461
1462         g_signal_connect(G_OBJECT(window), "delete_event",
1463                          G_CALLBACK(main_window_close_cb), mainwin);
1464         MANAGE_WINDOW_SIGNALS_CONNECT(window);
1465         g_signal_connect(G_OBJECT(window), "focus_in_event",
1466                          G_CALLBACK(mainwindow_focus_in_event),
1467                          mainwin);
1468         g_signal_connect(G_OBJECT(window), "key_press_event",
1469                          G_CALLBACK(mainwindow_key_pressed), mainwin);
1470
1471         gtk_widget_realize(window);
1472         gtk_widget_add_events(window, GDK_KEY_PRESS_MASK|GDK_KEY_RELEASE_MASK);
1473         
1474
1475         gtkut_widget_set_app_icon(window);
1476
1477         vbox = gtk_vbox_new(FALSE, 0);
1478         gtk_widget_show(vbox);
1479         gtk_container_add(GTK_CONTAINER(window), vbox);
1480
1481         /* menu bar */
1482
1483         mainwin->ui_manager = gtk_ui_manager_new();
1484         mainwin->action_group = cm_menu_create_action_group_full(mainwin->ui_manager,"Menu", mainwin_entries,
1485                         G_N_ELEMENTS(mainwin_entries), (gpointer)mainwin);
1486         gtk_action_group_add_toggle_actions(mainwin->action_group, mainwin_toggle_entries,
1487                         G_N_ELEMENTS(mainwin_toggle_entries), (gpointer)mainwin);
1488         gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_showhide_radio_entries,
1489                         G_N_ELEMENTS(mainwin_showhide_radio_entries), C_AUTO, G_CALLBACK(toggle_toolbar_cb), (gpointer)mainwin);
1490 #ifndef GENERIC_UMPC
1491         gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_layout_radio_entries,
1492                         G_N_ELEMENTS(mainwin_layout_radio_entries), C_AUTO, G_CALLBACK(set_layout_cb), (gpointer)mainwin);
1493 #endif
1494         gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_sort_radio_entries,
1495                         G_N_ELEMENTS(mainwin_sort_radio_entries), C_AUTO, G_CALLBACK(sort_summary_cb), (gpointer)mainwin);
1496         gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_sorttype_radio_entries,
1497                         G_N_ELEMENTS(mainwin_sorttype_radio_entries), C_AUTO, G_CALLBACK(sort_summary_type_cb), (gpointer)mainwin);
1498         gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_radio_enc_entries,
1499                         G_N_ELEMENTS(mainwin_radio_enc_entries), C_AUTO, G_CALLBACK(set_charset_cb), (gpointer)mainwin);
1500         gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_radio_dec_entries,
1501                         G_N_ELEMENTS(mainwin_radio_dec_entries), C_AUTO, G_CALLBACK(set_decode_cb), (gpointer)mainwin);
1502
1503         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/", "Menu", NULL, GTK_UI_MANAGER_MENUBAR)
1504         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "File", "File", GTK_UI_MANAGER_MENU)
1505         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Edit", "Edit", GTK_UI_MANAGER_MENU)
1506         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "View", "View", GTK_UI_MANAGER_MENU)
1507         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Message", "Message", GTK_UI_MANAGER_MENU)
1508         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Tools", "Tools", GTK_UI_MANAGER_MENU)
1509         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Configuration", "Configuration", GTK_UI_MANAGER_MENU)
1510         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Help", "Help", GTK_UI_MANAGER_MENU)
1511
1512 /* File menu */
1513         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "AddMailbox", "File/AddMailbox", GTK_UI_MANAGER_MENU)
1514         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File/AddMailbox", "MH", "File/AddMailbox/MH", GTK_UI_MANAGER_MENUITEM)
1515         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator1", "File/---", GTK_UI_MANAGER_SEPARATOR)
1516         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "SortMailboxes", "File/SortMailboxes", GTK_UI_MANAGER_MENUITEM)
1517         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator2", "File/---", GTK_UI_MANAGER_SEPARATOR)
1518         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "ImportMbox", "File/ImportMbox", GTK_UI_MANAGER_MENUITEM)
1519         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "ExportMbox", "File/ExportMbox", GTK_UI_MANAGER_MENUITEM)
1520         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "ExportSelMbox", "File/ExportSelMbox", GTK_UI_MANAGER_MENUITEM)
1521         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator3", "File/---", GTK_UI_MANAGER_SEPARATOR)
1522         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "EmptyTrashes", "File/EmptyTrashes", GTK_UI_MANAGER_MENUITEM)
1523         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator4", "File/---", GTK_UI_MANAGER_SEPARATOR)
1524         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "SaveAs", "File/SaveAs", GTK_UI_MANAGER_MENUITEM)
1525         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "SavePartAs", "File/SavePartAs", GTK_UI_MANAGER_MENUITEM)
1526         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator5", "File/---", GTK_UI_MANAGER_SEPARATOR)
1527         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "PageSetup", "File/PageSetup", GTK_UI_MANAGER_MENUITEM)
1528         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Print", "File/Print", GTK_UI_MANAGER_MENUITEM)
1529         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator6", "File/---", GTK_UI_MANAGER_SEPARATOR)
1530         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "OfflineMode", "File/OfflineMode", GTK_UI_MANAGER_MENUITEM)
1531         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "SynchroniseFolders", "File/SynchroniseFolders", GTK_UI_MANAGER_MENUITEM)
1532         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator7", "File/---", GTK_UI_MANAGER_SEPARATOR)
1533         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Exit", "File/Exit", GTK_UI_MANAGER_MENUITEM)
1534
1535 /* Edit menu */
1536         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "Copy", "Edit/Copy", GTK_UI_MANAGER_MENUITEM)
1537         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "SelectAll", "Edit/SelectAll", GTK_UI_MANAGER_MENUITEM)
1538         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "SelectThread", "Edit/SelectThread", GTK_UI_MANAGER_MENUITEM)
1539         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "Separator1", "Edit/---", GTK_UI_MANAGER_SEPARATOR)
1540         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "Find", "Edit/Find", GTK_UI_MANAGER_MENUITEM)
1541         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "SearchFolder", "Edit/SearchFolder", GTK_UI_MANAGER_MENUITEM)
1542         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "QuickSearch", "Edit/QuickSearch", GTK_UI_MANAGER_MENUITEM)
1543
1544 /* View menu */
1545         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "ShowHide", "View/ShowHide", GTK_UI_MANAGER_MENU)
1546         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "MenuBar", "View/ShowHide/MenuBar", GTK_UI_MANAGER_MENUITEM)
1547         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "Toolbar", "View/ShowHide/Toolbar", GTK_UI_MANAGER_MENU)
1548         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "TextBelowIcon", "View/ShowHide/Toolbar/TextBelowIcon", GTK_UI_MANAGER_MENUITEM)
1549         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "TextBesideIcon", "View/ShowHide/Toolbar/TextBesideIcon", GTK_UI_MANAGER_MENUITEM)
1550         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "IconOnly", "View/ShowHide/Toolbar/IconOnly", GTK_UI_MANAGER_MENUITEM)
1551         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "TextOnly", "View/ShowHide/Toolbar/TextOnly", GTK_UI_MANAGER_MENUITEM)
1552 #ifndef GENERIC_UMPC
1553         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "Hide", "View/ShowHide/Toolbar/Hide", GTK_UI_MANAGER_MENUITEM)
1554 #endif
1555         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "MessageView", "View/ShowHide/MessageView", GTK_UI_MANAGER_MENUITEM)
1556 #ifndef GENERIC_UMPC
1557         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "StatusBar", "View/ShowHide/StatusBar", GTK_UI_MANAGER_MENUITEM)
1558 #endif
1559         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "ColumnHeaders", "View/ShowHide/ColumnHeaders", GTK_UI_MANAGER_MENUITEM)
1560         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "SetColumns", "View/SetColumns", GTK_UI_MANAGER_MENU)
1561         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/SetColumns", "Folderlist", "View/SetColumns/Folderlist", GTK_UI_MANAGER_MENUITEM)
1562         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/SetColumns", "Messagelist", "View/SetColumns/Messagelist", GTK_UI_MANAGER_MENUITEM)
1563         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator1", "View/---", GTK_UI_MANAGER_SEPARATOR)
1564
1565         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "FullScreen", "View/FullScreen", GTK_UI_MANAGER_MENUITEM)
1566 #ifndef GENERIC_UMPC
1567         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Layout", "View/Layout", GTK_UI_MANAGER_MENU)
1568         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "Standard", "View/Layout/Standard", GTK_UI_MANAGER_MENUITEM)
1569         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "ThreeColumns", "View/Layout/ThreeColumns", GTK_UI_MANAGER_MENUITEM)
1570         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "WideMessage", "View/Layout/WideMessage", GTK_UI_MANAGER_MENUITEM)
1571         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "WideMessageList", "View/Layout/WideMessageList", GTK_UI_MANAGER_MENUITEM)
1572         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "SmallScreen", "View/Layout/SmallScreen", GTK_UI_MANAGER_MENUITEM)
1573         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator2", "View/---", GTK_UI_MANAGER_SEPARATOR)
1574 #endif
1575
1576         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Sort", "View/Sort", GTK_UI_MANAGER_MENU)
1577         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Number", "View/Sort/Number", GTK_UI_MANAGER_MENUITEM)
1578         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Size", "View/Sort/Size", GTK_UI_MANAGER_MENUITEM)
1579         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Date", "View/Sort/Date", GTK_UI_MANAGER_MENUITEM)
1580         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "ThreadDate", "View/Sort/ThreadDate", GTK_UI_MANAGER_MENUITEM)
1581         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "From", "View/Sort/From", GTK_UI_MANAGER_MENUITEM)
1582         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "To", "View/Sort/To", GTK_UI_MANAGER_MENUITEM)
1583         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Subject", "View/Sort/Subject", GTK_UI_MANAGER_MENUITEM)
1584         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Color", "View/Sort/Color", GTK_UI_MANAGER_MENUITEM)
1585         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Tag", "View/Sort/Tag", GTK_UI_MANAGER_MENUITEM)
1586         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Mark", "View/Sort/Mark", GTK_UI_MANAGER_MENUITEM)
1587         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Status", "View/Sort/Status", GTK_UI_MANAGER_MENUITEM)
1588         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Attachment", "View/Sort/Attachment", GTK_UI_MANAGER_MENUITEM)
1589         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Score", "View/Sort/Score", GTK_UI_MANAGER_MENUITEM)
1590         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Locked", "View/Sort/Locked", GTK_UI_MANAGER_MENUITEM)
1591         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "DontSort", "View/Sort/DontSort", GTK_UI_MANAGER_MENUITEM)
1592         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Separator1", "View/Sort/---", GTK_UI_MANAGER_SEPARATOR)
1593         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Ascending", "View/Sort/Ascending", GTK_UI_MANAGER_MENUITEM)
1594         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Descending", "View/Sort/Descending", GTK_UI_MANAGER_MENUITEM)
1595         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Separator2", "View/Sort/---", GTK_UI_MANAGER_SEPARATOR)
1596         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "AttractSubj", "View/Sort/AttractSubj", GTK_UI_MANAGER_MENUITEM)
1597
1598         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "ThreadView", "View/ThreadView", GTK_UI_MANAGER_MENUITEM)
1599         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "ExpandThreads", "View/ExpandThreads", GTK_UI_MANAGER_MENUITEM)
1600         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "CollapseThreads", "View/CollapseThreads", GTK_UI_MANAGER_MENUITEM)
1601         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "HideReadThreads", "View/HideReadThreads", GTK_UI_MANAGER_MENUITEM)
1602         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "HideReadMessages", "View/HideReadMessages", GTK_UI_MANAGER_MENUITEM)
1603         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "HideDelMessages", "View/HideDelMessages", GTK_UI_MANAGER_MENUITEM)
1604         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator3", "View/---", GTK_UI_MANAGER_SEPARATOR)
1605
1606         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Goto", "View/Goto", GTK_UI_MANAGER_MENU)
1607         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Prev", "View/Goto/Prev", GTK_UI_MANAGER_MENUITEM)
1608         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Next", "View/Goto/Next", GTK_UI_MANAGER_MENUITEM)
1609         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator1", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1610         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevUnread", "View/Goto/PrevUnread", GTK_UI_MANAGER_MENUITEM)
1611         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextUnread", "View/Goto/NextUnread", GTK_UI_MANAGER_MENUITEM)
1612         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator2", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1613         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevNew", "View/Goto/PrevNew", GTK_UI_MANAGER_MENUITEM)
1614         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextNew", "View/Goto/NextNew", GTK_UI_MANAGER_MENUITEM)
1615         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator3", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1616         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevMarked", "View/Goto/PrevMarked", GTK_UI_MANAGER_MENUITEM)
1617         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextMarked", "View/Goto/NextMarked", GTK_UI_MANAGER_MENUITEM)
1618         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator4", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1619         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevLabeled", "View/Goto/PrevLabeled", GTK_UI_MANAGER_MENUITEM)
1620         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextLabeled", "View/Goto/NextLabeled", GTK_UI_MANAGER_MENUITEM)
1621         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator5", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1622         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevHistory", "View/Goto/PrevHistory", GTK_UI_MANAGER_MENUITEM)
1623         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextHistory", "View/Goto/NextHistory", GTK_UI_MANAGER_MENUITEM)
1624         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator6", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1625         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "ParentMessage", "View/Goto/ParentMessage", GTK_UI_MANAGER_MENUITEM)
1626         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator7", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1627         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextUnreadFolder", "View/Goto/NextUnreadFolder", GTK_UI_MANAGER_MENUITEM)
1628         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Folder", "View/Goto/Folder", GTK_UI_MANAGER_MENUITEM)
1629         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator8", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1630         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextPart", "View/Goto/NextPart", GTK_UI_MANAGER_MENUITEM)
1631         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevPart", "View/Goto/PrevPart", GTK_UI_MANAGER_MENUITEM)
1632         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Scroll", "View/Scroll", GTK_UI_MANAGER_MENU)
1633         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Scroll", "PrevLine", "View/Scroll/PrevLine", GTK_UI_MANAGER_MENUITEM)
1634         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Scroll", "NextLine", "View/Scroll/NextLine", GTK_UI_MANAGER_MENUITEM)
1635         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Scroll", "PrevPage", "View/Scroll/PrevPage", GTK_UI_MANAGER_MENUITEM)
1636         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Scroll", "NextPage", "View/Scroll/NextPage", GTK_UI_MANAGER_MENUITEM)
1637         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator4", "View/---", GTK_UI_MANAGER_SEPARATOR)
1638
1639         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Encoding", "View/Encoding", GTK_UI_MANAGER_MENU)
1640         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_AUTO, "View/Encoding/"CS_AUTO, GTK_UI_MANAGER_MENUITEM)
1641         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Separator1", "View/Encoding/---", GTK_UI_MANAGER_SEPARATOR)
1642         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_US_ASCII, "View/Encoding/"CS_US_ASCII, GTK_UI_MANAGER_MENUITEM)
1643         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_UTF_8, "View/Encoding/"CS_UTF_8, GTK_UI_MANAGER_MENUITEM)
1644         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Separator2", "View/Encoding/---", GTK_UI_MANAGER_SEPARATOR)
1645
1646         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Western", "View/Encoding/Western", GTK_UI_MANAGER_MENU)
1647         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Western", CS_ISO_8859_1, "View/Encoding/Western/"CS_ISO_8859_1, GTK_UI_MANAGER_MENUITEM)
1648         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Western", CS_ISO_8859_15, "View/Encoding/Western/"CS_ISO_8859_15, GTK_UI_MANAGER_MENUITEM)
1649         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Western", CS_WINDOWS_1252, "View/Encoding/Western/"CS_WINDOWS_1252, GTK_UI_MANAGER_MENUITEM)
1650
1651         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_ISO_8859_2, "View/Encoding/"CS_ISO_8859_2, GTK_UI_MANAGER_MENUITEM)
1652
1653         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Baltic", "View/Encoding/Baltic", GTK_UI_MANAGER_MENU)
1654         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Baltic", CS_ISO_8859_13, "View/Encoding/Baltic/"CS_ISO_8859_13, GTK_UI_MANAGER_MENUITEM)
1655         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Baltic", CS_ISO_8859_4, "View/Encoding/Baltic/"CS_ISO_8859_4, GTK_UI_MANAGER_MENUITEM)
1656
1657         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_ISO_8859_7, "View/Encoding/"CS_ISO_8859_7, GTK_UI_MANAGER_MENUITEM)
1658
1659         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Hebrew", "View/Encoding/Hebrew", GTK_UI_MANAGER_MENU)
1660         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Hebrew", CS_ISO_8859_8, "View/Encoding/Hebrew/"CS_ISO_8859_8, GTK_UI_MANAGER_MENUITEM)
1661         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Hebrew", CS_WINDOWS_1255, "View/Encoding/Hebrew/"CS_WINDOWS_1255, GTK_UI_MANAGER_MENUITEM)
1662
1663         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Arabic", "View/Encoding/Arabic", GTK_UI_MANAGER_MENU)
1664         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Arabic", CS_ISO_8859_6, "View/Encoding/Arabic/"CS_ISO_8859_6, GTK_UI_MANAGER_MENUITEM)
1665         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Arabic", CS_WINDOWS_1256, "View/Encoding/Arabic/"CS_WINDOWS_1256, GTK_UI_MANAGER_MENUITEM)
1666
1667         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_ISO_8859_9, "View/Encoding/"CS_ISO_8859_9, GTK_UI_MANAGER_MENUITEM)
1668
1669         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Cyrillic", "View/Encoding/Cyrillic", GTK_UI_MANAGER_MENU)
1670         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_ISO_8859_5, "View/Encoding/Cyrillic/"CS_ISO_8859_5, GTK_UI_MANAGER_MENUITEM)
1671         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_KOI8_R, "View/Encoding/Cyrillic/"CS_KOI8_R, GTK_UI_MANAGER_MENUITEM)
1672         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_MACCYR, "View/Encoding/Cyrillic/"CS_MACCYR, GTK_UI_MANAGER_MENUITEM)
1673         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_KOI8_U, "View/Encoding/Cyrillic/"CS_KOI8_U, GTK_UI_MANAGER_MENUITEM)
1674         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_WINDOWS_1251, "View/Encoding/Cyrillic/"CS_WINDOWS_1251, GTK_UI_MANAGER_MENUITEM)
1675
1676         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Japanese", "View/Encoding/Japanese", GTK_UI_MANAGER_MENU)
1677         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Japanese", CS_ISO_2022_JP, "View/Encoding/Japanese/"CS_ISO_2022_JP, GTK_UI_MANAGER_MENUITEM)
1678         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Japanese", CS_ISO_2022_JP_2, "View/Encoding/Japanese/"CS_ISO_2022_JP_2, GTK_UI_MANAGER_MENUITEM)
1679         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Japanese", CS_EUC_JP, "View/Encoding/Japanese/"CS_EUC_JP, GTK_UI_MANAGER_MENUITEM)
1680         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Japanese", CS_SHIFT_JIS, "View/Encoding/Japanese/"CS_SHIFT_JIS, GTK_UI_MANAGER_MENUITEM)
1681
1682         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Chinese", "View/Encoding/Chinese", GTK_UI_MANAGER_MENU)
1683         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_GB18030, "View/Encoding/Chinese/"CS_GB18030, GTK_UI_MANAGER_MENUITEM)
1684         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_GB2312, "View/Encoding/Chinese/"CS_GB2312, GTK_UI_MANAGER_MENUITEM)
1685         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_GBK, "View/Encoding/Chinese/"CS_GBK, GTK_UI_MANAGER_MENUITEM)
1686         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_BIG5, "View/Encoding/Chinese/"CS_BIG5, GTK_UI_MANAGER_MENUITEM)
1687         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_EUC_TW, "View/Encoding/Chinese/"CS_EUC_TW, GTK_UI_MANAGER_MENUITEM)
1688
1689         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Korean", "View/Encoding/Korean", GTK_UI_MANAGER_MENU)
1690         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Korean", CS_EUC_KR, "View/Encoding/Korean/"CS_EUC_KR, GTK_UI_MANAGER_MENUITEM)
1691         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Korean", CS_ISO_2022_KR, "View/Encoding/Korean/"CS_ISO_2022_KR, GTK_UI_MANAGER_MENUITEM)
1692
1693         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Thai", "View/Encoding/Thai", GTK_UI_MANAGER_MENU)
1694         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Thai", CS_TIS_620, "View/Encoding/Thai/"CS_TIS_620, GTK_UI_MANAGER_MENUITEM)
1695         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Thai", CS_WINDOWS_874, "View/Encoding/Thai/"CS_WINDOWS_874, GTK_UI_MANAGER_MENUITEM)
1696
1697         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Decode", "View/Decode", GTK_UI_MANAGER_MENU)
1698         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "AutoDetect", "View/Decode/AutoDetect", GTK_UI_MANAGER_MENUITEM)
1699         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "Separator1", "View/Decode/---", GTK_UI_MANAGER_SEPARATOR)
1700         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "8bit", "View/Decode/8bit", GTK_UI_MANAGER_MENUITEM)
1701         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "QP", "View/Decode/QP", GTK_UI_MANAGER_MENUITEM)
1702         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "B64", "View/Decode/B64", GTK_UI_MANAGER_MENUITEM)
1703         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "Uuencode", "View/Decode/Uuencode", GTK_UI_MANAGER_MENUITEM)
1704         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator5", "View/---", GTK_UI_MANAGER_SEPARATOR)
1705
1706         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "OpenNewWindow", "View/OpenNewWindow", GTK_UI_MANAGER_MENUITEM)
1707         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "MessageSource", "View/MessageSource", GTK_UI_MANAGER_MENUITEM)
1708         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "AllHeaders", "View/AllHeaders", GTK_UI_MANAGER_MENUITEM)
1709         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Quotes", "View/Quotes", GTK_UI_MANAGER_MENU)
1710         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Quotes", "CollapseAll", "View/Quotes/CollapseAll", GTK_UI_MANAGER_MENUITEM)
1711         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Quotes", "Collapse2", "View/Quotes/Collapse2", GTK_UI_MANAGER_MENUITEM)
1712         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Quotes", "Collapse3", "View/Quotes/Collapse3", GTK_UI_MANAGER_MENUITEM)
1713         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Part", "View/Part", GTK_UI_MANAGER_MENU)
1714         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Part", "AsText", "View/Part/AsText", GTK_UI_MANAGER_MENUITEM)
1715         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Part", "Open", "View/Part/Open", GTK_UI_MANAGER_MENUITEM)
1716 #ifndef G_OS_WIN32
1717         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Part", "OpenWith", "View/Part/OpenWith", GTK_UI_MANAGER_MENUITEM)
1718 #endif
1719         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator8", "View/---", GTK_UI_MANAGER_SEPARATOR)
1720         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "UpdateSummary", "View/UpdateSummary", GTK_UI_MANAGER_MENUITEM)
1721
1722 /* Message menu */
1723         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Receive", "Message/Receive", GTK_UI_MANAGER_MENU)
1724         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "CurrentAccount", "Message/Receive/CurrentAccount", GTK_UI_MANAGER_MENUITEM)
1725         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "AllAccounts", "Message/Receive/AllAccounts", GTK_UI_MANAGER_MENUITEM)
1726         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "CancelReceiving", "Message/Receive/CancelReceiving", GTK_UI_MANAGER_MENUITEM)
1727         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "Separator1", "Message/Receive/---", GTK_UI_MANAGER_SEPARATOR)
1728         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "PlaceHolder", "Message/Receive/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1729         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "SendQueue", "Message/SendQueue", GTK_UI_MANAGER_MENUITEM)
1730         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "CancelSending", "Message/CancelSending", GTK_UI_MANAGER_MENUITEM)
1731         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator1", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1732
1733         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ComposeEmail", "Message/ComposeEmail", GTK_UI_MANAGER_MENUITEM)
1734         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ComposeNews", "Message/ComposeNews", GTK_UI_MANAGER_MENUITEM)
1735         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Reply", "Message/Reply", GTK_UI_MANAGER_MENUITEM)
1736         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ReplyTo", "Message/ReplyTo", GTK_UI_MANAGER_MENU)
1737         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/ReplyTo", "All", "Message/ReplyTo/All", GTK_UI_MANAGER_MENUITEM)
1738         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/ReplyTo", "Sender", "Message/ReplyTo/Sender", GTK_UI_MANAGER_MENUITEM)
1739         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/ReplyTo", "List", "Message/ReplyTo/List", GTK_UI_MANAGER_MENUITEM)
1740         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "FollowupReply", "Message/FollowupReply", GTK_UI_MANAGER_MENUITEM)
1741         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator2", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1742
1743         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Forward", "Message/Forward", GTK_UI_MANAGER_MENUITEM)
1744         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ForwardAtt", "Message/ForwardAtt", GTK_UI_MANAGER_MENUITEM)
1745         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Redirect", "Message/Redirect", GTK_UI_MANAGER_MENUITEM)
1746         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "MailingList", "Message/MailingList", GTK_UI_MANAGER_MENU)
1747         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "Post", "Message/MailingList/Post", GTK_UI_MANAGER_MENU)
1748         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "Help", "Message/MailingList/Help", GTK_UI_MANAGER_MENU)
1749         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "Subscribe", "Message/MailingList/Subscribe", GTK_UI_MANAGER_MENU)
1750         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "Unsubscribe", "Message/MailingList/Unsubscribe", GTK_UI_MANAGER_MENU)
1751         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "ViewArchive", "Message/MailingList/ViewArchive", GTK_UI_MANAGER_MENU)
1752         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "ContactOwner", "Message/MailingList/ContactOwner", GTK_UI_MANAGER_MENU)
1753         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/Post", "PlaceHolder", "Message/MailingList/Post/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1754         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/Help", "PlaceHolder", "Message/MailingList/Help/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1755         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/Subscribe", "PlaceHolder", "Message/MailingList/Subscribe/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1756         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/Unsubscribe", "PlaceHolder", "Message/MailingList/Unsubscribe/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1757         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/ViewArchive", "PlaceHolder", "Message/MailingList/ViewArchive/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1758         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/ContactOwner", "PlaceHolder", "Message/MailingList/ContactOwner/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1759         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator3", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1760
1761         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Move", "Message/Move", GTK_UI_MANAGER_MENUITEM)
1762         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Copy", "Message/Copy", GTK_UI_MANAGER_MENUITEM)
1763         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Trash", "Message/Trash", GTK_UI_MANAGER_MENUITEM)
1764         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Delete", "Message/Delete", GTK_UI_MANAGER_MENUITEM)
1765         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "TrashThread", "Message/TrashThread", GTK_UI_MANAGER_MENUITEM)
1766         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "DeleteThread", "Message/DeleteThread", GTK_UI_MANAGER_MENUITEM)
1767         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "CancelNews", "Message/CancelNews", GTK_UI_MANAGER_MENUITEM)
1768         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator4", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1769
1770         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Mark", "Message/Mark", GTK_UI_MANAGER_MENU)
1771         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Mark", "Message/Mark/Mark", GTK_UI_MANAGER_MENUITEM)
1772         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Unmark", "Message/Mark/Unmark", GTK_UI_MANAGER_MENUITEM)
1773         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator1", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1774         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkRead", "Message/Mark/MarkRead", GTK_UI_MANAGER_MENUITEM)
1775         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkUnread", "Message/Mark/MarkUnread", GTK_UI_MANAGER_MENUITEM)
1776         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator2", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1777         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkAllRead", "Message/Mark/MarkAllRead", GTK_UI_MANAGER_MENUITEM)
1778         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkAllUnread", "Message/Mark/MarkAllUnread", GTK_UI_MANAGER_MENUITEM)
1779         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator3", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1780         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "IgnoreThread", "Message/Mark/IgnoreThread", GTK_UI_MANAGER_MENUITEM)
1781         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "UnignoreThread", "Message/Mark/UnignoreThread", GTK_UI_MANAGER_MENUITEM)
1782         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "WatchThread", "Message/Mark/WatchThread", GTK_UI_MANAGER_MENUITEM)
1783         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "UnwatchThread", "Message/Mark/UnwatchThread", GTK_UI_MANAGER_MENUITEM)
1784         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator4", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1785         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkSpam", "Message/Mark/MarkSpam", GTK_UI_MANAGER_MENUITEM)
1786         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkHam", "Message/Mark/MarkHam", GTK_UI_MANAGER_MENUITEM)
1787         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator5", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1788         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Lock", "Message/Mark/Lock", GTK_UI_MANAGER_MENUITEM)
1789         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Unlock", "Message/Mark/Unlock", GTK_UI_MANAGER_MENUITEM)
1790         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ColorLabel", "Message/ColorLabel", GTK_UI_MANAGER_MENUITEM)
1791         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Tags", "Message/Tags", GTK_UI_MANAGER_MENUITEM)
1792         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator5", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1793
1794         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Reedit", "Message/Reedit", GTK_UI_MANAGER_MENUITEM)
1795         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator6", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1796         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "CheckSignature", "Message/CheckSignature", GTK_UI_MANAGER_MENUITEM)
1797
1798 /* Tools menu */
1799         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "AddressBook", "Tools/AddressBook", GTK_UI_MANAGER_MENUITEM)
1800         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "AddSenderToAB", "Tools/AddSenderToAB", GTK_UI_MANAGER_MENUITEM)
1801         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "CollectAddresses", "Tools/CollectAddresses", GTK_UI_MANAGER_MENU)
1802         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CollectAddresses", "FromFolder", "Tools/CollectAddresses/FromFolder", GTK_UI_MANAGER_MENUITEM)
1803         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CollectAddresses", "FromSelected", "Tools/CollectAddresses/FromSelected", GTK_UI_MANAGER_MENUITEM)
1804         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator1", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1805
1806         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "FilterFolder", "Tools/FilterFolder", GTK_UI_MANAGER_MENUITEM)
1807         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "FilterSelected", "Tools/FilterSelected", GTK_UI_MANAGER_MENUITEM)
1808         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "RunProcessing", "Tools/RunProcessing", GTK_UI_MANAGER_MENUITEM)
1809         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "CreateFilterRule", "Tools/CreateFilterRule", GTK_UI_MANAGER_MENU)
1810         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateFilterRule", "Automatically", "Tools/CreateFilterRule/Automatically", GTK_UI_MANAGER_MENUITEM)
1811         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateFilterRule", "ByFrom", "Tools/CreateFilterRule/ByFrom", GTK_UI_MANAGER_MENUITEM)
1812         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateFilterRule", "ByTo", "Tools/CreateFilterRule/ByTo", GTK_UI_MANAGER_MENUITEM)
1813         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateFilterRule", "BySubject", "Tools/CreateFilterRule/BySubject", GTK_UI_MANAGER_MENUITEM)
1814
1815         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "CreateProcessingRule", "Tools/CreateProcessingRule", GTK_UI_MANAGER_MENU)
1816         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateProcessingRule", "Automatically", "Tools/CreateProcessingRule/Automatically", GTK_UI_MANAGER_MENUITEM)
1817         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateProcessingRule", "ByFrom", "Tools/CreateProcessingRule/ByFrom", GTK_UI_MANAGER_MENUITEM)
1818         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateProcessingRule", "ByTo", "Tools/CreateProcessingRule/ByTo", GTK_UI_MANAGER_MENUITEM)
1819         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateProcessingRule", "BySubject", "Tools/CreateProcessingRule/BySubject", GTK_UI_MANAGER_MENUITEM)
1820         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator2", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1821         
1822         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "ListUrls", "Tools/ListUrls", GTK_UI_MANAGER_MENUITEM)
1823         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator3", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1824
1825         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Actions", "Tools/Actions", GTK_UI_MANAGER_MENU)
1826         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/Actions", "PlaceHolder", "Tools/Actions/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1827         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator4", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1828
1829         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "CheckNewMessages", "Tools/CheckNewMessages", GTK_UI_MANAGER_MENUITEM)
1830         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "DeleteDuplicates", "Tools/DeleteDuplicates", GTK_UI_MANAGER_MENU)
1831         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/DeleteDuplicates", "SelFolder", "Tools/DeleteDuplicates/SelFolder", GTK_UI_MANAGER_MENUITEM)
1832         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/DeleteDuplicates", "AllFolders", "Tools/DeleteDuplicates/AllFolders", GTK_UI_MANAGER_MENUITEM)
1833         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator5", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1834
1835         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Execute", "Tools/Execute", GTK_UI_MANAGER_MENUITEM)
1836         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Expunge", "Tools/Expunge", GTK_UI_MANAGER_MENUITEM)
1837 #ifdef USE_GNUTLS
1838         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator6", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1839         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "SSLCertificates", "Tools/SSLCertificates", GTK_UI_MANAGER_MENUITEM)
1840 #endif
1841         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator7", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1842         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "FilteringLog", "Tools/FilteringLog", GTK_UI_MANAGER_MENUITEM)
1843         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "NetworkLog", "Tools/NetworkLog", GTK_UI_MANAGER_MENUITEM)
1844         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator8", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1845         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "ForgetSessionPasswords", "Tools/ForgetSessionPasswords", GTK_UI_MANAGER_MENUITEM)
1846 #ifndef PASSWORD_CRYPTO_OLD
1847         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "ForgetMasterPassphrase", "Tools/ForgetMasterPassphrase", GTK_UI_MANAGER_MENUITEM)
1848 #endif
1849         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator9", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1850
1851 /* Configuration menu */
1852         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "ChangeAccount", "Configuration/ChangeAccount", GTK_UI_MANAGER_MENU)
1853         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration/ChangeAccount", "PlaceHolder", "Configuration/ChangeAccount/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1854         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "AccountPrefs", "Configuration/AccountPrefs", GTK_UI_MANAGER_MENUITEM)
1855         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "CreateAccount", "Configuration/CreateAccount", GTK_UI_MANAGER_MENUITEM)
1856         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "EditAccounts", "Configuration/EditAccounts", GTK_UI_MANAGER_MENUITEM)
1857         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Separator1", "Configuration/---", GTK_UI_MANAGER_SEPARATOR)
1858
1859         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Preferences", "Configuration/Preferences", GTK_UI_MANAGER_MENUITEM)
1860         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "PreProcessing", "Configuration/PreProcessing", GTK_UI_MANAGER_MENUITEM)
1861         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "PostProcessing", "Configuration/PostProcessing", GTK_UI_MANAGER_MENUITEM)
1862         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Filtering", "Configuration/Filtering", GTK_UI_MANAGER_MENUITEM)
1863         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Templates", "Configuration/Templates", GTK_UI_MANAGER_MENUITEM)
1864         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Actions", "Configuration/Actions", GTK_UI_MANAGER_MENUITEM)
1865         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Tags", "Configuration/Tags", GTK_UI_MANAGER_MENUITEM)
1866
1867         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Separator2", "Configuration/---", GTK_UI_MANAGER_SEPARATOR)
1868         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Plugins", "Configuration/Plugins", GTK_UI_MANAGER_MENUITEM)
1869
1870 /* Help menu */
1871         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "Manual", "Help/Manual", GTK_UI_MANAGER_MENUITEM)
1872         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "FAQ", "Help/FAQ", GTK_UI_MANAGER_MENUITEM)
1873         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "IconLegend", "Help/IconLegend", GTK_UI_MANAGER_MENUITEM)
1874 #ifdef G_OS_WIN32
1875         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "Separator1", "Help/---", GTK_UI_MANAGER_SEPARATOR)
1876         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "SetDefault", "Help/SetDefault", GTK_UI_MANAGER_MENUITEM)
1877 #endif
1878         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "Separator2", "Help/---", GTK_UI_MANAGER_SEPARATOR)
1879         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "About", "Help/About", GTK_UI_MANAGER_MENUITEM)
1880
1881
1882         menubar = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu");
1883         if (prefs_common.mainwin_menubar)
1884                 gtk_widget_show_all(menubar);
1885         else
1886                 gtk_widget_hide(menubar);
1887         gtk_window_add_accel_group(GTK_WINDOW(window), gtk_ui_manager_get_accel_group(mainwin->ui_manager));
1888
1889         gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, TRUE, 0);
1890
1891         if (prefs_common.toolbar_detachable) {
1892                 handlebox = gtk_handle_box_new();
1893                 gtk_widget_show(handlebox);
1894                 gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
1895                 g_signal_connect(G_OBJECT(handlebox), "child_attached",
1896                                  G_CALLBACK(toolbar_child_attached), mainwin);
1897                 g_signal_connect(G_OBJECT(handlebox), "child_detached",
1898                                  G_CALLBACK(toolbar_child_detached), mainwin);
1899         } else {
1900                 handlebox = gtk_hbox_new(FALSE, 0);
1901                 gtk_widget_show(handlebox);
1902                 gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
1903         }
1904         /* link window to mainwin->window to avoid gdk warnings */
1905         mainwin->window       = window;
1906         mainwin_list = g_list_append(mainwin_list, mainwin);
1907         
1908         mainwin->toolbar = toolbar_create(TOOLBAR_MAIN, 
1909                                           handlebox, 
1910                                           (gpointer)mainwin);
1911         toolbar_set_learn_button
1912                 (mainwin->toolbar,
1913                  LEARN_SPAM);
1914
1915         /* vbox that contains body */
1916         vbox_body = gtk_vbox_new(FALSE, BORDER_WIDTH);
1917         gtk_widget_show(vbox_body);
1918         gtk_container_set_border_width(GTK_CONTAINER(vbox_body), BORDER_WIDTH);
1919         gtk_box_pack_start(GTK_BOX(vbox), vbox_body, TRUE, TRUE, 0);
1920
1921 #ifndef GENERIC_UMPC
1922         hbox_stat = gtk_hbox_new(FALSE, 2);
1923         gtk_box_pack_end(GTK_BOX(vbox_body), hbox_stat, FALSE, FALSE, 0);
1924
1925         warning_icon = gtk_image_new_from_stock
1926                         (GTK_STOCK_DIALOG_WARNING, GTK_ICON_SIZE_SMALL_TOOLBAR);
1927         warning_btn = gtk_event_box_new();
1928         gtk_event_box_set_visible_window(GTK_EVENT_BOX(warning_btn), FALSE);
1929         
1930         mainwin->warning_btn      = warning_btn;
1931         
1932         g_signal_connect(G_OBJECT(warning_btn), "button-press-event", 
1933                          G_CALLBACK(warning_icon_pressed),
1934                          (gpointer) mainwin);
1935         g_signal_connect(G_OBJECT(warning_btn), "motion-notify-event",
1936                          G_CALLBACK(warning_visi_notify), mainwin);
1937         g_signal_connect(G_OBJECT(warning_btn), "leave-notify-event",
1938                          G_CALLBACK(warning_leave_notify), mainwin);
1939         g_signal_connect(G_OBJECT(warning_btn), "enter-notify-event",
1940                          G_CALLBACK(warning_enter_notify), mainwin);
1941
1942         gtk_container_add (GTK_CONTAINER(warning_btn), warning_icon);
1943
1944         CLAWS_SET_TIP(warning_btn, 
1945                              _("Some error(s) happened. Click here to view log."));
1946         gtk_box_pack_start(GTK_BOX(hbox_stat), warning_btn, FALSE, FALSE, 0);
1947
1948         statusbar = statusbar_create();
1949         gtk_box_pack_start(GTK_BOX(hbox_stat), statusbar, TRUE, TRUE, 0);
1950
1951         progressbar = gtk_progress_bar_new();
1952         gtk_widget_set_size_request(progressbar, 120, 1);
1953         gtk_box_pack_start(GTK_BOX(hbox_stat), progressbar, FALSE, FALSE, 0);
1954
1955         online_pixmap = stock_pixmap_widget(STOCK_PIXMAP_ONLINE);
1956         offline_pixmap = stock_pixmap_widget(STOCK_PIXMAP_OFFLINE);
1957         online_switch = gtk_button_new ();
1958         gtk_widget_set_can_focus(online_switch, FALSE);
1959         CLAWS_SET_TIP(online_switch, 
1960                              _("You are online. Click the icon to go offline"));
1961         offline_switch = gtk_button_new ();
1962         CLAWS_SET_TIP(offline_switch, 
1963                              _("You are offline. Click the icon to go online"));
1964         gtk_container_add (GTK_CONTAINER(online_switch), online_pixmap);
1965         gtk_button_set_relief (GTK_BUTTON(online_switch), GTK_RELIEF_NONE);
1966         g_signal_connect (G_OBJECT(online_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
1967         gtk_box_pack_start (GTK_BOX(hbox_stat), online_switch, FALSE, FALSE, 0);
1968         gtk_container_add (GTK_CONTAINER(offline_switch), offline_pixmap);
1969         gtk_button_set_relief (GTK_BUTTON(offline_switch), GTK_RELIEF_NONE);
1970         g_signal_connect (G_OBJECT(offline_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
1971         gtk_box_pack_start (GTK_BOX(hbox_stat), offline_switch, FALSE, FALSE, 0);
1972         
1973         statuslabel = gtk_label_new("");
1974         gtk_box_pack_start(GTK_BOX(hbox_stat), statuslabel, FALSE, FALSE, 0);
1975
1976         ac_button = gtk_button_new();
1977         CLAWS_SET_TIP(ac_button, _("Select account"));
1978         gtk_widget_set_can_focus(ac_button, FALSE);
1979         gtk_widget_set_size_request(ac_button, -1, 0);
1980         gtk_box_pack_end(GTK_BOX(hbox_stat), ac_button, FALSE, FALSE, 0);
1981         g_signal_connect(G_OBJECT(ac_button), "button_press_event",
1982                          G_CALLBACK(ac_label_button_pressed), mainwin);
1983
1984         ac_label = gtk_label_new("");
1985         gtk_container_add(GTK_CONTAINER(ac_button), ac_label);
1986
1987         gtk_widget_show_all(hbox_stat);
1988
1989         gtk_widget_hide(offline_switch);
1990         gtk_widget_hide(progressbar);
1991         gtk_widget_hide(warning_btn);
1992 #else
1993         online_switch = gtk_button_new ();
1994         offline_switch = gtk_button_new ();
1995         g_signal_connect (G_OBJECT(online_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
1996         g_signal_connect (G_OBJECT(offline_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
1997 #endif
1998         /* create views */
1999         mainwin->folderview  = folderview  = folderview_create();
2000         mainwin->summaryview = summaryview = summary_create(mainwin);
2001         mainwin->messageview = messageview = messageview_create(mainwin);
2002
2003         /* init log instances data before creating log views */
2004         set_log_title(LOG_PROTOCOL, _("Network log"));
2005         set_log_prefs(LOG_PROTOCOL,
2006                         &prefs_common.logwin_width,
2007                         &prefs_common.logwin_height);
2008         set_log_title(LOG_DEBUG_FILTERING, _("Filtering/Processing debug log"));
2009         set_log_prefs(LOG_DEBUG_FILTERING,
2010                         &prefs_common.filtering_debugwin_width,
2011                         &prefs_common.filtering_debugwin_height);
2012
2013         /* setup log windows */
2014         mainwin->logwin = log_window_create(LOG_PROTOCOL);
2015         log_window_init(mainwin->logwin);
2016
2017         mainwin->filtering_debugwin = log_window_create(LOG_DEBUG_FILTERING);
2018         log_window_set_clipping(mainwin->logwin,
2019                                 prefs_common.cliplog,
2020                                 prefs_common.loglength);
2021
2022         log_window_init(mainwin->filtering_debugwin);
2023         log_window_set_clipping(mainwin->filtering_debugwin,
2024                                 prefs_common.filtering_debug_cliplog,
2025                                 prefs_common.filtering_debug_loglength);
2026         if (prefs_common.enable_filtering_debug)
2027                 log_message(LOG_DEBUG_FILTERING, _("filtering log enabled\n"));
2028         else
2029                 log_message(LOG_DEBUG_FILTERING, _("filtering log disabled\n"));
2030
2031         folderview->mainwin      = mainwin;
2032         folderview->summaryview  = summaryview;
2033
2034         summaryview->mainwin     = mainwin;
2035         summaryview->folderview  = folderview;
2036         summaryview->messageview = messageview;
2037         summaryview->window      = window;
2038
2039         mainwin->vbox           = vbox;
2040         mainwin->menubar        = menubar;
2041         mainwin->handlebox      = handlebox;
2042         mainwin->vbox_body      = vbox_body;
2043         mainwin->online_switch  = online_switch;
2044         mainwin->offline_switch    = offline_switch;
2045 #ifndef GENERIC_UMPC
2046         messageview->statusbar  = statusbar;
2047         mainwin->statusbar      = statusbar;
2048         mainwin->hbox_stat      = hbox_stat;
2049         mainwin->progressbar    = progressbar;
2050         mainwin->statuslabel    = statuslabel;
2051         mainwin->online_pixmap  = online_pixmap;
2052         mainwin->offline_pixmap = offline_pixmap;
2053         mainwin->ac_button      = ac_button;
2054         mainwin->ac_label       = ac_label;
2055         /* set context IDs for status bar */
2056         mainwin->mainwin_cid = gtk_statusbar_get_context_id
2057                 (GTK_STATUSBAR(statusbar), "Main Window");
2058         mainwin->folderview_cid = gtk_statusbar_get_context_id
2059                 (GTK_STATUSBAR(statusbar), "Folder View");
2060         mainwin->summaryview_cid = gtk_statusbar_get_context_id
2061                 (GTK_STATUSBAR(statusbar), "Summary View");
2062         mainwin->messageview_cid = gtk_statusbar_get_context_id
2063                 (GTK_STATUSBAR(statusbar), "Message View");
2064         messageview->statusbar_cid = mainwin->messageview_cid;
2065
2066 #else
2067         messageview->statusbar  = NULL;
2068         mainwin->statusbar      = NULL;
2069         mainwin->hbox_stat      = NULL;
2070         /* mainwin->progressbar is set in toolbar.c */
2071         mainwin->statuslabel    = NULL;
2072         mainwin->online_pixmap  = NULL;
2073         mainwin->offline_pixmap = NULL;
2074         mainwin->ac_button      = NULL;
2075         mainwin->ac_label       = NULL;
2076 #endif
2077         
2078         /* allocate colors for summary view and folder view */
2079         summaryview->color_marked.red = summaryview->color_marked.green = 0;
2080         summaryview->color_marked.blue = (guint16)65535;
2081
2082         summaryview->color_dim.red = summaryview->color_dim.green =
2083                 summaryview->color_dim.blue = COLOR_DIM;
2084
2085         gtkut_convert_int_to_gdk_color(prefs_common.color[COL_NEW],
2086                                        &folderview->color_new);
2087
2088         gtkut_convert_int_to_gdk_color(prefs_common.color[COL_TGT_FOLDER],
2089                                        &folderview->color_op);
2090
2091         color[0] = summaryview->color_marked;
2092         color[1] = summaryview->color_dim;
2093         color[2] = folderview->color_new;
2094         color[3] = folderview->color_op;
2095
2096 #if !GTK_CHECK_VERSION(3, 0, 0)
2097         colormap = gdk_drawable_get_colormap(gtk_widget_get_window(window));
2098         gdk_colormap_alloc_colors(colormap, color, 4, FALSE, TRUE, success);
2099         for (i = 0; i < 4; i++) {
2100                 if (success[i] == FALSE)
2101                         g_warning("MainWindow: color allocation %d failed", i);
2102         }
2103 #endif
2104
2105         debug_print("done.\n");
2106
2107         messageview->visible = prefs_common.msgview_visible;
2108
2109         main_window_set_widgets(mainwin, prefs_common.layout_mode);
2110
2111         g_signal_connect(G_OBJECT(window), "size_allocate",
2112                          G_CALLBACK(main_window_size_allocate_cb),
2113                          mainwin);
2114
2115         /* set menu items */
2116         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Encoding/"CS_AUTO, TRUE);
2117
2118         menuitem = NULL;
2119         switch (prefs_common.toolbar_style) {
2120         case TOOLBAR_NONE:
2121                 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/Hide");
2122                 break;
2123         case TOOLBAR_ICON:
2124                 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/IconOnly");
2125                 break;
2126         case TOOLBAR_TEXT:
2127                 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/TextOnly");
2128                 break;
2129         case TOOLBAR_BOTH:
2130                 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/TextBelowIcon");
2131                 break;
2132         case TOOLBAR_BOTH_HORIZ:
2133                 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/TextBesideIcon");
2134         }
2135         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), TRUE);
2136
2137         toolbar_set_style(mainwin->toolbar->toolbar, 
2138                           mainwin->handlebox, 
2139                           prefs_common.toolbar_style);
2140 #ifndef GENERIC_UMPC
2141         gtk_widget_hide(mainwin->hbox_stat);
2142         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/StatusBar");
2143         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
2144                                        prefs_common.show_statusbar);
2145 #endif  
2146         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/ColumnHeaders");
2147         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
2148                                        prefs_common.show_col_headers);
2149         /* set account selection menu */
2150         ac_menu = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Configuration/ChangeAccount");
2151         mainwin->ac_menu = ac_menu;
2152
2153         toolbar_main_set_sensitive(mainwin);
2154
2155         /* create actions menu */
2156         main_window_update_actions_menu(mainwin);
2157
2158         main_create_mailing_list_menu (mainwin, NULL);
2159
2160         /* attach accel groups to main window */
2161 #define ADD_MENU_ACCEL_GROUP_TO_WINDOW(menu,win)                        \
2162         gtk_window_add_accel_group                                      \
2163                 (GTK_WINDOW(win),                                       \
2164                  gtk_ui_manager_get_accel_group(gtkut_ui_manager()));
2165
2166         ADD_MENU_ACCEL_GROUP_TO_WINDOW(summaryview->popupmenu, mainwin->window);
2167         
2168         g_signal_connect(G_OBJECT(window), "window_state_event",
2169                          G_CALLBACK(mainwindow_state_event_cb), mainwin);
2170         g_signal_connect(G_OBJECT(window), "visibility_notify_event",
2171                          G_CALLBACK(mainwindow_visibility_event_cb), mainwin);
2172         gtk_widget_add_events(GTK_WIDGET(window), GDK_VISIBILITY_NOTIFY_MASK);
2173
2174         if (prefs_common.layout_mode == VERTICAL_LAYOUT ||
2175             prefs_common.layout_mode == SMALL_LAYOUT) {
2176                 summary_relayout(mainwin->summaryview); 
2177         }
2178         summary_update_unread(mainwin->summaryview, NULL);
2179         
2180         /* initialize views */
2181         folderview_init(folderview);
2182         summary_init(summaryview);
2183         messageview_init(messageview);
2184 #ifdef USE_GNUTLS
2185         sslcertwindow_register_hook();
2186 #endif
2187         mainwin->lock_count = 0;
2188         mainwin->menu_lock_count = 0;
2189         mainwin->cursor_count = 0;
2190
2191         mainwin->progressindicator_hook =
2192                 hooks_register_hook(PROGRESSINDICATOR_HOOKLIST, mainwindow_progressindicator_hook, mainwin);
2193
2194         if (!watch_cursor)
2195                 watch_cursor = gdk_cursor_new(GDK_WATCH);
2196         if (!hand_cursor)
2197                 hand_cursor = gdk_cursor_new(GDK_HAND2);
2198
2199         /* init work_offline */
2200         if (prefs_common.work_offline)
2201                 online_switch_clicked (GTK_BUTTON(online_switch), mainwin);
2202
2203         mainwindow_colorlabel_menu_create(mainwin, FALSE);
2204         mainwindow_tags_menu_create(mainwin, FALSE);
2205
2206         if (prefs_common.mainwin_fullscreen) {
2207                 cm_toggle_menu_set_active_full(mainwin->ui_manager, 
2208                         "Menu/View/FullScreen",
2209                         TRUE);
2210         }
2211         if (prefs_common.mainwin_menubar)
2212                 cm_toggle_menu_set_active_full(mainwin->ui_manager,"Menu/View/ShowHide/MenuBar", TRUE);
2213         
2214         return mainwin;
2215 }
2216
2217 void main_window_update_actions_menu(MainWindow *mainwin)
2218 {
2219         action_update_mainwin_menu(mainwin->ui_manager, "/Menu/Tools/Actions", mainwin);
2220 }
2221
2222 void main_window_cursor_wait(MainWindow *mainwin)
2223 {
2224
2225         if (mainwin->cursor_count == 0) {
2226                 gdk_window_set_cursor(gtk_widget_get_window(mainwin->window), watch_cursor);
2227                 textview_cursor_wait(mainwin->messageview->mimeview->textview);
2228         }
2229         
2230         mainwin->cursor_count++;
2231
2232         gdk_flush();
2233 }
2234
2235 void main_window_cursor_normal(MainWindow *mainwin)
2236 {
2237         if (mainwin->cursor_count)
2238                 mainwin->cursor_count--;
2239
2240         if (mainwin->cursor_count == 0) {
2241                 gdk_window_set_cursor(gtk_widget_get_window(mainwin->window), NULL);
2242                 textview_cursor_normal(mainwin->messageview->mimeview->textview);
2243         }
2244         gdk_flush();
2245 }
2246
2247 /* lock / unlock the user-interface */
2248 void main_window_lock(MainWindow *mainwin)
2249 {
2250         if (mainwin->lock_count == 0 && mainwin->ac_button)
2251                 gtk_widget_set_sensitive(mainwin->ac_button, FALSE);
2252
2253         mainwin->lock_count++;
2254
2255         main_window_set_menu_sensitive(mainwin);
2256         toolbar_main_set_sensitive(mainwin);
2257 }
2258
2259 void main_window_unlock(MainWindow *mainwin)
2260 {
2261         if (mainwin->lock_count)
2262                 mainwin->lock_count--;
2263
2264         main_window_set_menu_sensitive(mainwin);
2265         toolbar_main_set_sensitive(mainwin);
2266
2267         if (mainwin->lock_count == 0 && mainwin->ac_button)
2268                 gtk_widget_set_sensitive(mainwin->ac_button, TRUE);
2269 }
2270
2271 static void main_window_menu_callback_block(MainWindow *mainwin)
2272 {
2273         mainwin->menu_lock_count++;
2274 }
2275
2276 static void main_window_menu_callback_unblock(MainWindow *mainwin)
2277 {
2278         if (mainwin->menu_lock_count)
2279                 mainwin->menu_lock_count--;
2280 }
2281
2282 static guint prefs_tag = 0;
2283
2284 void main_window_reflect_prefs_all(void)
2285 {
2286         main_window_reflect_prefs_all_real(FALSE);
2287 }
2288
2289 static gboolean reflect_prefs_timeout_cb(gpointer data) 
2290 {
2291         gboolean pixmap_theme_changed = GPOINTER_TO_INT(data);
2292         GList *cur;
2293         MainWindow *mainwin;
2294 #ifndef GENERIC_UMPC
2295         GtkWidget *pixmap;
2296 #endif
2297         for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2298                 mainwin = (MainWindow *)cur->data;
2299
2300                 main_window_show_cur_account(mainwin);
2301                 main_window_set_menu_sensitive(mainwin);
2302                 toolbar_main_set_sensitive(mainwin);
2303
2304                 /* pixmap themes */
2305                 if (pixmap_theme_changed) {
2306                         toolbar_update(TOOLBAR_MAIN, mainwin);
2307                         messageview_reflect_prefs_pixmap_theme();
2308                         compose_reflect_prefs_pixmap_theme();
2309                         folderview_reinit_fonts(mainwin->folderview);
2310                         summary_reflect_prefs_pixmap_theme(mainwin->summaryview);
2311                         foldersel_reflect_prefs_pixmap_theme();
2312 #ifndef USE_ALT_ADDRBOOK
2313                         addressbook_reflect_prefs_pixmap_theme();
2314 #endif
2315 #ifndef GENERIC_UMPC
2316                         pixmap = stock_pixmap_widget(STOCK_PIXMAP_ONLINE);
2317                         gtk_container_remove(GTK_CONTAINER(mainwin->online_switch), 
2318                                              mainwin->online_pixmap);
2319                         gtk_container_add (GTK_CONTAINER(mainwin->online_switch), pixmap);
2320                         gtk_widget_show(pixmap);
2321                         mainwin->online_pixmap = pixmap;
2322                         pixmap = stock_pixmap_widget(STOCK_PIXMAP_OFFLINE);
2323                         gtk_container_remove(GTK_CONTAINER(mainwin->offline_switch), 
2324                                              mainwin->offline_pixmap);
2325                         gtk_container_add (GTK_CONTAINER(mainwin->offline_switch), pixmap);
2326                         gtk_widget_show(pixmap);
2327                         mainwin->offline_pixmap = pixmap;
2328 #endif
2329                         hooks_invoke(THEME_CHANGED_HOOKLIST, NULL);
2330                 }
2331                 
2332                 headerview_set_font(mainwin->messageview->headerview);
2333                 headerview_set_visibility(mainwin->messageview->headerview,
2334                                           prefs_common.display_header_pane);
2335                 textview_reflect_prefs(mainwin->messageview->mimeview->textview);
2336                 folderview_reflect_prefs();
2337                 summary_reflect_prefs();
2338 #ifndef GENERIC_UMPC
2339                 summary_redisplay_msg(mainwin->summaryview);
2340 #endif
2341                 if (prefs_common.layout_mode == SMALL_LAYOUT) {
2342                         if (mainwin->in_folder) {
2343                                 mainwindow_enter_folder(mainwin);
2344                         } else {
2345                                 mainwindow_exit_folder(mainwin);
2346                         }
2347                 }
2348         }
2349         prefs_tag = 0;
2350         return FALSE;
2351 }
2352
2353 void main_window_reflect_prefs_all_now(void)
2354 {
2355         reflect_prefs_timeout_cb(GINT_TO_POINTER(FALSE));
2356 }
2357
2358 void main_window_reflect_prefs_custom_colors(MainWindow *mainwin)
2359 {
2360         GtkMenuShell *menu;
2361         GList *children, *cur;
2362
2363         /* re-create colorlabel submenu */
2364         menu = GTK_MENU_SHELL(mainwin->colorlabel_menu);
2365         cm_return_if_fail(menu != NULL);
2366
2367         /* clear items. get item pointers. */
2368         children = gtk_container_get_children(GTK_CONTAINER(menu));
2369         for (cur = children; cur != NULL && cur->data != NULL; cur = cur->next) {
2370                 g_signal_handlers_disconnect_matched
2371                          (gtk_ui_manager_get_accel_group(mainwin->ui_manager), 
2372                          G_SIGNAL_MATCH_DATA|G_SIGNAL_MATCH_FUNC,
2373                          0, 0, NULL, mainwin_accel_changed_cb, cur->data);
2374                 gtk_menu_item_set_submenu(GTK_MENU_ITEM(cur->data), NULL);
2375         }
2376         g_list_free(children);
2377         mainwindow_colorlabel_menu_create(mainwin, TRUE);
2378         summary_reflect_prefs_custom_colors(mainwin->summaryview);
2379         folderview_reinit_fonts(mainwin->folderview);
2380 }
2381
2382 static gint tags_tag = 0;
2383 static gboolean main_window_reflect_tags_changes_real(gpointer data)
2384 {
2385         GtkMenuShell *menu;
2386         GList *children, *cur;
2387         MainWindow *mainwin = (MainWindow *)data;
2388
2389         if (summary_is_locked(mainwin->summaryview)) {
2390                 return TRUE;
2391         }
2392         /* re-create tags submenu */
2393         menu = GTK_MENU_SHELL(mainwin->tags_menu);
2394         cm_return_val_if_fail(menu != NULL, FALSE);
2395
2396         /* clear items. get item pointers. */
2397         children = gtk_container_get_children(GTK_CONTAINER(menu));
2398         for (cur = children; cur != NULL && cur->data != NULL; cur = cur->next) {
2399                 gtk_menu_item_set_submenu(GTK_MENU_ITEM(cur->data), NULL);
2400         }
2401         g_list_free(children);
2402         mainwindow_tags_menu_create(mainwin, TRUE);
2403         summary_reflect_tags_changes(mainwin->summaryview);
2404         
2405         tags_tag = 0;
2406         return FALSE;
2407 }
2408
2409 void main_window_reflect_tags_changes(MainWindow *mainwin)
2410 {
2411         if (tags_tag == 0) {
2412                 tags_tag = g_timeout_add(100, main_window_reflect_tags_changes_real, 
2413                                                 mainwin);
2414         }
2415 }
2416
2417 void main_window_reflect_prefs_all_real(gboolean pixmap_theme_changed)
2418 {
2419         if (prefs_tag == 0) {
2420                 prefs_tag = g_timeout_add(100, reflect_prefs_timeout_cb, 
2421                                                 GINT_TO_POINTER(pixmap_theme_changed));
2422         }
2423 }
2424
2425 void main_window_set_summary_column(void)
2426 {
2427         GList *cur;
2428         MainWindow *mainwin;
2429
2430         for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2431                 mainwin = (MainWindow *)cur->data;
2432                 summary_set_column_order(mainwin->summaryview);
2433         }
2434 }
2435
2436 void main_window_set_folder_column(void)
2437 {
2438         GList *cur;
2439         MainWindow *mainwin;
2440
2441         for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2442                 mainwin = (MainWindow *)cur->data;
2443                 folderview_set_column_order(mainwin->folderview);
2444         }
2445 }
2446
2447 static void main_window_set_account_selector_menu(MainWindow *mainwin,
2448                                                   GList *account_list)
2449 {
2450         GList *cur_ac;
2451         GtkWidget *menuitem;
2452         PrefsAccount *ac_prefs;
2453         GtkWidget *menu;
2454         gchar *accel_path;
2455
2456         menu = gtk_menu_new();
2457         gtk_menu_set_accel_group (GTK_MENU (menu), 
2458                 gtk_ui_manager_get_accel_group(mainwin->ui_manager));
2459
2460         for (cur_ac = account_list; cur_ac != NULL; cur_ac = cur_ac->next) {
2461                 ac_prefs = (PrefsAccount *)cur_ac->data;
2462
2463                 menuitem = gtk_menu_item_new_with_label
2464                         (ac_prefs->account_name
2465                          ? ac_prefs->account_name : _("Untitled"));
2466                 gtk_widget_show(menuitem);
2467                 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
2468                 g_signal_connect(G_OBJECT(menuitem), "activate",
2469                                  G_CALLBACK(account_selector_menu_cb),
2470                                  ac_prefs);
2471                 accel_path = g_strconcat("<Actions>/Menu/Configuration/ChangeAccount/",(ac_prefs->account_name
2472                          ? ac_prefs->account_name : _("Untitled")), NULL );
2473                 gtk_menu_item_set_accel_path(GTK_MENU_ITEM(menuitem), accel_path);
2474                 g_free(accel_path);
2475         }
2476         gtk_menu_item_set_submenu(GTK_MENU_ITEM(mainwin->ac_menu), menu);
2477 }
2478
2479 static void main_window_set_account_receive_menu(MainWindow *mainwin,
2480                                                  GList *account_list)
2481 {
2482         GList *children, *child;
2483         GtkWidget *menu;
2484         GtkWidget *menuitem;
2485         PrefsAccount *ac_prefs;
2486
2487         menu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(
2488                 gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/Receive")));
2489
2490         /* search for separator */
2491         children = gtk_container_get_children(GTK_CONTAINER(menu));
2492         for (child = children; child != NULL; child = child->next) {
2493                 if (child->data == gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/Receive/Separator1")) {
2494                         child = child->next;
2495                         break;
2496                 }
2497         }
2498
2499         /* destroy all previous menu item */
2500         while (child != NULL) {
2501                 gtk_widget_destroy(GTK_WIDGET(child->data));
2502                 child = child->next;
2503         }
2504
2505         g_list_free(children);
2506
2507         for (child = account_list; child != NULL; child = child->next) {
2508                 ac_prefs = (PrefsAccount *)child->data;
2509
2510                 if (ac_prefs->protocol == A_NONE)
2511                         continue;
2512
2513                 menuitem = gtk_menu_item_new_with_label
2514                         (ac_prefs->account_name ? ac_prefs->account_name
2515                          : _("Untitled"));
2516                 gtk_widget_show(menuitem);
2517                 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
2518                 g_signal_connect(G_OBJECT(menuitem), "activate",
2519                                  G_CALLBACK(account_receive_menu_cb),
2520                                  ac_prefs);
2521         }
2522 }
2523
2524 static void main_window_set_toolbar_combo_receive_menu(MainWindow *mainwin,
2525                                                        GList *account_list)
2526 {
2527         GList *cur_ac;
2528         GtkWidget *menuitem;
2529         PrefsAccount *ac_prefs;
2530         GtkWidget *menu = NULL;
2531
2532         if (mainwin->toolbar->getall_btn == NULL) /* button doesn't exist */
2533                 return;
2534
2535         menu = gtk_menu_tool_button_get_menu(GTK_MENU_TOOL_BUTTON(mainwin->toolbar->getall_btn));
2536         if (menu)
2537                 gtk_widget_destroy(menu);
2538         menu = gtk_menu_new();
2539
2540         for (cur_ac = account_list; cur_ac != NULL; cur_ac = cur_ac->next) {
2541                 ac_prefs = (PrefsAccount *)cur_ac->data;
2542
2543                 if (ac_prefs->protocol == A_NONE)
2544                         continue;
2545
2546                 menuitem = gtk_menu_item_new_with_label
2547                         (ac_prefs->account_name
2548                          ? ac_prefs->account_name : _("Untitled"));
2549                 gtk_widget_show(menuitem);
2550                 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
2551                 g_signal_connect(G_OBJECT(menuitem), "activate",
2552                                  G_CALLBACK(account_receive_menu_cb),
2553                                  ac_prefs);
2554         }
2555         gtk_menu_tool_button_set_menu(GTK_MENU_TOOL_BUTTON(mainwin->toolbar->getall_btn), menu);
2556 }
2557
2558 static void main_window_set_toolbar_combo_compose_menu(MainWindow *mainwin,
2559                                                        GList *account_list)
2560 {
2561 #ifndef GENERIC_UMPC
2562         GList *cur_ac;
2563         GtkWidget *menuitem;
2564         PrefsAccount *ac_prefs;
2565         GtkWidget *menu = NULL;
2566
2567         if (mainwin->toolbar->compose_mail_btn == NULL) /* button doesn't exist */
2568                 return;
2569
2570         menu = gtk_menu_tool_button_get_menu(GTK_MENU_TOOL_BUTTON(mainwin->toolbar->compose_mail_btn));
2571         if (menu)
2572                 gtk_widget_destroy(menu);
2573         menu = gtk_menu_new();
2574
2575         for (cur_ac = account_list; cur_ac != NULL; cur_ac = cur_ac->next) {
2576                 ac_prefs = (PrefsAccount *)cur_ac->data;
2577
2578                 menuitem = gtk_menu_item_new_with_label
2579                         (ac_prefs->account_name
2580                          ? ac_prefs->account_name : _("Untitled"));
2581                 gtk_widget_show(menuitem);
2582                 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
2583                 g_signal_connect(G_OBJECT(menuitem), "activate",
2584                                  G_CALLBACK(account_compose_menu_cb),
2585                                  ac_prefs);
2586         }
2587         gtk_menu_tool_button_set_menu(GTK_MENU_TOOL_BUTTON(mainwin->toolbar->compose_mail_btn), menu);
2588 #endif
2589 }
2590
2591 void main_window_set_account_menu(GList *account_list)
2592 {
2593         GList *cur;
2594         MainWindow *mainwin;
2595
2596         for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2597                 mainwin = (MainWindow *)cur->data;
2598                 main_window_set_account_selector_menu(mainwin, account_list);
2599                 main_window_set_account_receive_menu(mainwin, account_list);
2600                 main_window_set_toolbar_combo_receive_menu(mainwin, account_list);
2601                 main_window_set_toolbar_combo_compose_menu(mainwin, account_list);
2602         }
2603         hooks_invoke(ACCOUNT_LIST_CHANGED_HOOKLIST, NULL);
2604 }
2605
2606 void main_window_set_account_menu_only_toolbar(GList *account_list)
2607 {
2608         GList *cur;
2609         MainWindow *mainwin;
2610
2611         for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2612                 mainwin = (MainWindow *)cur->data;
2613                 main_window_set_toolbar_combo_receive_menu(mainwin, account_list);
2614                 main_window_set_toolbar_combo_compose_menu(mainwin, account_list);
2615         }
2616 }
2617
2618 static void main_window_show_cur_account(MainWindow *mainwin)
2619 {
2620         gchar *buf;
2621         gchar *ac_name;
2622
2623         ac_name = g_strdup(cur_account
2624                            ? (cur_account->account_name
2625                               ? cur_account->account_name : _("Untitled"))
2626                            : _("none"));
2627
2628         if (cur_account)
2629                 buf = g_strdup_printf("%s - %s", ac_name, PROG_VERSION);
2630         else
2631                 buf = g_strdup(PROG_VERSION);
2632         gtk_window_set_title(GTK_WINDOW(mainwin->window), buf);
2633         g_free(buf);
2634
2635         if (mainwin->ac_label)
2636                 gtk_label_set_text(GTK_LABEL(mainwin->ac_label), ac_name);
2637         if (mainwin->ac_button)
2638                 gtk_widget_queue_resize(mainwin->ac_button);
2639
2640         g_free(ac_name);
2641 }
2642 #ifndef GENERIC_UMPC
2643 static void main_window_separation_change(MainWindow *mainwin, LayoutType layout_mode)
2644 {
2645         GtkWidget *folder_wid  = GTK_WIDGET_PTR(mainwin->folderview);
2646         GtkWidget *summary_wid = GTK_WIDGET_PTR(mainwin->summaryview);
2647         GtkWidget *message_wid = mainwin->messageview->vbox;
2648
2649         if (layout_mode == prefs_common.layout_mode) 
2650                 return;
2651
2652         debug_print("Changing window separation type from %d to %d\n",
2653                     prefs_common.layout_mode, layout_mode);
2654
2655         /* remove widgets from those containers */
2656         g_object_ref(folder_wid);
2657         g_object_ref(summary_wid);
2658         g_object_ref(message_wid);
2659         gtkut_container_remove
2660                 (GTK_CONTAINER(gtk_widget_get_parent(folder_wid)), folder_wid);
2661         gtkut_container_remove
2662                 (GTK_CONTAINER(gtk_widget_get_parent(summary_wid)), summary_wid);
2663         gtkut_container_remove
2664                 (GTK_CONTAINER(gtk_widget_get_parent(message_wid)), message_wid);
2665
2666         gtk_widget_hide(mainwin->window);
2667         main_window_set_widgets(mainwin, layout_mode);
2668         gtk_widget_show(mainwin->window);
2669
2670         g_object_unref(folder_wid);
2671         g_object_unref(summary_wid);
2672         g_object_unref(message_wid);
2673 }
2674 #endif
2675 void mainwindow_reset_paned(GtkPaned *paned)
2676 {
2677                 gint min, max, mid;
2678
2679                 if (gtk_paned_get_child1(GTK_PANED(paned)))
2680                         gtk_widget_show(gtk_paned_get_child1(GTK_PANED(paned)));
2681                 if (gtk_paned_get_child2(GTK_PANED(paned)))
2682                         gtk_widget_show(gtk_paned_get_child2(GTK_PANED(paned)));
2683
2684 GTK_EVENTS_FLUSH();
2685                 g_object_get (G_OBJECT(paned),
2686                                 "min-position",
2687                                 &min, NULL);
2688                 g_object_get (G_OBJECT(paned),
2689                                 "max-position",
2690                                 &max, NULL);
2691                 mid = (min+max)/2;
2692                 gtk_paned_set_position(GTK_PANED(paned), mid);
2693 }
2694
2695 static void mainwin_paned_show_first(GtkPaned *paned)
2696 {
2697                 gint max;
2698                 g_object_get (G_OBJECT(paned),
2699                                 "max-position",
2700                                 &max, NULL);
2701
2702                 if (gtk_paned_get_child1(GTK_PANED(paned)))
2703                         gtk_widget_show(gtk_paned_get_child1(GTK_PANED(paned)));
2704                 if (gtk_paned_get_child2(GTK_PANED(paned)))
2705                         gtk_widget_hide(gtk_paned_get_child2(GTK_PANED(paned)));
2706                 gtk_paned_set_position(GTK_PANED(paned), max);
2707 }
2708
2709 static void mainwin_paned_show_last(GtkPaned *paned)
2710 {
2711                 gint min;
2712                 g_object_get (G_OBJECT(paned),
2713                                 "min-position",
2714                                 &min, NULL);
2715
2716                 if (gtk_paned_get_child1(GTK_PANED(paned)))
2717                         gtk_widget_hide(gtk_paned_get_child1(GTK_PANED(paned)));
2718                 if (gtk_paned_get_child2(GTK_PANED(paned)))
2719                         gtk_widget_show(gtk_paned_get_child2(GTK_PANED(paned)));
2720                 gtk_paned_set_position(GTK_PANED(paned), min);
2721 }
2722
2723 void main_window_toggle_message_view(MainWindow *mainwin)
2724 {
2725         SummaryView *summaryview = mainwin->summaryview;
2726         GtkWidget *ppaned = NULL;
2727         GtkWidget *container = NULL;
2728
2729         switch (prefs_common.layout_mode) {
2730         case NORMAL_LAYOUT:
2731         case VERTICAL_LAYOUT:
2732         case SMALL_LAYOUT:
2733                 ppaned = mainwin->vpaned;
2734                 container = mainwin->hpaned;
2735                 if (gtk_widget_get_parent(ppaned) != NULL) {
2736                         mainwin->messageview->visible = FALSE;
2737                         summaryview->displayed = NULL;
2738                         g_object_ref(ppaned);
2739                         gtkut_container_remove(GTK_CONTAINER(container), ppaned);
2740                         gtk_widget_reparent(GTK_WIDGET_PTR(summaryview), container);
2741                 } else {
2742                         mainwin->messageview->visible = TRUE;
2743                         gtk_widget_reparent(GTK_WIDGET_PTR(summaryview), ppaned);
2744                         gtk_container_add(GTK_CONTAINER(container), ppaned);
2745                         g_object_unref(ppaned);
2746                 }
2747                 break;
2748         case WIDE_LAYOUT:
2749                 container = mainwin->vpaned;
2750                 if (gtk_widget_get_parent(mainwin->messageview->vbox) != NULL) {
2751                         mainwin->messageview->visible = FALSE;
2752                         summaryview->displayed = NULL;
2753                         g_object_ref(mainwin->messageview->vbox);
2754                         gtkut_container_remove(GTK_CONTAINER(container), mainwin->messageview->vbox);
2755                 } else {
2756                         mainwin->messageview->visible = TRUE;
2757                         gtk_container_add(GTK_CONTAINER(container), mainwin->messageview->vbox);
2758                         g_object_unref(mainwin->messageview->vbox);
2759                 }
2760                 break;
2761         case WIDE_MSGLIST_LAYOUT:
2762                 g_warning("can't hide messageview in this wide msglist layout");
2763                 break;
2764         }
2765
2766         if (messageview_is_visible(mainwin->messageview))
2767                 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
2768                               GTK_ARROW_DOWN, GTK_SHADOW_OUT);
2769         else
2770                 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
2771                               GTK_ARROW_UP, GTK_SHADOW_OUT);
2772
2773         if (mainwin->messageview->visible == FALSE)
2774                 messageview_clear(mainwin->messageview);
2775
2776         main_window_set_menu_sensitive(mainwin);
2777
2778         prefs_common.msgview_visible = mainwin->messageview->visible;
2779
2780         if (messageview_is_visible(mainwin->messageview)) {
2781                 gtk_widget_queue_resize(mainwin->hpaned);
2782                 gtk_widget_queue_resize(mainwin->vpaned);
2783         }
2784         summary_grab_focus(summaryview);
2785         if (!summary_is_list(summaryview)) {
2786                 summary_show(summaryview, summaryview->folder_item);
2787         }
2788 }
2789
2790 void main_window_get_size(MainWindow *mainwin)
2791 {
2792         GtkAllocation allocation;
2793
2794         if (mainwin_list == NULL || mainwin->messageview == NULL) {
2795                 debug_print("called after messageview "
2796                             "has been deallocated!\n");
2797                 return;
2798         }
2799
2800         if (prefs_common.mainwin_fullscreen) {
2801                 debug_print("mainwin in full screen state. "
2802                             "Keeping original settings\n");
2803         }
2804
2805         gtk_widget_get_allocation(GTK_WIDGET_PTR(mainwin->summaryview), &allocation);
2806         if (allocation.width > 1 && allocation.height > 1 && !prefs_common.mainwin_fullscreen) {
2807                 prefs_common.summaryview_width = allocation.width;
2808
2809                 if (messageview_is_visible(mainwin->messageview))
2810                         prefs_common.summaryview_height = allocation.height;
2811
2812                 prefs_common.mainview_width = allocation.width;
2813         }
2814
2815         gtk_widget_get_allocation(mainwin->window, &allocation);
2816         if (allocation.width > 1 && allocation.height > 1 &&
2817             !prefs_common.mainwin_maximised && !prefs_common.mainwin_fullscreen) {
2818                 prefs_common.mainview_height = allocation.height;
2819                 prefs_common.mainwin_width   = allocation.width;
2820                 prefs_common.mainwin_height  = allocation.height;
2821         }
2822
2823         gtk_widget_get_allocation(GTK_WIDGET_PTR(mainwin->folderview), &allocation);
2824         if (allocation.width > 1 && allocation.height > 1 &&
2825             !prefs_common.mainwin_fullscreen) {
2826                 prefs_common.folderview_width  = allocation.width;
2827                 prefs_common.folderview_height = allocation.height;
2828         }
2829         
2830         gtk_widget_get_allocation(GTK_WIDGET_PTR(mainwin->messageview), &allocation);
2831         if (allocation.width > 1 && allocation.height > 1 &&
2832             !prefs_common.mainwin_fullscreen) {
2833                 prefs_common.msgview_width = allocation.width;
2834                 prefs_common.msgview_height = allocation.height;
2835         }
2836
2837 /*      debug_print("summaryview size: %d x %d\n",
2838                     prefs_common.summaryview_width,
2839                     prefs_common.summaryview_height);
2840         debug_print("folderview size: %d x %d\n",
2841                     prefs_common.folderview_width,
2842                     prefs_common.folderview_height);
2843         debug_print("messageview size: %d x %d\n",
2844                     prefs_common.msgview_width,
2845                     prefs_common.msgview_height); */
2846 }
2847
2848 void main_window_get_position(MainWindow *mainwin)
2849 {
2850         gint x, y;
2851
2852         if (prefs_common.mainwin_maximised || prefs_common.mainwin_fullscreen)
2853                 return;
2854
2855         gtkut_widget_get_uposition(mainwin->window, &x, &y);
2856
2857         prefs_common.mainview_x = x;
2858         prefs_common.mainview_y = y;
2859         prefs_common.mainwin_x = x;
2860         prefs_common.mainwin_y = y;
2861
2862         debug_print("main window position: %d, %d\n", x, y);
2863 }
2864
2865 void main_window_progress_on(MainWindow *mainwin)
2866 {
2867         gtk_progress_bar_set_text(GTK_PROGRESS_BAR(mainwin->progressbar), "");
2868 }
2869
2870 void main_window_progress_off(MainWindow *mainwin)
2871 {
2872         gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(mainwin->progressbar), 0.0);
2873         gtk_progress_bar_set_text(GTK_PROGRESS_BAR(mainwin->progressbar), "");
2874 }
2875
2876 gboolean main_window_empty_trash(MainWindow *mainwin, gboolean confirm, gboolean for_quit)
2877 {
2878         if (confirm && procmsg_have_trashed_mails_fast()) {
2879                 AlertValue val;
2880                 
2881                 if (for_quit)
2882                         val = alertpanel(_("Empty trash"),
2883                                _("Delete all messages in trash folders?"),
2884                                GTK_STOCK_NO, GTK_STOCK_YES, _("Don't quit"),
2885                                                  ALERTFOCUS_SECOND);
2886                 else
2887                         val = alertpanel(_("Empty trash"),
2888                                _("Delete all messages in trash folders?"),
2889                                GTK_STOCK_NO, GTK_STOCK_YES, NULL,
2890                                                  ALERTFOCUS_SECOND);
2891                 if (val == G_ALERTALTERNATE) {
2892                         debug_print("will empty trash\n");
2893                 } else if (val == G_ALERTDEFAULT) {
2894                         debug_print("will not empty trash\n");
2895                         return TRUE;
2896                 } else {
2897                         return FALSE; /* cancel exit */
2898                 }
2899                 manage_window_focus_in(mainwin->window, NULL, NULL);
2900         }
2901
2902         procmsg_empty_all_trash();
2903
2904         if (mainwin->summaryview->folder_item &&
2905             mainwin->summaryview->folder_item->stype == F_TRASH)
2906                 folderview_grab_focus(mainwin->folderview);
2907         return TRUE;
2908 }
2909
2910 static void main_window_add_mailbox(MainWindow *mainwin)
2911 {
2912         gchar *path;
2913         Folder *folder;
2914
2915         path = input_dialog(_("Add mailbox"),
2916                             _("Input the location of mailbox.\n"
2917                               "If an existing mailbox is specified, it will be\n"
2918                               "scanned automatically."),
2919                             "Mail");
2920         if (!path) return;
2921         if (folder_find_from_path(path)) {
2922                 alertpanel_error(_("The mailbox '%s' already exists."), path);
2923                 g_free(path);
2924                 return;
2925         }
2926         folder = folder_new(folder_get_class_from_string("mh"), 
2927                             !strcmp(path, "Mail") ? _("Mailbox") : 
2928                             g_path_get_basename(path), path);
2929         g_free(path);
2930
2931         if (folder->klass->create_tree(folder) < 0) {
2932                 alertpanel_error(_("Creation of the mailbox failed.\n"
2933                                    "Maybe some files already exist, or you don't have the permission to write there."));
2934                 folder_destroy(folder);
2935                 return;
2936         }
2937
2938         folder_add(folder);
2939         folder_set_ui_func(folder, scan_tree_func, mainwin);
2940         folder_scan_tree(folder, TRUE);
2941         folder_set_ui_func(folder, NULL, NULL);
2942 }
2943
2944 SensitiveCondMask main_window_get_current_state(MainWindow *mainwin)
2945 {
2946         SensitiveCondMask state = 0;
2947         SummarySelection selection;
2948         FolderItem *item = mainwin->summaryview->folder_item;
2949         GList *account_list = account_get_list();
2950         GSList *tmp;
2951         
2952         selection = summary_get_selection_type(mainwin->summaryview);
2953
2954 #define UPDATE_STATE(...) \
2955         do { \
2956                 state |= main_window_get_mask(__VA_ARGS__, -1); \
2957         } while (0)
2958
2959         if (mainwin->lock_count == 0 && !claws_is_starting())
2960                 UPDATE_STATE(M_UNLOCKED);
2961         if (selection != SUMMARY_NONE && selection != SUMMARY_SELECTED_NONE)
2962                 UPDATE_STATE(M_MSG_EXIST);
2963         if (item && item->path && folder_item_parent(item) && !item->no_select) {
2964                 UPDATE_STATE(M_EXEC);
2965                 /*              if (item->folder->type != F_NEWS) */
2966                 UPDATE_STATE(M_ALLOW_DELETE);
2967
2968                 if (prefs_common.immediate_exec == 0
2969                     && mainwin->lock_count == 0)
2970                         UPDATE_STATE(M_DELAY_EXEC);
2971
2972                 if ((selection == SUMMARY_NONE && item->hide_read_msgs)
2973                     || selection != SUMMARY_NONE)
2974                         UPDATE_STATE(M_HIDE_READ_MSG);
2975
2976                 if ((selection == SUMMARY_NONE && item->hide_read_threads)
2977                     || selection != SUMMARY_NONE)
2978                         UPDATE_STATE(M_HIDE_READ_THREADS);
2979         }               
2980         if (mainwin->summaryview->threaded)
2981                 UPDATE_STATE(M_THREADED);
2982         else
2983                 UPDATE_STATE(M_UNTHREADED);
2984         if (selection == SUMMARY_SELECTED_SINGLE ||
2985             selection == SUMMARY_SELECTED_MULTIPLE)
2986                 UPDATE_STATE(M_TARGET_EXIST);
2987         if (selection == SUMMARY_SELECTED_SINGLE)
2988                 UPDATE_STATE(M_SINGLE_TARGET_EXIST);
2989         if (mainwin->summaryview->folder_item &&
2990             mainwin->summaryview->folder_item->folder->klass->type == F_NEWS)
2991                 UPDATE_STATE(M_NEWS);
2992         else
2993                 UPDATE_STATE(M_NOT_NEWS);
2994         if (mainwin->summaryview->folder_item &&
2995             (mainwin->summaryview->folder_item->stype != F_TRASH ||
2996              !folder_has_parent_of_type(mainwin->summaryview->folder_item, F_TRASH)))
2997                 UPDATE_STATE(M_NOT_TRASH);
2998
2999         if (mainwin->summaryview->folder_item
3000             && mainwin->summaryview->folder_item->stype != F_DRAFT)
3001                 UPDATE_STATE(M_NOT_DRAFT);
3002
3003         if (prefs_common.actions_list && g_slist_length(prefs_common.actions_list))
3004                 UPDATE_STATE(M_ACTIONS_EXIST);
3005
3006         tmp = tags_get_list();
3007         if (tmp && g_slist_length(tmp))
3008                 UPDATE_STATE(M_TAGS_EXIST);
3009         g_slist_free(tmp);
3010
3011         if (procmsg_have_queued_mails_fast() && !procmsg_is_sending())
3012                 UPDATE_STATE(M_HAVE_QUEUED_MAILS);
3013
3014         if (selection == SUMMARY_SELECTED_SINGLE &&
3015             (item &&
3016              (folder_has_parent_of_type(item, F_DRAFT) ||
3017               folder_has_parent_of_type(item, F_OUTBOX) ||
3018               folder_has_parent_of_type(item, F_QUEUE))))
3019                 UPDATE_STATE(M_ALLOW_REEDIT);
3020         if (cur_account)
3021                 UPDATE_STATE(M_HAVE_ACCOUNT);
3022         
3023         if (cur_account && cur_account->protocol != A_NONE)
3024                 UPDATE_STATE(M_HAVE_RETRIEVABLE_ACCOUNT);
3025
3026         if (any_folder_want_synchronise())
3027                 UPDATE_STATE(M_WANT_SYNC);
3028
3029         if (item && item->prefs->processing && selection != SUMMARY_NONE)
3030                 UPDATE_STATE(M_HAVE_PROCESSING);
3031
3032         if (g_list_length(account_list) > 1)
3033                 UPDATE_STATE(M_HAVE_MULTI_ACCOUNT);
3034
3035         for (account_list = account_get_list(); account_list != NULL; account_list = account_list->next) {
3036                 if (((PrefsAccount*)account_list->data)->protocol != A_NONE) {
3037                         UPDATE_STATE(M_HAVE_ANY_RETRIEVABLE_ACCOUNT);
3038                         break;
3039                 }
3040         }
3041
3042         for (account_list = account_get_list(); account_list != NULL; account_list = account_list->next) {
3043                 if (((PrefsAccount*)account_list->data)->protocol == A_NNTP) {
3044                         UPDATE_STATE(M_HAVE_NEWS_ACCOUNT);
3045                         break;
3046                 }
3047         }
3048         
3049         if (procmsg_spam_can_learn() &&
3050             (mainwin->summaryview->folder_item &&
3051              mainwin->summaryview->folder_item->folder->klass->type != F_UNKNOWN &&
3052              mainwin->summaryview->folder_item->folder->klass->type != F_NEWS)) {
3053                 UPDATE_STATE(M_CAN_LEARN_SPAM);
3054         }
3055
3056         if (mainwin->summaryview->folder_item) {
3057                 UPDATE_STATE(M_FOLDER_SELECTED);
3058         }
3059
3060         if (inc_is_active())
3061                 UPDATE_STATE(M_INC_ACTIVE);
3062         if (imap_cancel_all_enabled())
3063                 UPDATE_STATE(M_INC_ACTIVE);
3064
3065         if (send_is_active() | procmsg_is_sending())
3066                 UPDATE_STATE(M_SEND_ACTIVE);
3067
3068         if (mainwin->summaryview->deleted > 0)
3069                 UPDATE_STATE(M_DELETED_EXISTS);
3070
3071         if (mainwin->summaryview->deleted > 0 ||
3072             mainwin->summaryview->moved > 0 ||
3073             mainwin->summaryview->copied > 0)
3074                 UPDATE_STATE(M_DELAY_EXEC);
3075
3076         if (summary_is_list(mainwin->summaryview))
3077                 UPDATE_STATE(M_SUMMARY_ISLIST);
3078
3079         if (prefs_common.layout_mode != SMALL_LAYOUT || mainwin->in_folder)
3080                 UPDATE_STATE(M_IN_MSGLIST);
3081
3082         for (account_list = account_get_list(); account_list != NULL; account_list = account_list->next) {
3083                 PrefsAccount *account = account_list->data;
3084                 if (account->session_passwd || account->session_smtp_passwd) {
3085                         UPDATE_STATE(M_SESSION_PASSWORDS);
3086                         break;
3087                 }
3088         }
3089
3090 #ifndef PASSWORD_CRYPTO_OLD
3091         if (master_passphrase_is_entered()) {
3092                 UPDATE_STATE(M_MASTER_PASSPHRASE);
3093         }
3094 #endif
3095 #undef UPDATE_STATE
3096
3097         return state;
3098 }
3099
3100 SensitiveCondMask main_window_get_mask(SensitiveCond cond, ...)
3101 {
3102         va_list args;
3103         gint i;
3104         SensitiveCondMask value;
3105         static SensitiveCondMask SensitiveCond_table[M_MAX_RESERVED];
3106         static gboolean first_time = TRUE;
3107
3108         if (first_time) {
3109                 for (i = 0; i < M_MAX_RESERVED; i++)
3110                         SensitiveCond_table[i] = (SensitiveCondMask) ((SensitiveCondMask)1 << i);
3111                 first_time = FALSE;
3112         }
3113
3114         value = 0;
3115
3116         va_start(args, cond); 
3117         for (i = (gint) cond; i >= 0; i = va_arg(args, gint))
3118                 value |= SensitiveCond_table[i];
3119         va_end(args);
3120
3121         return value;
3122 }
3123
3124 void main_window_set_menu_sensitive(MainWindow *mainwin)
3125 {
3126         SensitiveCondMask state;
3127         gboolean sensitive;
3128         SummaryView *summaryview;
3129         gchar *menu_path;
3130         GtkWidget *menu;
3131         GList *children, *cur_item;
3132         gint i;
3133         gboolean mimepart_selected = FALSE;
3134
3135 #define N_ENTRIES 88
3136         static struct {
3137                 const gchar *entry;
3138                 SensitiveCondMask cond;
3139         } entry[N_ENTRIES];
3140
3141         i = 0;
3142 #define FILL_TABLE(entry_str, ...) \
3143 do { \
3144         entry[i].entry = (const gchar *) entry_str; entry[i++].cond = main_window_get_mask(__VA_ARGS__, -1); \
3145 } while (0)
3146
3147         FILL_TABLE("Menu/File/SaveAs", M_TARGET_EXIST);
3148         FILL_TABLE("Menu/File/SavePartAs", M_SINGLE_TARGET_EXIST);
3149         FILL_TABLE("Menu/File/Print", M_TARGET_EXIST);
3150         FILL_TABLE("Menu/File/SynchroniseFolders", M_WANT_SYNC);
3151         FILL_TABLE("Menu/File/Exit", M_UNLOCKED);
3152
3153         FILL_TABLE("Menu/Edit/SelectThread", M_TARGET_EXIST, M_SUMMARY_ISLIST);
3154         FILL_TABLE("Menu/Edit/Find", M_SINGLE_TARGET_EXIST);
3155         FILL_TABLE("Menu/Edit/QuickSearch", M_IN_MSGLIST);
3156         FILL_TABLE("Menu/Edit/SearchFolder", M_TARGET_EXIST, M_SUMMARY_ISLIST);
3157
3158         FILL_TABLE("Menu/View/SetColumns/Folderlist", M_UNLOCKED, M_SUMMARY_ISLIST);
3159         FILL_TABLE("Menu/View/Sort", M_EXEC, M_SUMMARY_ISLIST);
3160         FILL_TABLE("Menu/View/ThreadView", M_EXEC, M_SUMMARY_ISLIST);
3161         FILL_TABLE("Menu/View/ExpandThreads", M_MSG_EXIST, M_SUMMARY_ISLIST);
3162         FILL_TABLE("Menu/View/CollapseThreads", M_MSG_EXIST, M_SUMMARY_ISLIST);
3163         FILL_TABLE("Menu/View/HideReadThreads", M_HIDE_READ_THREADS, M_SUMMARY_ISLIST, M_NOT_DRAFT);
3164         FILL_TABLE("Menu/View/HideReadMessages", M_HIDE_READ_MSG, M_SUMMARY_ISLIST, M_NOT_DRAFT);
3165         FILL_TABLE("Menu/View/HideDelMessages", M_SUMMARY_ISLIST, M_NOT_DRAFT);
3166         FILL_TABLE("Menu/View/Goto/Prev", M_MSG_EXIST);
3167         FILL_TABLE("Menu/View/Goto/Next", M_MSG_EXIST);
3168         FILL_TABLE("Menu/View/Goto/PrevUnread", M_MSG_EXIST);
3169         FILL_TABLE("Menu/View/Goto/NextUnread", M_MSG_EXIST);
3170         FILL_TABLE("Menu/View/Goto/PrevNew", M_MSG_EXIST);
3171         FILL_TABLE("Menu/View/Goto/NextNew", M_MSG_EXIST);
3172         FILL_TABLE("Menu/View/Goto/PrevMarked", M_MSG_EXIST);
3173         FILL_TABLE("Menu/View/Goto/NextMarked", M_MSG_EXIST);
3174         FILL_TABLE("Menu/View/Goto/PrevLabeled", M_MSG_EXIST);
3175         FILL_TABLE("Menu/View/Goto/NextLabeled", M_MSG_EXIST);
3176         FILL_TABLE("Menu/View/Goto/ParentMessage", M_SINGLE_TARGET_EXIST);
3177         FILL_TABLE("Menu/View/Goto/NextPart", M_SINGLE_TARGET_EXIST);
3178         FILL_TABLE("Menu/View/Goto/PrevPart", M_SINGLE_TARGET_EXIST);
3179         FILL_TABLE("Menu/View/OpenNewWindow", M_SINGLE_TARGET_EXIST);
3180         FILL_TABLE("Menu/View/MessageSource", M_SINGLE_TARGET_EXIST);
3181         FILL_TABLE("Menu/View/Part", M_SINGLE_TARGET_EXIST);
3182         FILL_TABLE("Menu/View/AllHeaders", M_SINGLE_TARGET_EXIST);
3183         FILL_TABLE("Menu/View/Quotes", M_SINGLE_TARGET_EXIST);
3184
3185         FILL_TABLE("Menu/Message/Receive/CurrentAccount", M_HAVE_ACCOUNT, M_UNLOCKED, M_HAVE_RETRIEVABLE_ACCOUNT);
3186         FILL_TABLE("Menu/Message/Receive/AllAccounts", M_HAVE_ACCOUNT, M_UNLOCKED, M_HAVE_ANY_RETRIEVABLE_ACCOUNT);
3187         FILL_TABLE("Menu/Message/Receive/CancelReceiving", M_INC_ACTIVE);
3188         FILL_TABLE("Menu/Message/SendQueue", M_HAVE_ACCOUNT, M_HAVE_QUEUED_MAILS);
3189         FILL_TABLE("Menu/Message/CancelSending", M_SEND_ACTIVE);
3190         FILL_TABLE("Menu/Message/ComposeEmail", M_HAVE_ACCOUNT);
3191         FILL_TABLE("Menu/Message/ComposeNews", M_HAVE_NEWS_ACCOUNT);
3192         FILL_TABLE("Menu/Message/Reply", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_SUMMARY_ISLIST);
3193         FILL_TABLE("Menu/Message/ReplyTo", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_SUMMARY_ISLIST);
3194         FILL_TABLE("Menu/Message/FollowupReply", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_NEWS, M_SUMMARY_ISLIST);
3195         FILL_TABLE("Menu/Message/Forward", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_SUMMARY_ISLIST);
3196         FILL_TABLE("Menu/Message/ForwardAtt", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_SUMMARY_ISLIST);
3197         FILL_TABLE("Menu/Message/Redirect", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_SUMMARY_ISLIST);
3198         FILL_TABLE("Menu/Message/Move", M_TARGET_EXIST, M_ALLOW_DELETE, M_NOT_NEWS);
3199         FILL_TABLE("Menu/Message/Copy", M_TARGET_EXIST, M_EXEC);
3200         FILL_TABLE("Menu/Message/Trash", M_TARGET_EXIST, M_ALLOW_DELETE, M_NOT_NEWS, M_NOT_TRASH);
3201         FILL_TABLE("Menu/Message/Delete", M_TARGET_EXIST, M_ALLOW_DELETE);
3202         FILL_TABLE("Menu/Message/TrashThread", M_TARGET_EXIST, M_SUMMARY_ISLIST);
3203         FILL_TABLE("Menu/Message/DeleteThread", M_TARGET_EXIST, M_SUMMARY_ISLIST);
3204         FILL_TABLE("Menu/Message/CancelNews", M_TARGET_EXIST, M_ALLOW_DELETE, M_NEWS);
3205         FILL_TABLE("Menu/Message/Mark", M_TARGET_EXIST, M_SUMMARY_ISLIST);
3206         FILL_TABLE("Menu/Message/Mark/MarkSpam", M_TARGET_EXIST, M_CAN_LEARN_SPAM);
3207         FILL_TABLE("Menu/Message/Mark/MarkHam", M_TARGET_EXIST, M_CAN_LEARN_SPAM);
3208         FILL_TABLE("Menu/Message/Mark/IgnoreThread", M_TARGET_EXIST);
3209         FILL_TABLE("Menu/Message/Mark/UnignoreThread", M_TARGET_EXIST);
3210         FILL_TABLE("Menu/Message/Mark/Lock", M_TARGET_EXIST);
3211         FILL_TABLE("Menu/Message/Mark/Unlock", M_TARGET_EXIST);
3212         FILL_TABLE("Menu/Message/ColorLabel", M_TARGET_EXIST);
3213         FILL_TABLE("Menu/Message/Tags", M_TARGET_EXIST);
3214         FILL_TABLE("Menu/Message/Reedit", M_HAVE_ACCOUNT, M_ALLOW_REEDIT);
3215         FILL_TABLE("Menu/Message/CheckSignature", M_SINGLE_TARGET_EXIST);
3216
3217         FILL_TABLE("Menu/Tools/AddSenderToAB", M_SINGLE_TARGET_EXIST);
3218         FILL_TABLE("Menu/Tools/CollectAddresses", M_FOLDER_SELECTED);
3219         FILL_TABLE("Menu/Tools/CollectAddresses/FromFolder", M_FOLDER_SELECTED);
3220         FILL_TABLE("Menu/Tools/CollectAddresses/FromSelected", M_TARGET_EXIST);
3221         FILL_TABLE("Menu/Tools/FilterFolder", M_MSG_EXIST, M_EXEC);
3222         FILL_TABLE("Menu/Tools/FilterSelected", M_TARGET_EXIST, M_EXEC);
3223         FILL_TABLE("Menu/Tools/RunProcessing", M_HAVE_PROCESSING);
3224         FILL_TABLE("Menu/Tools/CreateFilterRule", M_SINGLE_TARGET_EXIST, M_UNLOCKED);
3225         FILL_TABLE("Menu/Tools/CreateProcessingRule", M_SINGLE_TARGET_EXIST, M_UNLOCKED);
3226         FILL_TABLE("Menu/Tools/ListUrls", M_TARGET_EXIST);
3227         FILL_TABLE("Menu/Tools/Actions", M_TARGET_EXIST, M_ACTIONS_EXIST);
3228         FILL_TABLE("Menu/Tools/Execute", M_DELAY_EXEC);
3229         FILL_TABLE("Menu/Tools/Expunge", M_DELETED_EXISTS);
3230         FILL_TABLE("Menu/Tools/ForgetSessionPasswords", M_SESSION_PASSWORDS);
3231 #ifndef PASSWORD_CRYPTO_OLD
3232         FILL_TABLE("Menu/Tools/ForgetMasterPassphrase", M_MASTER_PASSPHRASE);
3233 #endif
3234         FILL_TABLE("Menu/Tools/DeleteDuplicates/SelFolder", M_MSG_EXIST, M_ALLOW_DELETE);
3235
3236         FILL_TABLE("Menu/Configuration", M_UNLOCKED);
3237         FILL_TABLE("Menu/Configuration/ChangeAccount", M_HAVE_MULTI_ACCOUNT);
3238         FILL_TABLE("Menu/Configuration/AccountPrefs", M_UNLOCKED);
3239         FILL_TABLE("Menu/Configuration/CreateAccount", M_UNLOCKED);
3240         FILL_TABLE("Menu/Configuration/EditAccounts", M_UNLOCKED);
3241         FILL_TABLE(NULL, -1);
3242 #undef FILL_TABLE
3243         if (i > N_ENTRIES)
3244                 g_error("main window menu entry table overrun (%d/%d)", i, N_ENTRIES);
3245 #undef ENTRIES
3246
3247         state = main_window_get_current_state(mainwin);
3248
3249         for (i = 0; entry[i].entry != NULL; i++) {
3250                 sensitive = ((entry[i].cond & state) == entry[i].cond);
3251                 cm_menu_set_sensitive_full(mainwin->ui_manager, entry[i].entry, sensitive);
3252         }
3253
3254         menu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(
3255                 gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/Receive")));
3256
3257         children = gtk_container_get_children(GTK_CONTAINER(menu));
3258         for (cur_item = children; cur_item != NULL; cur_item = cur_item->next) {
3259                 if (cur_item->data == gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/Receive/Separator1")) {
3260                         cur_item = cur_item->next;
3261                         break;
3262                 }
3263         }
3264
3265         for (; cur_item != NULL; cur_item = cur_item->next) {
3266                 gtk_widget_set_sensitive(GTK_WIDGET(cur_item->data),
3267                                          (main_window_get_mask(M_UNLOCKED, -1) & state) != 0);
3268         }
3269
3270         g_list_free(children);
3271
3272         main_window_menu_callback_block(mainwin);
3273
3274         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/ShowHide/MessageView",
3275                               messageview_is_visible(mainwin->messageview));
3276
3277         summaryview = mainwin->summaryview;
3278
3279         switch (summaryview->sort_key) {
3280         case SORT_BY_NUMBER:
3281                 menu_path = "Menu/View/Sort/Number"; break;
3282         case SORT_BY_SIZE:
3283                 menu_path = "Menu/View/Sort/Size"; break;
3284         case SORT_BY_DATE:
3285                 menu_path = "Menu/View/Sort/Date"; break;
3286         case SORT_BY_THREAD_DATE:
3287                 menu_path = "Menu/View/Sort/ThreadDate"; break;
3288         case SORT_BY_FROM:
3289                 menu_path = "Menu/View/Sort/From"; break;
3290         case SORT_BY_TO:
3291                 menu_path = "Menu/View/Sort/To"; break;
3292         case SORT_BY_SUBJECT:
3293                 menu_path = "Menu/View/Sort/Subject"; break;
3294         case SORT_BY_LABEL:
3295                 menu_path = "Menu/View/Sort/Color"; break;
3296         case SORT_BY_MARK:
3297                 menu_path = "Menu/View/Sort/Mark"; break;
3298         case SORT_BY_STATUS:
3299                 menu_path = "Menu/View/Sort/Status"; break;
3300         case SORT_BY_MIME:
3301                 menu_path = "Menu/View/Sort/Attachment"; break;
3302         case SORT_BY_SCORE:
3303                 menu_path = "Menu/View/Sort/Score"; break;
3304         case SORT_BY_LOCKED:
3305                 menu_path = "Menu/View/Sort/Locked"; break;
3306         case SORT_BY_TAGS:
3307                 menu_path = "Menu/View/Sort/Tag"; break;
3308         case SORT_BY_NONE:
3309         default:
3310                 menu_path = "Menu/View/Sort/DontSort"; break;
3311         }
3312         cm_toggle_menu_set_active_full(mainwin->ui_manager, menu_path, TRUE);
3313
3314         if (summaryview->sort_type == SORT_ASCENDING) {
3315                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Sort/Ascending", TRUE);
3316         } else {
3317                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Sort/Descending", TRUE);
3318         }
3319
3320         if (summaryview->sort_key != SORT_BY_NONE) {
3321                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Sort/Ascending", TRUE);
3322                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Sort/Descending", TRUE);
3323         } else {
3324                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Sort/Ascending", FALSE);
3325                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Sort/Descending", FALSE);
3326         }
3327
3328         if (mainwin->messageview
3329         &&  mainwin->messageview->mimeview
3330         &&  mainwin->messageview->mimeview->textview)
3331                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/AllHeaders",
3332                                                 prefs_common.show_all_headers);
3333         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/ThreadView", (state & main_window_get_mask(M_THREADED, -1)) != 0);
3334         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/ExpandThreads", (state & main_window_get_mask(M_THREADED, -1)) != 0);
3335         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/CollapseThreads", (state & main_window_get_mask(M_THREADED, -1)) != 0);
3336         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/HideReadThreads", (state & main_window_get_mask(M_THREADED, -1)) != 0 && (state & main_window_get_mask(M_NOT_DRAFT, -1)) != 0);
3337         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/CollapseAll", (prefs_common.hide_quotes == 1));
3338         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/Collapse2", (prefs_common.hide_quotes == 2));
3339         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/Collapse3", (prefs_common.hide_quotes == 3));
3340
3341         if (mainwin->summaryview->folder_item && !mainwin->summaryview->folder_item->threaded)
3342                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/HideReadThreads", FALSE);
3343         if ((mainwin->summaryview->folder_item && mainwin->summaryview->folder_item->hide_read_msgs) ||
3344             quicksearch_has_sat_predicate(mainwin->summaryview->quicksearch))
3345                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/HideReadThreads", FALSE);
3346         if ((mainwin->summaryview->folder_item && mainwin->summaryview->folder_item->hide_read_threads) ||
3347             quicksearch_has_sat_predicate(mainwin->summaryview->quicksearch))
3348                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/HideReadMessages", FALSE);
3349         if (quicksearch_has_sat_predicate(mainwin->summaryview->quicksearch))
3350                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/HideDelMessages", FALSE);
3351
3352         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Goto/PrevHistory",
3353                 messageview_nav_has_prev(mainwin->messageview));
3354         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Goto/NextHistory",
3355                 messageview_nav_has_next(mainwin->messageview));
3356
3357         if (mainwin->messageview 
3358         &&  mainwin->messageview->mimeview)
3359                 mimepart_selected = !mimeview_tree_is_empty(mainwin->messageview->mimeview);
3360
3361         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/File/SavePartAs", mimepart_selected);
3362         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Goto/NextPart", mimepart_selected);
3363         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Goto/PrevPart", mimepart_selected);
3364         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Part", mimepart_selected);
3365         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/CheckSignature", 
3366                                    mimepart_selected && mainwin->messageview->mimeview->signed_part);
3367
3368         sensitive = TRUE;
3369         if (mimepart_selected) {
3370                 MimeInfo *partinfo = messageview_get_selected_mime_part(mainwin->messageview);
3371
3372                 if (partinfo && (partinfo->type == MIMETYPE_MESSAGE ||
3373                                  partinfo->type == MIMETYPE_IMAGE ||
3374                                  partinfo->type == MIMETYPE_MULTIPART)) {
3375                         sensitive = FALSE;
3376                 }
3377         }
3378         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Part/AsText", sensitive);
3379
3380         main_window_menu_callback_unblock(mainwin);
3381 }
3382
3383 void main_create_mailing_list_menu (MainWindow *mainwin, MsgInfo *msginfo)
3384 {
3385         gint is_menu = 0;
3386         
3387         if (msginfo) 
3388                 is_menu = mailing_list_create_submenu (mainwin, msginfo);
3389         if (is_menu)
3390                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList", TRUE);
3391         else
3392                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList", FALSE);
3393 }
3394
3395 static gint mailing_list_create_submenu (MainWindow *mainwin, MsgInfo *msginfo)
3396 {
3397         gint menu_nb = 0;
3398         GtkWidget *menuitem;
3399         
3400         if (!msginfo || !msginfo->extradata) {
3401                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/Post", FALSE);
3402                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/Help", FALSE);
3403                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/Subscribe", FALSE);
3404                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/Unsubscribe", FALSE);
3405                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/ViewArchive", FALSE);
3406                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/ContactOwner", FALSE);
3407                 return 0;
3408         }
3409                 
3410         /* Mailing list post */
3411         if (!strcmp2 (msginfo->extradata->list_post, "NO")) {
3412                 g_free(msginfo->extradata->list_post);
3413                 msginfo->extradata->list_post = g_strdup (_("No posting allowed"));
3414         }
3415         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/Post");
3416                 
3417         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_post);
3418  
3419         /* Mailing list help */
3420         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/Help");
3421         
3422         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_help);
3423
3424         /* Mailing list subscribe */
3425         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/Subscribe");
3426         
3427         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_subscribe);
3428                 
3429         /* Mailing list unsubscribe */
3430         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/Unsubscribe");
3431         
3432         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_unsubscribe);
3433         
3434         /* Mailing list view archive */
3435         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/ViewArchive");
3436         
3437         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_archive);
3438         
3439         /* Mailing list contact owner */
3440         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/ContactOwner");
3441         
3442         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_owner);
3443         
3444         return menu_nb;
3445 }
3446
3447 static gint mailing_list_populate_submenu (GtkWidget *menuitem, const gchar * list_header)
3448 {
3449         GtkWidget *item, *menu;
3450         const gchar *url_pt ;
3451         gchar url_decoded[BUFFSIZE];
3452         GList *children, *amenu;
3453         gint menu_nb = 0;
3454         
3455         menu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(menuitem));
3456         
3457         /* First delete old submenu */
3458         /* FIXME: we can optimize this, and only change/add/delete necessary items */
3459         children = gtk_container_get_children(GTK_CONTAINER(menu));
3460         for (amenu = children; amenu; amenu = amenu->next) {
3461                 item = GTK_WIDGET (amenu->data);
3462                 gtk_widget_destroy (item);
3463         }
3464         g_list_free(children);
3465         if (list_header) {
3466                 for (url_pt = list_header; url_pt && *url_pt;) {
3467                         get_url_part (&url_pt, url_decoded);
3468                         item = NULL;
3469                         if (!g_ascii_strncasecmp(url_decoded, "mailto:", 7)) {
3470                                 item = cm_menu_item_new_label_from_url ((url_decoded));
3471                                 g_signal_connect(G_OBJECT(item), "activate",
3472                                                  G_CALLBACK(mailing_list_compose),
3473                                                  NULL);
3474                         }
3475                         else if (!g_ascii_strncasecmp(url_decoded, "http:", 5) ||
3476                                  !g_ascii_strncasecmp(url_decoded, "https:",6)) {
3477
3478                                 item = cm_menu_item_new_label_from_url ((url_decoded));
3479                                 g_signal_connect(G_OBJECT(item), "activate",
3480                                                  G_CALLBACK(mailing_list_open_uri),
3481                                                  NULL);
3482                         } 
3483                         if (item) {
3484                                 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
3485                                 gtk_widget_show (item);
3486                                 menu_nb++;
3487                         }
3488                 }
3489         }
3490         if (menu_nb)
3491                 gtk_widget_set_sensitive (menuitem, TRUE);
3492         else
3493                 gtk_widget_set_sensitive (menuitem, FALSE);
3494                 
3495
3496         return menu_nb;
3497 }
3498
3499 static void get_url_part (const gchar **buffer, gchar *url_decoded)
3500 {
3501         gchar tmp[BUFFSIZE];
3502         const gchar *buf;
3503         gint i = 0;
3504         buf = *buffer;
3505         gboolean with_plus = TRUE;
3506
3507         if (buf == 0x00) {
3508                 *url_decoded = '\0';
3509                 *buffer = NULL;
3510                 return;
3511         }
3512         /* Ignore spaces, comments  and tabs () */
3513         for (;*buf == ' ' || *buf == '(' || *buf == '\t'; buf++)
3514                 if (*buf == '(')
3515                         for (;*buf != ')' && *buf != 0x00; buf++);
3516         
3517         /* First non space and non comment must be a < */
3518         if (*buf =='<' ) {
3519                 buf++;
3520                 if (!strncmp(buf, "mailto:", strlen("mailto:")))
3521                         with_plus = FALSE;
3522                 for (i = 0;
3523                      *buf != '>' && *buf != 0x00 && i < BUFFSIZE;
3524                         tmp[i++] = *(buf++));
3525                 if (*buf == 0) {
3526                         *buffer = NULL;
3527                         *url_decoded = '\0';
3528                         return;
3529                 }
3530                 buf++;
3531         }
3532         else  {
3533                 *buffer = NULL;
3534                 *url_decoded = '\0';
3535                 return;
3536         }
3537         
3538         *url_decoded = '\0';
3539         *buffer = NULL;
3540         
3541         if (i == BUFFSIZE) {
3542                 return;
3543         }
3544         tmp[i] = 0x00;
3545         decode_uri_with_plus (url_decoded, (const gchar *)tmp, with_plus);
3546
3547         /* Prepare the work for the next url in the list */
3548         /* after the closing bracket >, ignore space, comments and tabs */
3549         for (;buf && *buf && (*buf == ' ' || *buf == '(' || *buf == '\t'); buf++)
3550                 if (*buf == '(')
3551                         for (;*buf != ')' && *buf != 0x00; buf++);
3552                         
3553         if (!buf || !*buf) {
3554                 *buffer = NULL;
3555                 return;
3556         }
3557
3558         /* now first non space, non comment must be a comma */
3559         if (*buf != ',')
3560                 for (;*buf != 0x00; buf++);
3561         else
3562                 buf++;
3563         *buffer = buf;
3564 }
3565         
3566 static void mailing_list_compose (GtkWidget *w, gpointer *data)
3567 {
3568         const gchar *mailto;
3569         PrefsAccount *account = NULL;
3570         FolderItem   *folder_item = NULL;
3571
3572         mailto = gtk_label_get_text(GTK_LABEL (gtk_bin_get_child(GTK_BIN((w)))));
3573         if (mainwindow_get_mainwindow()) {
3574                 folder_item = mainwindow_get_mainwindow()->summaryview->folder_item;
3575                 if (folder_item && folder_item->prefs && folder_item->prefs->enable_default_account)
3576                         account = account_find_from_id(folder_item->prefs->default_account);
3577                 if (folder_item && !account)
3578                         account = account_find_from_item(folder_item);
3579         }
3580         if (mailto)
3581                 compose_new_with_folderitem(account, folder_item, mailto+7);
3582 }
3583  
3584  static void mailing_list_open_uri (GtkWidget *w, gpointer *data)
3585 {
3586  
3587         const gchar *mailto;
3588  
3589         mailto = gtk_label_get_text(GTK_LABEL (gtk_bin_get_child(GTK_BIN((w)))));
3590         if (mailto)
3591                 open_uri (mailto, prefs_common_get_uri_cmd());
3592
3593         
3594 static void fix_folderview_scroll(MainWindow *mainwin)
3595 {
3596         static gboolean fix_done = FALSE;
3597
3598         if (fix_done)
3599                 return;
3600
3601         gtk_widget_queue_resize(mainwin->folderview->ctree);
3602
3603         fix_done = TRUE;
3604 }
3605
3606 void main_window_popup(MainWindow *mainwin)
3607 {
3608         static gboolean first_start = TRUE;
3609
3610         if (!gtk_widget_get_visible(GTK_WIDGET(mainwin->window)))
3611                 main_window_show(mainwin);
3612
3613         if (prefs_common.mainwin_maximised)
3614                 gtk_window_maximize(GTK_WINDOW(mainwin->window));
3615
3616         if (first_start) {
3617                 first_start = FALSE;
3618         } else {
3619                 gtkut_window_popup(mainwin->window);
3620         }
3621
3622         if (prefs_common.layout_mode == SMALL_LAYOUT) {
3623                 if (mainwin->in_folder) {
3624                         mainwindow_enter_folder(mainwin);
3625                 } else {
3626                         mainwindow_exit_folder(mainwin);
3627                 }
3628         }
3629         fix_folderview_scroll(mainwin);
3630 }
3631
3632 void main_window_show(MainWindow *mainwin)
3633 {
3634         gtk_widget_show(mainwin->window);
3635         gtk_widget_show(mainwin->vbox_body);
3636 #ifndef GENERIC_UMPC
3637         gtk_window_move(GTK_WINDOW(mainwin->window),
3638                                  prefs_common.mainwin_x,
3639                                  prefs_common.mainwin_y);
3640         
3641         gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->folderview),
3642                              prefs_common.folderview_width,
3643                              prefs_common.folderview_height);
3644         gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->summaryview),
3645                              prefs_common.summaryview_width,
3646                              prefs_common.summaryview_height);
3647         gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->messageview),
3648                              prefs_common.msgview_width,
3649                              prefs_common.msgview_height);
3650 #endif
3651 }
3652
3653 void main_window_hide(MainWindow *mainwin)
3654 {
3655         main_window_get_size(mainwin);
3656         main_window_get_position(mainwin);
3657
3658         gtk_widget_hide(mainwin->window);
3659         gtk_widget_hide(mainwin->vbox_body);
3660 }
3661
3662 static void main_window_set_widgets(MainWindow *mainwin, LayoutType layout_mode)
3663 {
3664         GtkWidget *folderwin = NULL;
3665         GtkWidget *messagewin = NULL;
3666         GtkWidget *hpaned;
3667         GtkWidget *vpaned;
3668         GtkWidget *vbox_body = mainwin->vbox_body;
3669         gboolean first_set = (mainwin->hpaned == NULL);
3670         debug_print("Setting widgets...\n");
3671
3672 #ifndef GENERIC_UMPC
3673         mainwin->messageview->statusbar = mainwin->statusbar;
3674         mainwin->messageview->statusbar_cid = mainwin->messageview_cid;
3675 #endif
3676         /* clean top-most container */
3677         if (mainwin->hpaned) {
3678                 if (gtk_widget_get_parent(mainwin->hpaned) == mainwin->vpaned)
3679                         gtk_widget_destroy(mainwin->vpaned);
3680                 else
3681                         gtk_widget_destroy(mainwin->hpaned);
3682         }
3683
3684         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/ShowHide/MessageView", 
3685                 (layout_mode != WIDE_MSGLIST_LAYOUT && layout_mode != SMALL_LAYOUT));
3686         switch (layout_mode) {
3687         case VERTICAL_LAYOUT:
3688         case NORMAL_LAYOUT:
3689         case SMALL_LAYOUT:
3690                 hpaned = gtk_hpaned_new();
3691                 if (layout_mode == VERTICAL_LAYOUT)
3692                         vpaned = gtk_hpaned_new();
3693                 else
3694                         vpaned = gtk_vpaned_new();
3695                 gtk_box_pack_start(GTK_BOX(vbox_body), hpaned, TRUE, TRUE, 0);
3696                 gtk_paned_add1(GTK_PANED(hpaned),
3697                                GTK_WIDGET_PTR(mainwin->folderview));
3698                 gtk_widget_show(hpaned);
3699                 gtk_widget_queue_resize(hpaned);
3700
3701                 if (messageview_is_visible(mainwin->messageview)) {
3702                         gtk_paned_add2(GTK_PANED(hpaned), vpaned);
3703                         gtk_paned_pack1(GTK_PANED(vpaned),
3704                                        GTK_WIDGET_PTR(mainwin->summaryview), TRUE, TRUE);
3705                 } else {
3706                         gtk_paned_add2(GTK_PANED(hpaned),
3707                                        GTK_WIDGET_PTR(mainwin->summaryview));
3708                         g_object_ref(vpaned);
3709                 }
3710                 gtk_paned_add2(GTK_PANED(vpaned),
3711                                GTK_WIDGET_PTR(mainwin->messageview));
3712                 gtk_widget_show(vpaned);
3713                 if (layout_mode == SMALL_LAYOUT && first_set) {
3714                         mainwin_paned_show_first(GTK_PANED(hpaned));
3715                 }
3716                 gtk_widget_queue_resize(vpaned);
3717                 break;
3718         case WIDE_LAYOUT:
3719                 vpaned = gtk_vpaned_new();
3720                 hpaned = gtk_hpaned_new();
3721                 gtk_box_pack_start(GTK_BOX(vbox_body), vpaned, TRUE, TRUE, 0);
3722                 gtk_paned_add1(GTK_PANED(vpaned), hpaned);
3723
3724                 gtk_paned_add1(GTK_PANED(hpaned),
3725                                GTK_WIDGET_PTR(mainwin->folderview));
3726                 gtk_paned_add2(GTK_PANED(hpaned),
3727                                GTK_WIDGET_PTR(mainwin->summaryview));
3728
3729                 gtk_widget_show(hpaned);
3730                 gtk_widget_queue_resize(hpaned);
3731
3732                 if (messageview_is_visible(mainwin->messageview)) {
3733                         gtk_paned_add2(GTK_PANED(vpaned),
3734                                GTK_WIDGET_PTR(mainwin->messageview));   
3735                 } else {
3736                         g_object_ref(GTK_WIDGET_PTR(mainwin->messageview));
3737                 }
3738                 gtk_widget_show(vpaned);
3739                 gtk_widget_queue_resize(vpaned);
3740                 break;
3741         case WIDE_MSGLIST_LAYOUT:
3742                 vpaned = gtk_vpaned_new();
3743                 hpaned = gtk_hpaned_new();
3744                 gtk_box_pack_start(GTK_BOX(vbox_body), vpaned, TRUE, TRUE, 0);
3745
3746                 gtk_paned_add1(GTK_PANED(vpaned),
3747                                GTK_WIDGET_PTR(mainwin->summaryview));
3748                 gtk_paned_add1(GTK_PANED(hpaned),
3749                                GTK_WIDGET_PTR(mainwin->folderview));
3750
3751                 gtk_widget_show(hpaned);
3752                 gtk_widget_queue_resize(hpaned);
3753
3754                 if (messageview_is_visible(mainwin->messageview)) {
3755                         gtk_paned_add2(GTK_PANED(hpaned),
3756                                GTK_WIDGET_PTR(mainwin->messageview));   
3757                 } else {
3758                         g_object_ref(GTK_WIDGET_PTR(mainwin->messageview));
3759                 }
3760                 gtk_paned_add2(GTK_PANED(vpaned), hpaned);
3761
3762                 gtk_widget_show(vpaned);
3763                 gtk_widget_queue_resize(vpaned);
3764                 break;
3765         default:
3766                 g_warning("Unknown layout");
3767                 return;
3768         }
3769
3770         mainwin->hpaned = hpaned;
3771         mainwin->vpaned = vpaned;
3772
3773         if (layout_mode == SMALL_LAYOUT) {
3774                 if (mainwin->messageview->visible)
3775                         main_window_toggle_message_view(mainwin);
3776         } 
3777
3778         if (layout_mode == SMALL_LAYOUT && first_set) {
3779                 gtk_widget_realize(mainwin->window);
3780                 gtk_widget_realize(mainwin->folderview->ctree);
3781                 gtk_widget_realize(mainwin->summaryview->hbox);
3782                 gtk_widget_realize(mainwin->summaryview->hbox_l);
3783                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->folderview),
3784                                     prefs_common.folderview_width,
3785                                     prefs_common.folderview_height);
3786                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->summaryview),
3787                                     0,0);
3788                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->messageview),
3789                                     0,0);
3790                 gtk_widget_set_size_request(GTK_WIDGET(mainwin->window),
3791                                 prefs_common.mainwin_width,
3792                                 prefs_common.mainwin_height);
3793                 gtk_paned_set_position(GTK_PANED(mainwin->hpaned), 800);
3794         } else {
3795                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->folderview),
3796                                     prefs_common.folderview_width,
3797                                     prefs_common.folderview_height);
3798                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->summaryview),
3799                                     prefs_common.summaryview_width,
3800                                     prefs_common.summaryview_height);
3801                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->messageview),
3802                                     prefs_common.msgview_width,
3803                                     prefs_common.msgview_height);
3804                 gtk_widget_set_size_request(GTK_WIDGET(mainwin->window),
3805                                     prefs_common.mainwin_width,
3806                                     prefs_common.mainwin_height);
3807         } 
3808         /* remove headerview if not in prefs */
3809         headerview_set_visibility(mainwin->messageview->headerview,
3810                                   prefs_common.display_header_pane);
3811
3812         if (messageview_is_visible(mainwin->messageview))
3813                 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
3814                               GTK_ARROW_DOWN, GTK_SHADOW_OUT);
3815         else
3816                 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
3817                               GTK_ARROW_UP, GTK_SHADOW_OUT);
3818
3819         gtk_window_move(GTK_WINDOW(mainwin->window),
3820                         prefs_common.mainwin_x,
3821                         prefs_common.mainwin_y);
3822
3823         gtk_widget_queue_resize(vbox_body);
3824         gtk_widget_queue_resize(mainwin->vbox);
3825         gtk_widget_queue_resize(mainwin->window);
3826         /* CLAWS: previous "gtk_widget_show_all" makes noticeview
3827          * and mimeview icon list/ctree lose track of their visibility states */
3828         if (!noticeview_is_visible(mainwin->messageview->noticeview)) 
3829                 gtk_widget_hide(GTK_WIDGET_PTR(mainwin->messageview->noticeview));
3830         if (!noticeview_is_visible(mainwin->messageview->mimeview->siginfoview)) 
3831                 gtk_widget_hide(GTK_WIDGET_PTR(mainwin->messageview->mimeview->siginfoview));
3832         if (mainwin->messageview->mimeview->ctree_mode)
3833                 gtk_widget_hide(mainwin->messageview->mimeview->icon_mainbox);
3834         else 
3835                 gtk_widget_hide(mainwin->messageview->mimeview->ctree_mainbox);
3836
3837         prefs_common.layout_mode = layout_mode;
3838
3839         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/ShowHide/MessageView", 
3840                  messageview_is_visible(mainwin->messageview));
3841
3842 #ifndef GENERIC_UMPC
3843         switch (prefs_common.layout_mode) {
3844         case NORMAL_LAYOUT:
3845                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/Standard", TRUE);
3846                 break;
3847         case VERTICAL_LAYOUT:
3848                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/ThreeColumns", TRUE);
3849                 break;
3850         case WIDE_LAYOUT:
3851                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/WideMessage", TRUE);
3852                 break;
3853         case WIDE_MSGLIST_LAYOUT:
3854                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/WideMessageList", TRUE);
3855                 break;
3856         case SMALL_LAYOUT:
3857                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/SmallScreen", TRUE);
3858                 break;
3859         }
3860 #endif
3861
3862         if (folderwin) {
3863                 g_signal_connect
3864                         (G_OBJECT(folderwin), "size_allocate",
3865                          G_CALLBACK(folder_window_size_allocate_cb),
3866                          mainwin);
3867         }
3868         if (messagewin) {
3869                 g_signal_connect
3870                         (G_OBJECT(messagewin), "size_allocate",
3871                          G_CALLBACK(message_window_size_allocate_cb),
3872                          mainwin);
3873         }
3874
3875         debug_print("Setting widgets done.\n");
3876 }
3877
3878 void main_window_destroy_all(void)
3879 {
3880         while (mainwin_list != NULL) {
3881                 MainWindow *mainwin = (MainWindow*)mainwin_list->data;
3882
3883                 /* free toolbar stuff */
3884                 toolbar_clear_list(TOOLBAR_MAIN);
3885                 toolbar_destroy(mainwin->toolbar);
3886
3887                 summaryview_destroy(mainwin->summaryview);
3888                 mainwin->folderview->mainwin = NULL;
3889                 mainwin->summaryview->mainwin = NULL;
3890                 mainwin->messageview->mainwin = NULL;
3891
3892                 g_free(mainwin->toolbar);
3893                 g_free(mainwin);
3894                 
3895                 mainwin_list = g_list_remove(mainwin_list, mainwin);
3896         }
3897         g_list_free(mainwin_list);
3898         mainwin_list = NULL;
3899 }
3900
3901 static void toolbar_child_attached(GtkWidget *widget, GtkWidget *child,
3902                                    gpointer data)
3903 {
3904         gtk_widget_set_size_request(child, 1, -1);
3905 }
3906
3907 static void toolbar_child_detached(GtkWidget *widget, GtkWidget *child,
3908                                    gpointer data)
3909 {
3910         gtk_widget_set_size_request(child, -1, -1);
3911 }
3912 #ifndef GENERIC_UMPC
3913 static gboolean ac_label_button_pressed(GtkWidget *widget, GdkEventButton *event,
3914                                     gpointer data)
3915 {
3916         MainWindow *mainwin = (MainWindow *)data;
3917         GtkWidget *menu = NULL;
3918         
3919         if (!event) return FALSE;
3920
3921         gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
3922         
3923         menu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(mainwin->ac_menu));
3924
3925         gtk_menu_popup(GTK_MENU(menu), NULL, NULL,
3926                        menu_button_position, widget,
3927                        event->button, event->time);
3928
3929         return TRUE;
3930 }
3931 #endif
3932 static gint main_window_close_cb(GtkWidget *widget, GdkEventAny *event,
3933                                  gpointer data)
3934 {
3935         MainWindow *mainwin = (MainWindow *)data;
3936         gboolean close_allowed = TRUE;
3937
3938         hooks_invoke(MAIN_WINDOW_CLOSE, &close_allowed);
3939
3940         if (close_allowed && mainwin->lock_count == 0)
3941                 app_exit_cb(NULL, data);
3942
3943         return TRUE;
3944 }
3945
3946 static void main_window_size_allocate_cb(GtkWidget *widget,
3947                                          GtkAllocation *allocation,
3948                                          gpointer data)
3949 {
3950         MainWindow *mainwin = (MainWindow *)data;
3951         main_window_get_size(mainwin);
3952 }
3953
3954 static void folder_window_size_allocate_cb(GtkWidget *widget,
3955                                            GtkAllocation *allocation,
3956                                            gpointer data)
3957 {
3958         MainWindow *mainwin = (MainWindow *)data;
3959
3960         main_window_get_size(mainwin);
3961 }
3962
3963 static void message_window_size_allocate_cb(GtkWidget *widget,
3964                                             GtkAllocation *allocation,
3965                                             gpointer data)
3966 {
3967         MainWindow *mainwin = (MainWindow *)data;
3968
3969         main_window_get_size(mainwin);
3970 }
3971
3972 static void add_mailbox_cb(GtkAction *action, gpointer data)
3973 {
3974         MainWindow *mainwin = (MainWindow *)data;
3975         main_window_add_mailbox(mainwin);
3976 }
3977
3978 static void update_folderview_cb(GtkAction *action, gpointer data)
3979 {
3980         MainWindow *mainwin = (MainWindow *)data;
3981         summary_show(mainwin->summaryview, NULL);
3982         folderview_check_new_all();
3983 }
3984
3985 static void foldersort_cb(GtkAction *action, gpointer data)
3986 {
3987         foldersort_open();
3988 }
3989
3990 static void import_mbox_cb(GtkAction *action, gpointer data)
3991 {
3992         MainWindow *mainwin = (MainWindow *)data;
3993         /* only notify if import has failed */
3994         if (import_mbox(mainwin->summaryview->folder_item) == -1) {
3995                 alertpanel_error(_("Mbox import has failed."));
3996         }
3997 }
3998
3999 static void export_mbox_cb(GtkAction *action, gpointer data)
4000 {
4001         MainWindow *mainwin = (MainWindow *)data;
4002         /* only notify if export has failed */
4003         if (export_mbox(mainwin->summaryview->folder_item) == -1) {
4004                 alertpanel_error(_("Export to mbox has failed."));
4005         }
4006 }
4007
4008 static void export_list_mbox_cb(GtkAction *action, gpointer data)
4009 {
4010         MainWindow *mainwin = (MainWindow *)data;
4011         /* only notify if export has failed */
4012         if (summaryview_export_mbox_list(mainwin->summaryview) == -1) {
4013                 alertpanel_error(_("Export to mbox has failed."));
4014         }
4015 }
4016
4017 static void empty_trash_cb(GtkAction *action, gpointer data)
4018 {
4019         MainWindow *mainwin = (MainWindow *)data;
4020         main_window_empty_trash(mainwin, TRUE, FALSE);
4021 }
4022
4023 static void save_as_cb(GtkAction *action, gpointer data)
4024 {
4025         MainWindow *mainwin = (MainWindow *)data;
4026         summary_save_as(mainwin->summaryview);
4027 }
4028
4029 static void print_cb(GtkAction *action, gpointer data)
4030 {
4031         MainWindow *mainwin = (MainWindow *)data;
4032         summary_print(mainwin->summaryview);
4033 }
4034
4035 static void page_setup_cb(GtkAction *action, gpointer data)
4036 {
4037         MainWindow *mainwin = (MainWindow *)data;
4038         GtkWindow *win;
4039
4040         win = (mainwin ? GTK_WINDOW(mainwin->window) : NULL);
4041
4042         printing_page_setup(win);
4043 }
4044
4045 static void app_exit_cb(GtkAction *action, gpointer data)
4046 {
4047         MainWindow *mainwin = (MainWindow *)data;
4048         if (prefs_common.clean_on_exit) {
4049                 if (!main_window_empty_trash(mainwin, prefs_common.ask_on_clean, TRUE))
4050                         return;
4051         }
4052
4053         if (prefs_common.confirm_on_exit) {
4054                 if (alertpanel(_("Exit"), _("Exit Claws Mail?"),
4055                                GTK_STOCK_CANCEL, GTK_STOCK_QUIT,  NULL, ALERTFOCUS_FIRST)
4056                     != G_ALERTALTERNATE)
4057                         return;
4058                 manage_window_focus_in(mainwin->window, NULL, NULL);
4059         }
4060
4061         app_will_exit(NULL, mainwin);
4062 }
4063
4064 static void search_cb(GtkAction *action, gpointer data)
4065 {
4066         MainWindow *mainwin = (MainWindow *)data;
4067         message_search(mainwin->messageview);
4068 }
4069
4070 static void search_folder_cb(GtkAction *action, gpointer data)
4071 {
4072         MainWindow *mainwin = (MainWindow *)data;
4073         FolderItem *item = mainwin->summaryview->folder_item;
4074         cm_return_if_fail(item != NULL);
4075         summary_search(mainwin->summaryview);
4076 }
4077
4078 static void mainwindow_quicksearch(GtkAction *action, gpointer data)
4079 {
4080         MainWindow *mainwin = (MainWindow *)data;
4081         summaryview_activate_quicksearch(mainwin->summaryview, TRUE);
4082 }
4083
4084 static void toggle_message_cb(GtkAction *action, gpointer data)
4085 {
4086         MainWindow *mainwin = (MainWindow *)data;
4087         gboolean active;
4088
4089         active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
4090
4091         if (active != messageview_is_visible(mainwin->messageview))
4092                 summary_toggle_view(mainwin->summaryview);
4093 }
4094
4095 static void toggle_toolbar_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4096 {
4097         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4098         MainWindow *mainwin = (MainWindow *)data;
4099         toolbar_toggle(value, mainwin);
4100 }
4101
4102 static void main_window_reply_cb(GtkAction *gaction, gpointer data)
4103 {
4104         MainWindow *mainwin = (MainWindow *)data;
4105         MessageView *msgview = (MessageView*)mainwin->messageview;
4106         GSList *msginfo_list = NULL;
4107         gint action = COMPOSE_REPLY;
4108         const gchar *a_name = gtk_action_get_name(gaction);
4109
4110         DO_ACTION("Message/Reply", COMPOSE_REPLY);
4111         DO_ACTION("Message/ReplyTo/All", COMPOSE_REPLY_TO_ALL);
4112         DO_ACTION("Message/ReplyTo/Sender", COMPOSE_REPLY_TO_SENDER);
4113         DO_ACTION("Message/ReplyTo/List", COMPOSE_REPLY_TO_LIST);
4114         DO_ACTION("Message/Forward", COMPOSE_FORWARD_INLINE);
4115         DO_ACTION("Message/ForwardAtt", COMPOSE_FORWARD_AS_ATTACH);
4116         DO_ACTION("Message/Redirect", COMPOSE_REDIRECT);
4117         DO_ACTION("Message/FollowupReply", COMPOSE_FOLLOWUP_AND_REPLY_TO);
4118
4119         cm_return_if_fail(msgview != NULL);
4120
4121         msginfo_list = summary_get_selection(mainwin->summaryview);
4122         cm_return_if_fail(msginfo_list != NULL);
4123
4124         if (summary_is_opened_message_selected(mainwin->summaryview)) {
4125                 compose_reply_from_messageview(msgview, msginfo_list, action);
4126         } else {
4127                 compose_reply_from_messageview(msgview, NULL, action);
4128         }
4129
4130         g_slist_free(msginfo_list);
4131 }
4132
4133 static void toggle_col_headers_cb(GtkAction *gaction, gpointer data)
4134 {
4135         MainWindow *mainwin = (MainWindow *)data;
4136         FolderView *folderview = mainwin->folderview;
4137         SummaryView *summaryview = mainwin->summaryview;
4138         MimeView *mimeview = mainwin->messageview->mimeview;
4139
4140         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (gaction))) {
4141                 gtk_cmclist_column_titles_show(GTK_CMCLIST(folderview->ctree));
4142                 gtk_cmclist_column_titles_show(GTK_CMCLIST(summaryview->ctree));
4143                 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(mimeview->ctree), TRUE);
4144                 prefs_common.show_col_headers = TRUE;
4145         } else {
4146                 gtk_cmclist_column_titles_hide(GTK_CMCLIST(folderview->ctree));
4147                 gtk_cmclist_column_titles_hide(GTK_CMCLIST(summaryview->ctree));
4148                 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(mimeview->ctree), FALSE);               
4149                 prefs_common.show_col_headers = FALSE;
4150         }
4151 }
4152
4153 #ifndef GENERIC_UMPC
4154 static void toggle_statusbar_cb(GtkAction *gaction, gpointer data)
4155 {
4156         MainWindow *mainwin = (MainWindow *)data;
4157         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (gaction))) {
4158                 gtk_widget_show(mainwin->hbox_stat);
4159                 prefs_common.show_statusbar = TRUE;
4160         } else {
4161                 gtk_widget_hide(mainwin->hbox_stat);
4162                 prefs_common.show_statusbar = FALSE;
4163         }
4164 }
4165
4166 static void set_layout_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4167 {
4168         MainWindow *mainwin = (MainWindow *)data;
4169         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4170         LayoutType layout_mode = value;
4171         LayoutType old_layout_mode = prefs_common.layout_mode;
4172         if (mainwin->menu_lock_count) {
4173                 return;
4174         }
4175         if (!gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current))) {
4176                 return;
4177         }
4178         
4179         if (layout_mode == prefs_common.layout_mode) {
4180                 return;
4181         }
4182         
4183         if (!mainwin->messageview->visible && layout_mode != SMALL_LAYOUT)
4184                 main_window_toggle_message_view(mainwin);
4185         else if (mainwin->messageview->visible && layout_mode == SMALL_LAYOUT)
4186                 main_window_toggle_message_view(mainwin);
4187
4188         main_window_separation_change(mainwin, layout_mode);
4189         mainwindow_reset_paned(GTK_PANED(mainwin->vpaned));
4190         if (old_layout_mode == SMALL_LAYOUT && layout_mode != SMALL_LAYOUT) {
4191                 mainwindow_reset_paned(GTK_PANED(mainwin->hpaned));
4192                 if (layout_mode == VERTICAL_LAYOUT)
4193                         mainwindow_reset_paned(GTK_PANED(mainwin->vpaned));
4194         }
4195         if (old_layout_mode != SMALL_LAYOUT && layout_mode == SMALL_LAYOUT) {
4196                 mainwin_paned_show_first(GTK_PANED(mainwin->hpaned));
4197                 mainwindow_exit_folder(mainwin);
4198         }
4199         summary_relayout(mainwin->summaryview); 
4200         summary_update_unread(mainwin->summaryview, NULL);
4201 }
4202 #endif
4203
4204 void main_window_toggle_work_offline (MainWindow *mainwin, gboolean offline,
4205                                         gboolean ask_sync)
4206 {
4207         static gboolean switching = FALSE;
4208
4209         if (switching)
4210                 return;
4211
4212         switching = TRUE;
4213
4214         offline_ask_sync = ask_sync;
4215         if (offline)
4216                 online_switch_clicked (GTK_BUTTON(mainwin->online_switch), mainwin);
4217         else
4218                 online_switch_clicked (GTK_BUTTON(mainwin->offline_switch), mainwin);
4219         offline_ask_sync = TRUE;
4220
4221         inc_reset_offline_override_timers();
4222
4223         switching = FALSE;
4224 }
4225
4226 static void toggle_work_offline_cb (GtkAction *action, gpointer data)
4227 {
4228         MainWindow *mainwin = (MainWindow *)data;
4229         main_window_toggle_work_offline(mainwin, gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)), TRUE);
4230 }
4231
4232 static gboolean any_folder_want_synchronise(void)
4233 {
4234         GList *folderlist = folder_get_list();
4235
4236         /* see if there are synchronised folders */
4237         for (; folderlist; folderlist = folderlist->next) {
4238                 Folder *folder = (Folder *)folderlist->data;
4239                 if (folder_want_synchronise(folder)) {
4240                         return TRUE;
4241                 }
4242         }
4243         
4244         return FALSE;
4245 }
4246
4247 static void mainwindow_check_synchronise(MainWindow *mainwin, gboolean ask)
4248 {
4249         
4250         if (!any_folder_want_synchronise())
4251                 return;
4252
4253         if (offline_ask_sync && ask && alertpanel(_("Folder synchronisation"),
4254                         _("Do you want to synchronise your folders now?"),
4255                         GTK_STOCK_CANCEL, _("_Synchronise"), NULL, ALERTFOCUS_SECOND) != G_ALERTALTERNATE)
4256                 return;
4257         
4258         if (offline_ask_sync)
4259                 folder_synchronise(NULL);
4260 }
4261
4262 static void online_switch_clicked (GtkButton *btn, gpointer data) 
4263 {
4264         MainWindow *mainwin;
4265         gboolean have_connectivity;
4266
4267 #ifdef HAVE_NETWORKMANAGER_SUPPORT
4268         have_connectivity = networkmanager_is_online(NULL); 
4269 #else
4270         have_connectivity = TRUE;
4271 #endif
4272
4273         mainwin = (MainWindow *) data;
4274         
4275         cm_return_if_fail(mainwin != NULL);
4276         
4277         if (btn == GTK_BUTTON(mainwin->online_switch)) {
4278 #ifndef GENERIC_UMPC
4279                 gtk_widget_hide (mainwin->online_switch);
4280                 gtk_widget_show (mainwin->offline_switch);
4281 #endif
4282                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/File/OfflineMode", TRUE);
4283
4284                 inc_autocheck_timer_remove();
4285                         
4286                 /* go offline */
4287                 if (prefs_common.work_offline)
4288                         return;
4289
4290                 if(have_connectivity)
4291                         mainwindow_check_synchronise(mainwin, TRUE);
4292                 prefs_common.work_offline = TRUE;
4293                 imap_disconnect_all(have_connectivity);
4294                 nntp_disconnect_all(have_connectivity);
4295                 hooks_invoke(OFFLINE_SWITCH_HOOKLIST, NULL);
4296         } else {
4297                 /*go online */
4298                 if (!prefs_common.work_offline)
4299                         return;
4300 #ifndef GENERIC_UMPC
4301                 gtk_widget_hide (mainwin->offline_switch);
4302                 gtk_widget_show (mainwin->online_switch);
4303 #endif
4304                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/File/OfflineMode", FALSE);
4305                 prefs_common.work_offline = FALSE;
4306                 inc_autocheck_timer_set();
4307                 refresh_resolvers();
4308                 hooks_invoke(OFFLINE_SWITCH_HOOKLIST, NULL);
4309         }
4310 }
4311
4312 static void addressbook_open_cb(GtkAction *action, gpointer data)
4313 {
4314 #ifndef USE_ALT_ADDRBOOK
4315         addressbook_open(NULL);
4316 #else
4317         GError* error = NULL;
4318         
4319         addressbook_dbus_open(FALSE, &error);
4320         if (error) {
4321                 g_warning("Failed to open address book: %s", error->message);
4322                 g_error_free(error);
4323         }
4324 #endif
4325 }
4326
4327 static void log_window_show_cb(GtkAction *action, gpointer data)
4328 {
4329         MainWindow *mainwin = (MainWindow *)data;
4330         log_window_show(mainwin->logwin);
4331 }
4332
4333 static void filtering_debug_window_show_cb(GtkAction *action, gpointer data)
4334 {
4335         MainWindow *mainwin = (MainWindow *)data;
4336         log_window_show(mainwin->filtering_debugwin);
4337 }
4338
4339 static void inc_cancel_cb(GtkAction *action, gpointer data)
4340 {
4341         inc_cancel_all();
4342         imap_cancel_all();
4343 }
4344
4345 static void send_cancel_cb(GtkAction *action, gpointer data)
4346 {
4347         send_cancel();
4348 }
4349
4350 static void move_to_cb(GtkAction *action, gpointer data)
4351 {
4352         MainWindow *mainwin = (MainWindow *)data;
4353         summary_move_to(mainwin->summaryview);
4354 }
4355
4356 static void copy_to_cb(GtkAction *action, gpointer data)
4357 {
4358         MainWindow *mainwin = (MainWindow *)data;
4359         summary_copy_to(mainwin->summaryview);
4360 }
4361
4362 static void delete_cb(GtkAction *action, gpointer data)
4363 {
4364         MainWindow *mainwin = (MainWindow *)data;
4365         summary_delete(mainwin->summaryview);
4366 }
4367
4368 static void delete_trash_cb(GtkAction *action, gpointer data)
4369 {
4370         MainWindow *mainwin = (MainWindow *)data;
4371         summary_delete_trash(mainwin->summaryview);
4372 }
4373
4374 static void cancel_cb(GtkAction *action, gpointer data)
4375 {
4376         MainWindow *mainwin = (MainWindow *)data;
4377         summary_cancel(mainwin->summaryview);
4378 }
4379
4380 static void open_msg_cb(GtkAction *action, gpointer data)
4381 {
4382         MainWindow *mainwin = (MainWindow *)data;
4383         summary_open_msg(mainwin->summaryview);
4384 }
4385
4386 static void view_source_cb(GtkAction *action, gpointer data)
4387 {
4388         MainWindow *mainwin = (MainWindow *)data;
4389         summary_view_source(mainwin->summaryview);
4390 }
4391
4392 static void show_all_header_cb(GtkAction *action, gpointer data)
4393 {
4394         MainWindow *mainwin = (MainWindow *)data;
4395         if (mainwin->menu_lock_count) return;
4396         prefs_common.show_all_headers = 
4397                         gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
4398         summary_display_msg_selected(mainwin->summaryview,
4399                                      gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)));
4400 }
4401
4402 static void toggle_fullscreen_cb(GtkAction *action, gpointer data)
4403 {
4404         MainWindow *mainwin = (MainWindow *)data;
4405         if (mainwin->menu_lock_count) return;
4406         if (!gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action))) {
4407                 gtk_window_unfullscreen(GTK_WINDOW(mainwin->window));
4408                 prefs_common.mainwin_fullscreen = FALSE;
4409         }
4410         else {
4411                 prefs_common.mainwin_fullscreen = TRUE;
4412                 gtk_window_fullscreen(GTK_WINDOW(mainwin->window));
4413         }
4414 }
4415
4416 static void toggle_menubar_cb(GtkAction *action, gpointer data)
4417 {
4418         MainWindow *mainwin = (MainWindow *)data;
4419         if (mainwin->menu_lock_count) return;
4420         if (!gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action))) {
4421                 gtk_widget_hide(GTK_WIDGET(mainwin->menubar));
4422                 prefs_common.mainwin_menubar = FALSE;
4423         } else {
4424                 gtk_widget_show(GTK_WIDGET(mainwin->menubar));
4425                 prefs_common.mainwin_menubar = TRUE;
4426         }
4427 }
4428
4429 static void hide_quotes_cb(GtkAction *action, gpointer data)
4430 {
4431         MainWindow *mainwin = (MainWindow *)data;
4432
4433         if (mainwin->menu_lock_count) return;
4434
4435         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action))) {
4436                 const gchar *a_name = gtk_action_get_name(GTK_ACTION(action));
4437                 if (!strcmp(a_name, "View/Quotes/CollapseAll")) prefs_common.hide_quotes = 1;
4438                 else if (!strcmp(a_name, "View/Quotes/Collapse2")) prefs_common.hide_quotes = 2;
4439                 else if (!strcmp(a_name, "View/Quotes/Collapse3")) prefs_common.hide_quotes = 3;
4440         } else
4441                 prefs_common.hide_quotes = 0;
4442
4443         mainwin->menu_lock_count++;
4444         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/CollapseAll", (prefs_common.hide_quotes == 1));
4445         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/Collapse2", (prefs_common.hide_quotes == 2));
4446         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/Collapse3", (prefs_common.hide_quotes == 3));
4447         mainwin->menu_lock_count--;
4448
4449         summary_redisplay_msg(mainwin->summaryview);
4450 }
4451
4452 static void mark_cb(GtkAction *action, gpointer data)
4453 {
4454         MainWindow *mainwin = (MainWindow *)data;
4455         summary_mark(mainwin->summaryview);
4456 }
4457
4458 static void unmark_cb(GtkAction *action, gpointer data)
4459 {
4460         MainWindow *mainwin = (MainWindow *)data;
4461         summary_unmark(mainwin->summaryview);
4462 }
4463
4464 static void mark_as_read_cb(GtkAction *action, gpointer data)
4465 {
4466         MainWindow *mainwin = (MainWindow *)data;
4467         summary_mark_as_read(mainwin->summaryview);
4468 }
4469
4470 static void mark_as_unread_cb(GtkAction *action, gpointer data)
4471 {
4472         MainWindow *mainwin = (MainWindow *)data;
4473         summary_mark_as_unread(mainwin->summaryview);
4474 }
4475
4476 static void mark_all_read_cb(GtkAction *action, gpointer data)
4477 {
4478         MainWindow *mainwin = (MainWindow *)data;
4479         summary_mark_all_read(mainwin->summaryview, TRUE);
4480 }
4481
4482 static void mark_all_unread_cb(GtkAction *action, gpointer data)
4483 {
4484         MainWindow *mainwin = (MainWindow *)data;
4485         summary_mark_all_unread(mainwin->summaryview, TRUE);
4486 }
4487
4488 static void mark_as_spam_cb(GtkAction *action, gpointer data)
4489 {
4490         MainWindow *mainwin = (MainWindow *)data;
4491         summary_mark_as_spam(mainwin->summaryview, TRUE, NULL);
4492 }
4493
4494 static void mark_as_ham_cb(GtkAction *action, gpointer data)
4495 {
4496         MainWindow *mainwin = (MainWindow *)data;
4497         summary_mark_as_spam(mainwin->summaryview, FALSE, NULL);
4498 }
4499
4500 static void ignore_thread_cb(GtkAction *action, gpointer data)
4501 {
4502         MainWindow *mainwin = (MainWindow *)data;
4503         summary_ignore_thread(mainwin->summaryview);
4504 }
4505
4506 static void unignore_thread_cb(GtkAction *action, gpointer data)
4507 {
4508         MainWindow *mainwin = (MainWindow *)data;
4509         summary_unignore_thread(mainwin->summaryview);
4510 }
4511
4512 static void watch_thread_cb(GtkAction *action, gpointer data)
4513 {
4514         MainWindow *mainwin = (MainWindow *)data;
4515         summary_watch_thread(mainwin->summaryview);
4516 }
4517
4518 static void unwatch_thread_cb(GtkAction *action, gpointer data)
4519 {
4520         MainWindow *mainwin = (MainWindow *)data;
4521         summary_unwatch_thread(mainwin->summaryview);
4522 }
4523
4524 static void lock_msgs_cb(GtkAction *action, gpointer data)
4525 {
4526         MainWindow *mainwin = (MainWindow *)data;
4527         summary_msgs_lock(mainwin->summaryview);
4528 }
4529
4530 static void unlock_msgs_cb(GtkAction *action, gpointer data)
4531 {
4532         MainWindow *mainwin = (MainWindow *)data;
4533         summary_msgs_unlock(mainwin->summaryview);
4534 }
4535
4536
4537 static void reedit_cb(GtkAction *action, gpointer data)
4538 {
4539         MainWindow *mainwin = (MainWindow *)data;
4540         summary_reedit(mainwin->summaryview);
4541 }
4542
4543 static void open_urls_cb(GtkAction *action, gpointer data)
4544 {
4545         MainWindow *mainwin = (MainWindow *)data;
4546         if (!mainwin->summaryview->displayed && mainwin->summaryview->selected) {
4547                 summary_display_msg_selected(mainwin->summaryview, 
4548                                              prefs_common.show_all_headers);
4549         }
4550         messageview_list_urls(mainwin->messageview);
4551 }
4552
4553 static void add_address_cb(GtkAction *action, gpointer data)
4554 {
4555         MainWindow *mainwin = (MainWindow *)data;
4556         summary_add_address(mainwin->summaryview);
4557 }
4558
4559 static void set_charset_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4560 {
4561         MainWindow *mainwin = (MainWindow *)data;
4562         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4563         const gchar *str;
4564
4565         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current))) {
4566                 str = conv_get_charset_str((CharSet)value);
4567                 
4568                 g_free(mainwin->messageview->forced_charset);
4569                 mainwin->messageview->forced_charset = str ? g_strdup(str) : NULL;
4570                 procmime_force_charset(str);
4571                 
4572                 summary_redisplay_msg(mainwin->summaryview);
4573                 
4574                 debug_print("forced charset: %s\n", str ? str : "Auto-Detect");
4575         }
4576 }
4577
4578 static void set_decode_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4579 {
4580         MainWindow *mainwin = (MainWindow *)data;
4581         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4582         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current))) {
4583                 mainwin->messageview->forced_encoding = (EncodingType)value;
4584                 
4585                 summary_redisplay_msg(mainwin->summaryview);
4586                 
4587                 debug_print("forced encoding: %d\n", value);
4588         }
4589 }
4590
4591 static void hide_read_messages (GtkAction *action, gpointer data)
4592 {
4593         MainWindow *mainwin = (MainWindow *)data;
4594         GtkWidget *menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/HideReadMessages");
4595         if (!mainwin->summaryview->folder_item
4596             || g_object_get_data(G_OBJECT(menuitem), "dont_toggle"))
4597                 return;
4598         summary_toggle_show_read_messages(mainwin->summaryview);
4599 }
4600
4601 static void hide_del_messages (GtkAction *action, gpointer data)
4602 {
4603         MainWindow *mainwin = (MainWindow *)data;
4604         GtkWidget *menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/HideDelMessages");
4605         if (!mainwin->summaryview->folder_item
4606             || g_object_get_data(G_OBJECT(menuitem), "dont_toggle"))
4607                 return;
4608         summary_toggle_show_del_messages(mainwin->summaryview);
4609 }
4610
4611 static void hide_read_threads (GtkAction *action, gpointer data)
4612 {
4613         MainWindow *mainwin = (MainWindow *)data;
4614         GtkWidget *menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/HideReadThreads");
4615         if (!mainwin->summaryview->folder_item
4616             || g_object_get_data(G_OBJECT(menuitem), "dont_toggle"))
4617                 return;
4618         summary_toggle_show_read_threads(mainwin->summaryview);
4619 }
4620
4621 static void thread_cb(GtkAction *action, gpointer data)
4622 {
4623         MainWindow *mainwin = (MainWindow *)data;
4624         gboolean threaded = FALSE;
4625         if (mainwin->menu_lock_count) return;
4626         if (!mainwin->summaryview->folder_item) return;
4627
4628         threaded = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
4629
4630         mainwin->summaryview->folder_item->threaded = threaded; 
4631
4632         mainwin->summaryview->threaded = threaded;
4633
4634         summary_show(mainwin->summaryview, 
4635                         mainwin->summaryview->folder_item);
4636 }
4637
4638 static void expand_threads_cb(GtkAction *action, gpointer data)
4639 {
4640         MainWindow *mainwin = (MainWindow *)data;
4641         summary_expand_threads(mainwin->summaryview);
4642 }
4643
4644 static void collapse_threads_cb(GtkAction *action, gpointer data)
4645 {
4646         MainWindow *mainwin = (MainWindow *)data;
4647         summary_collapse_threads(mainwin->summaryview);
4648 }
4649
4650 static void set_summary_display_item_cb(GtkAction *action, gpointer data)
4651 {
4652         prefs_summary_column_open();
4653 }
4654
4655 static void set_folder_display_item_cb(GtkAction *action, gpointer data)
4656 {
4657         prefs_folder_column_open();
4658 }
4659
4660 static void sort_summary_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4661 {
4662         MainWindow *mainwin = (MainWindow *)data;
4663         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4664
4665         if (mainwin->menu_lock_count) return;
4666
4667         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current))) {
4668                 summary_sort(mainwin->summaryview, (FolderSortKey)value,
4669                              mainwin->summaryview->sort_type);
4670         }
4671 }
4672
4673 static void sort_summary_type_cb(GtkAction *gaction, GtkRadioAction *current, gpointer data)
4674 {
4675         MainWindow *mainwin = (MainWindow *)data;
4676         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4677
4678         if (mainwin->menu_lock_count) return;
4679
4680         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current)))
4681                 summary_sort(mainwin->summaryview,
4682                              mainwin->summaryview->sort_key, (FolderSortType)value);
4683 }
4684
4685 static void attract_by_subject_cb(GtkAction *action, gpointer data)
4686 {
4687         MainWindow *mainwin = (MainWindow *)data;
4688         summary_attract_by_subject(mainwin->summaryview);
4689 }
4690
4691 void mainwindow_delete_duplicated(MainWindow *mainwin)
4692 {
4693         FolderItem *item;
4694
4695         item = folderview_get_selected_item(mainwin->folderview);
4696         if (item) {
4697                 gint result;
4698
4699                 main_window_cursor_wait(mainwin);
4700                 STATUSBAR_PUSH(mainwin, _("Deleting duplicated messages..."));
4701                 result = folderutils_delete_duplicates(item, prefs_common.immediate_exec ?
4702                                               DELETE_DUPLICATES_REMOVE : DELETE_DUPLICATES_SETFLAG);
4703                 STATUSBAR_POP(mainwin);
4704                 main_window_cursor_normal(mainwin);
4705
4706                 switch (result) {
4707                 case -1:
4708                         break;
4709                 case 0:
4710                         alertpanel_notice(_("No duplicate message found in selected folder.\n"));
4711                         break;
4712                 default: {
4713                                 gchar *msg;
4714
4715                                 if (prefs_common.immediate_exec) {
4716                                         msg = ngettext("Deleted %d duplicate message in selected folder.\n",
4717                                                                "Deleted %d duplicate messages in selected folder.\n",
4718                                                            result);
4719                                 } else {
4720                                         msg = ngettext("Marked %d duplicate message for deletion in selected folder.\n",
4721                                                                "Marked %d duplicate messages for deletion in selected folder.\n",
4722                                                            result);
4723                                 }
4724                                 alertpanel_notice(msg, result);
4725                         }
4726                 }
4727         }
4728 }
4729
4730 static void delete_duplicated_cb(GtkAction *action, gpointer data)
4731 {
4732         mainwindow_delete_duplicated((MainWindow *)data);
4733 }
4734
4735 struct DelDupsData
4736 {
4737         guint   dups;
4738         guint   folders;
4739 };
4740
4741 static void deldup_all(FolderItem *item, gpointer _data)
4742 {
4743         struct DelDupsData *data = _data;
4744         gint result;
4745         
4746         result = folderutils_delete_duplicates(item, DELETE_DUPLICATES_REMOVE);
4747         if (result >= 0) {
4748                 data->dups += result;
4749                 data->folders += 1;
4750         }
4751 }
4752
4753 void mainwindow_delete_duplicated_all(MainWindow *mainwin)
4754 {
4755         struct DelDupsData data = {0, 0};
4756
4757         main_window_cursor_wait(mainwin);
4758         STATUSBAR_PUSH(mainwin, _("Deleting duplicated messages in all folders..."));
4759         folder_func_to_all_folders(deldup_all, &data);
4760         STATUSBAR_POP(mainwin);
4761         main_window_cursor_normal(mainwin);
4762
4763         if (data.dups > 0) {
4764                 alertpanel_notice(ngettext("Deleted %d duplicate message in %d folders.\n",
4765                                    "Deleted %d duplicate messages in %d folders.\n",
4766                                    data.dups),
4767                                    data.dups, data.folders);
4768         } else {
4769                 alertpanel_notice(_("No duplicate message found in %d folders.\n"), data.folders);
4770         }
4771 }
4772
4773 static void delete_duplicated_all_cb(GtkAction *action, gpointer mw)
4774 {
4775         MainWindow *mainwin = (MainWindow *)mw;
4776
4777         mainwindow_delete_duplicated_all(mainwin);
4778 }
4779
4780 static void filter_cb(GtkAction *action, gpointer data)
4781 {
4782         MainWindow *mainwin = (MainWindow *)data;
4783         summary_filter(mainwin->summaryview, FALSE);
4784 }
4785
4786 static void filter_list_cb(GtkAction *action, gpointer data)
4787 {
4788         MainWindow *mainwin = (MainWindow *)data;
4789         summary_filter(mainwin->summaryview, TRUE);
4790 }
4791
4792 static void process_cb(GtkAction *action, gpointer data)
4793 {
4794         MainWindow *mainwin = (MainWindow *)data;
4795         FolderItem *item = mainwin->summaryview->folder_item;   
4796         cm_return_if_fail(item != NULL);
4797
4798         item->processing_pending = TRUE;
4799         folder_item_apply_processing(item);     
4800         item->processing_pending = FALSE;
4801 }
4802
4803 static void execute_summary_cb(GtkAction *action, gpointer data)
4804 {
4805         MainWindow *mainwin = (MainWindow *)data;
4806         summary_execute(mainwin->summaryview);
4807 }
4808
4809 static void expunge_summary_cb(GtkAction *action, gpointer data)
4810 {
4811         MainWindow *mainwin = (MainWindow *)data;
4812         summary_expunge(mainwin->summaryview);
4813 }
4814
4815 static void update_summary_cb(GtkAction *action, gpointer data)
4816 {
4817         MainWindow *mainwin = (MainWindow *)data;
4818         FolderItem *fitem;
4819         FolderView *folderview = mainwin->folderview;
4820
4821         if (!mainwin->summaryview->folder_item) return;
4822         if ((fitem = folderview_get_opened_item(folderview)) == NULL) return;
4823
4824         folder_update_op_count();
4825         folder_item_scan(fitem);
4826         summary_show(mainwin->summaryview, fitem);
4827 }
4828
4829 static void prev_cb(GtkAction *action, gpointer data)
4830 {
4831         MainWindow *mainwin = (MainWindow *)data;
4832         summary_select_prev(mainwin->summaryview);
4833 }
4834
4835 static void next_cb(GtkAction *action, gpointer data)
4836 {
4837         MainWindow *mainwin = (MainWindow *)data;
4838         summary_select_next(mainwin->summaryview);
4839 }
4840
4841 static void prev_unread_cb(GtkAction *action, gpointer data)
4842 {
4843         MainWindow *mainwin = (MainWindow *)data;
4844         summary_select_prev_unread(mainwin->summaryview);
4845 }
4846
4847 static void next_unread_cb(GtkAction *action, gpointer data)
4848 {
4849         MainWindow *mainwin = (MainWindow *)data;
4850         summary_select_next_unread(mainwin->summaryview);
4851 }
4852
4853 static void prev_new_cb(GtkAction *action, gpointer data)
4854 {
4855         MainWindow *mainwin = (MainWindow *)data;
4856         summary_select_prev_new(mainwin->summaryview);
4857 }
4858
4859 static void next_new_cb(GtkAction *action, gpointer data)
4860 {
4861         MainWindow *mainwin = (MainWindow *)data;
4862         summary_select_next_new(mainwin->summaryview);
4863 }
4864
4865 static void prev_marked_cb(GtkAction *action, gpointer data)
4866 {
4867         MainWindow *mainwin = (MainWindow *)data;
4868         summary_select_prev_marked(mainwin->summaryview);
4869 }
4870
4871 static void next_marked_cb(GtkAction *action, gpointer data)
4872 {
4873         MainWindow *mainwin = (MainWindow *)data;
4874         summary_select_next_marked(mainwin->summaryview);
4875 }
4876
4877 static void prev_labeled_cb(GtkAction *action, gpointer data)
4878 {
4879         MainWindow *mainwin = (MainWindow *)data;
4880         summary_select_prev_labeled(mainwin->summaryview);
4881 }
4882
4883 static void next_labeled_cb(GtkAction *action, gpointer data)
4884 {
4885         MainWindow *mainwin = (MainWindow *)data;
4886         summary_select_next_labeled(mainwin->summaryview);
4887 }
4888
4889 static void prev_history_cb(GtkAction *action, gpointer data)
4890 {
4891         MainWindow *mainwin = (MainWindow *)data;
4892         MsgInfo *info = messageview_nav_get_prev(mainwin->messageview);
4893         if (info) {
4894                 if (info->folder != mainwin->summaryview->folder_item)
4895                         folderview_select(mainwin->folderview, info->folder);
4896                 summary_select_by_msgnum(mainwin->summaryview, info->msgnum,
4897                                 OPEN_SELECTED_ON_PREVNEXT);
4898                 procmsg_msginfo_free(&info);
4899                 main_window_set_menu_sensitive(mainwindow_get_mainwindow());
4900                 toolbar_main_set_sensitive(mainwindow_get_mainwindow());
4901         }
4902 }
4903
4904 static void next_history_cb(GtkAction *action, gpointer data)
4905 {
4906         MainWindow *mainwin = (MainWindow *)data;
4907         MsgInfo *info = messageview_nav_get_next(mainwin->messageview);
4908         if (info) {
4909                 if (info->folder != mainwin->summaryview->folder_item)
4910                         folderview_select(mainwin->folderview, info->folder);
4911                 summary_select_by_msgnum(mainwin->summaryview, info->msgnum,
4912                                 OPEN_SELECTED_ON_PREVNEXT);
4913                 procmsg_msginfo_free(&info);
4914                 main_window_set_menu_sensitive(mainwindow_get_mainwindow());
4915                 toolbar_main_set_sensitive(mainwindow_get_mainwindow());
4916         }
4917 }
4918
4919 static void parent_cb(GtkAction *action, gpointer data)
4920 {
4921         MainWindow *mainwin = (MainWindow *)data;
4922         summary_select_parent(mainwin->summaryview);
4923 }
4924
4925 static void goto_folder_cb(GtkAction *action, gpointer data)
4926 {
4927         MainWindow *mainwin = (MainWindow *)data;
4928         FolderItem *to_folder;
4929
4930         to_folder = foldersel_folder_sel(NULL, FOLDER_SEL_ALL, NULL, FALSE,
4931                         _("Select folder to go to"));
4932
4933         if (to_folder)
4934                 folderview_select(mainwin->folderview, to_folder);
4935 }
4936
4937 static void goto_unread_folder_cb(GtkAction *action, gpointer data)
4938 {
4939         MainWindow *mainwin = (MainWindow *)data;
4940         folderview_select_next_with_flag(mainwin->folderview, MSG_UNREAD);
4941 }
4942
4943 static void scroll_prev_line_cb(GtkAction *action, gpointer data)
4944 {
4945         MainWindow *mainwin = (MainWindow *)data;
4946         mimeview_scroll_one_line(mainwin->messageview->mimeview,TRUE);
4947 }
4948
4949 static void scroll_next_line_cb(GtkAction *action, gpointer data)
4950 {
4951         MainWindow *mainwin = (MainWindow *)data;
4952         mimeview_scroll_one_line(mainwin->messageview->mimeview,FALSE);
4953 }
4954
4955 static void scroll_prev_page_cb(GtkAction *action, gpointer data)
4956 {
4957         MainWindow *mainwin = (MainWindow *)data;
4958         mimeview_scroll_page(mainwin->messageview->mimeview,TRUE);
4959 }
4960
4961 static void scroll_next_page_cb(GtkAction *action, gpointer data)
4962 {
4963         MainWindow *mainwin = (MainWindow *)data;
4964         mimeview_scroll_page(mainwin->messageview->mimeview,FALSE);
4965 }
4966
4967 static void copy_cb(GtkAction *action, gpointer data)
4968 {
4969         MainWindow *mainwin = (MainWindow *)data;
4970         messageview_copy_clipboard(mainwin->messageview);
4971 }
4972
4973 static void allsel_cb(GtkAction *action, gpointer data)
4974 {
4975         MainWindow *mainwin = (MainWindow *)data;
4976         MessageView *msgview = mainwin->messageview;
4977
4978         if (messageview_is_visible(msgview) &&
4979                  (gtk_widget_has_focus(msgview->mimeview->textview->text)))
4980                 messageview_select_all(mainwin->messageview);
4981         else
4982                 summary_select_all(mainwin->summaryview);
4983 }
4984
4985 static void select_thread_cb(GtkAction *action, gpointer data)
4986 {
4987         MainWindow *mainwin = (MainWindow *)data;
4988         summary_select_thread(mainwin->summaryview, FALSE, FALSE);
4989 }
4990
4991 static void trash_thread_cb(GtkAction *action, gpointer data)
4992 {
4993         MainWindow *mainwin = (MainWindow *)data;
4994         summary_select_thread(mainwin->summaryview, FALSE, TRUE);
4995 }
4996
4997 static void delete_thread_cb(GtkAction *action, gpointer data)
4998 {
4999         MainWindow *mainwin = (MainWindow *)data;
5000         summary_select_thread(mainwin->summaryview, TRUE, FALSE);
5001 }
5002
5003 static void create_filter_cb(GtkAction *gaction, gpointer data)
5004 {
5005         MainWindow *mainwin = (MainWindow *)data;
5006         const gchar *a_name = gtk_action_get_name(gaction);
5007         gint action = -1;
5008
5009         DO_ACTION("Tools/CreateFilterRule/Automatically", FILTER_BY_AUTO);
5010         DO_ACTION("Tools/CreateFilterRule/ByFrom", FILTER_BY_FROM);
5011         DO_ACTION("Tools/CreateFilterRule/ByTo", FILTER_BY_TO);
5012         DO_ACTION("Tools/CreateFilterRule/BySubject", FILTER_BY_SUBJECT);
5013         summary_filter_open(mainwin->summaryview, (PrefsFilterType)action, 0);
5014 }
5015
5016 static void create_processing_cb(GtkAction *gaction, gpointer data)
5017 {
5018         MainWindow *mainwin = (MainWindow *)data;
5019         const gchar *a_name = gtk_action_get_name(gaction);
5020         gint action = -1;
5021
5022         DO_ACTION("Tools/CreateProcessingRule/Automatically", FILTER_BY_AUTO);
5023         DO_ACTION("Tools/CreateProcessingRule/ByFrom", FILTER_BY_FROM);
5024         DO_ACTION("Tools/CreateProcessingRule/ByTo", FILTER_BY_TO);
5025         DO_ACTION("Tools/CreateProcessingRule/BySubject", FILTER_BY_SUBJECT);
5026         summary_filter_open(mainwin->summaryview, (PrefsFilterType)action, 1);
5027 }
5028
5029 static void prefs_pre_processing_open_cb(GtkAction *action, gpointer data)
5030 {
5031         prefs_filtering_open(&pre_global_processing,
5032                              _("Processing rules to apply before folder rules"),
5033                              MANUAL_ANCHOR_PROCESSING,
5034                              NULL, NULL, FALSE);
5035 }
5036
5037 static void prefs_post_processing_open_cb(GtkAction *action, gpointer data)
5038 {
5039         prefs_filtering_open(&post_global_processing,
5040                              _("Processing rules to apply after folder rules"),
5041                              MANUAL_ANCHOR_PROCESSING,
5042                              NULL, NULL, FALSE);
5043 }
5044
5045 static void prefs_filtering_open_cb(GtkAction *action, gpointer data)
5046 {
5047         prefs_filtering_open(&filtering_rules,
5048                              _("Filtering configuration"),
5049                              MANUAL_ANCHOR_FILTERING,
5050                              NULL, NULL, TRUE);
5051 }
5052
5053 static void prefs_template_open_cb(GtkAction *action, gpointer data)
5054 {
5055         prefs_template_open();
5056 }
5057
5058 static void prefs_actions_open_cb(GtkAction *action, gpointer data)
5059 {
5060         MainWindow *mainwin = (MainWindow *)data;
5061         prefs_actions_open(mainwin);
5062 }
5063
5064 static void prefs_tags_open_cb(GtkAction *action, gpointer data)
5065 {
5066         MainWindow *mainwin = (MainWindow *)data;
5067         GSList * list = summary_get_selected_msg_list(mainwin->summaryview);
5068         tag_apply_open(list);
5069 }
5070 #ifdef USE_GNUTLS
5071 static void ssl_manager_open_cb(GtkAction *action, gpointer data)
5072 {
5073         MainWindow *mainwin = (MainWindow *)data;
5074         ssl_manager_open(mainwin);
5075 }
5076 #endif
5077 static void prefs_account_open_cb(GtkAction *action, gpointer data)
5078 {
5079         MainWindow *mainwin = (MainWindow *)data;
5080         if (!cur_account) {
5081                 new_account_cb(NULL, mainwin);
5082         } else {
5083                 account_open(cur_account, FALSE);
5084         }
5085 }
5086
5087 static void new_account_cb(GtkAction *action, gpointer data)
5088 {
5089         account_edit_open(NULL, NULL);
5090         if (!compose_get_compose_list()) account_add();
5091 }
5092
5093 static void account_selector_menu_cb(GtkMenuItem *menuitem, gpointer data)
5094 {
5095         FolderItem *item = NULL;
5096         cur_account = (PrefsAccount *)data;
5097         
5098         if (!mainwindow_get_mainwindow())
5099                 return;
5100         main_window_show_cur_account(mainwindow_get_mainwindow());
5101         toolbar_update(TOOLBAR_MAIN, mainwindow_get_mainwindow());
5102         main_window_set_menu_sensitive(mainwindow_get_mainwindow());
5103         toolbar_main_set_sensitive(mainwindow_get_mainwindow());
5104         item = folderview_get_selected_item(
5105                         mainwindow_get_mainwindow()->folderview);
5106         if (item) {
5107                 toolbar_set_compose_button
5108                         (mainwindow_get_mainwindow()->toolbar,
5109                          FOLDER_TYPE(item->folder) == F_NEWS ? 
5110                          COMPOSEBUTTON_NEWS : COMPOSEBUTTON_MAIL);
5111         }
5112 }
5113
5114 static void account_receive_menu_cb(GtkMenuItem *menuitem, gpointer data)
5115 {
5116         MainWindow *mainwin = (MainWindow *)mainwin_list->data;
5117         PrefsAccount *account = (PrefsAccount *)data;
5118
5119         inc_account_mail(mainwin, account);
5120 }
5121 #ifndef GENERIC_UMPC
5122 static void account_compose_menu_cb(GtkMenuItem *menuitem, gpointer data)
5123 {
5124         PrefsAccount *account = (PrefsAccount *)data;
5125
5126         compose_new_with_folderitem(account, NULL, NULL);
5127 }
5128 #endif
5129 static void prefs_open_cb(GtkAction *action, gpointer data)
5130 {
5131         prefs_gtk_open();
5132 }
5133
5134 static void plugins_open_cb(GtkAction *action, gpointer data)
5135 {
5136         pluginwindow_create();
5137 }
5138
5139 static void manual_open_cb(GtkAction *action, gpointer data)
5140 {
5141         manual_open(MANUAL_MANUAL_CLAWS, NULL);
5142 }
5143
5144 static void manual_faq_open_cb(GtkAction *action, gpointer data)
5145 {
5146         manual_open(MANUAL_FAQ_CLAWS, NULL);
5147 }
5148
5149 static void legend_open_cb(GtkAction *action, gpointer data)
5150 {
5151         legend_show();
5152 }
5153
5154 #ifdef G_OS_WIN32
5155 static void set_default_client_cb(GtkAction *action, gpointer data)
5156 {
5157         char exename[MAX_PATH];
5158         gchar *binary_icon = NULL;
5159         gchar *binary_compose = NULL;
5160         gchar *binary_run = NULL;
5161         int r = 0;
5162         if ( !GetModuleFileNameA (0, exename, sizeof (exename)) ) {
5163                 alertpanel_error(_("Can not register as default client: impossible to get executable path."));
5164                 return;
5165         }
5166         binary_icon = g_strconcat(exename, ",0", NULL);
5167         binary_compose = g_strconcat(exename, " --compose %1", NULL);
5168         binary_run = g_strconcat(exename, NULL);
5169
5170         /* Try to set the Mail Start menu item to Claws. It may fail if we're not root; we don't care */
5171         r = write_w32_registry_string("HKLM", "Software\\Clients\\Mail", 
5172                         "", "Claws Mail");
5173         
5174         r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail", 
5175                                 "", "Claws Mail");
5176         if (!r)
5177                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail", 
5178                                 "DLLPath", "");
5179         if (!r)
5180                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto", 
5181                                 "", "URL:MailTo-Protocol");
5182         if (!r)
5183                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto", 
5184                                 "URL Protocol", "");
5185         if (!r)
5186                 r = write_w32_registry_dword ("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto", 
5187                                 "EditFlags", 2);
5188         if (!r)
5189                 r = write_w32_registry_string ("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto", 
5190                                 "FriendlyTypeName", "Claws-Mail URL");
5191         if (!r)
5192                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto\\DefaultIcon", 
5193                                 "", binary_icon);
5194         if (!r)
5195                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto\\shell\\open\\command", 
5196                                 "", binary_compose);
5197         if (!r)
5198                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\shell\\open\\command", 
5199                                 "", binary_run);
5200         
5201         if (!r)
5202                 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto", 
5203                                 "", "URL:MailTo-Protocol");
5204         if (!r)
5205                 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto", 
5206                                 "URL Protocol", "");
5207         if (!r)
5208                 r = write_w32_registry_dword ("HKCU", "Software\\Classes\\mailto", 
5209                                 "EditFlags", 2);
5210         if (!r)
5211                 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto", 
5212                                 "FriendlyTypeName", "Claws-Mail URL");
5213         if (!r)
5214                 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto\\DefaultIcon", 
5215                                 "", binary_icon);
5216         if (!r)
5217                 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto\\shell\\open\\command", 
5218                                 "", binary_compose);
5219         
5220         if (!r) {
5221                 SendMessage(HWND_BROADCAST, WM_SETTINGCHANGE, 0, (LPARAM)"Software\\Clients\\Mail");
5222                 alertpanel_notice(_("Claws Mail has been registered as default client."));
5223         } else {
5224                 alertpanel_error(_("Can not register as default client: impossible to write to the registry."));
5225         }
5226         g_free(binary_icon);
5227         g_free(binary_compose);
5228         g_free(binary_run);
5229 }
5230 #endif
5231
5232 static void scan_tree_func(Folder *folder, FolderItem *item, gpointer data)
5233 {
5234         MainWindow *mainwin = (MainWindow *)data;
5235         gchar *str;
5236
5237         if (item->path)
5238                 str = g_strdup_printf(_("Scanning folder %s%c%s..."),
5239                                       LOCAL_FOLDER(folder)->rootpath,
5240                                       G_DIR_SEPARATOR,
5241                                       item->path);
5242         else
5243                 str = g_strdup_printf(_("Scanning folder %s..."),
5244                                       LOCAL_FOLDER(folder)->rootpath);
5245
5246         STATUSBAR_PUSH(mainwin, str);
5247         STATUSBAR_POP(mainwin);
5248         g_free(str);
5249 }
5250
5251 static gboolean mainwindow_focus_in_event(GtkWidget *widget, GdkEventFocus *focus,
5252                                           gpointer data)
5253 {
5254         SummaryView *summary;
5255
5256         cm_return_val_if_fail(data, FALSE);
5257         if (!g_list_find(mainwin_list, data))
5258                 return TRUE;
5259         summary = ((MainWindow *)data)->summaryview;
5260         cm_return_val_if_fail(summary, FALSE);
5261
5262         if (GTK_CMCLIST(summary->ctree)->selection && 
5263             g_list_length(GTK_CMCLIST(summary->ctree)->selection) > 1)
5264                 return FALSE;
5265
5266         return FALSE;
5267 }
5268
5269 static gboolean mainwindow_visibility_event_cb(GtkWidget *widget, GdkEventVisibility *event,
5270                                           gpointer data)
5271 {
5272         is_obscured = (event->state == GDK_VISIBILITY_FULLY_OBSCURED);
5273         return FALSE;
5274 }
5275
5276 static gboolean mainwindow_state_event_cb(GtkWidget *widget, GdkEventWindowState *state,
5277                                           gpointer data)
5278 {
5279         if (!claws_is_starting()
5280                 && state->changed_mask&GDK_WINDOW_STATE_ICONIFIED
5281                 && state->new_window_state&GDK_WINDOW_STATE_ICONIFIED) {
5282
5283                 if (iconified_count > 0)
5284                         hooks_invoke(MAIN_WINDOW_GOT_ICONIFIED, NULL);
5285                 iconified_count++;
5286         } else if (!claws_is_starting()) {
5287                 prefs_common.mainwin_maximised = 
5288                         ((state->new_window_state&GDK_WINDOW_STATE_MAXIMIZED) != 0);
5289         }
5290         if (state->new_window_state == 0)
5291                 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(widget), FALSE);
5292         return FALSE;
5293 }
5294
5295 gboolean mainwindow_is_obscured(void)
5296 {
5297         return is_obscured;
5298 }
5299
5300 /*
5301  * Harvest addresses for selected folder.
5302  */
5303 static void addr_harvest_cb( GtkAction *action, gpointer data)
5304 {
5305         MainWindow *mainwin = (MainWindow *)data;
5306
5307         addressbook_harvest( mainwin->summaryview->folder_item, FALSE, NULL );
5308 }
5309
5310 /*
5311  * Harvest addresses for selected messages in summary view.
5312  */
5313 static void addr_harvest_msg_cb( GtkAction *action, gpointer data)
5314 {
5315         MainWindow *mainwin = (MainWindow *)data;
5316         summary_harvest_address( mainwin->summaryview );
5317 }
5318
5319 /*!
5320  *\brief        get a MainWindow
5321  *
5322  *\return       MainWindow * The first mainwindow in the mainwin_list
5323  */
5324 MainWindow *mainwindow_get_mainwindow(void)
5325 {
5326         if (mainwin_list && mainwin_list->data)
5327                 return (MainWindow *)(mainwin_list->data);
5328         else
5329                 return NULL;
5330 }
5331
5332 static gboolean mainwindow_progressindicator_hook(gpointer source, gpointer userdata)
5333 {
5334         ProgressData *data = (ProgressData *) source;
5335         MainWindow *mainwin = (MainWindow *) userdata;
5336
5337         switch (data->cmd) {
5338         case PROGRESS_COMMAND_START:
5339         case PROGRESS_COMMAND_STOP:
5340                 gtk_progress_bar_set_fraction
5341                         (GTK_PROGRESS_BAR(mainwin->progressbar), 0.0);
5342                 break;
5343         case PROGRESS_COMMAND_SET_PERCENTAGE:
5344                 gtk_progress_bar_set_fraction
5345                         (GTK_PROGRESS_BAR(mainwin->progressbar), data->value);
5346                 break;          
5347         }
5348         while (gtk_events_pending()) gtk_main_iteration ();
5349
5350         return FALSE;
5351 }
5352
5353 static void sync_cb(GtkAction *action, gpointer data)
5354 {
5355         MainWindow *mainwin = (MainWindow *)data;
5356         mainwindow_check_synchronise(mainwin, FALSE);
5357 }
5358
5359 static void forget_session_passwords_cb(GtkAction *action, gpointer data)
5360 {
5361         MainWindow *mainwin = (MainWindow *)data;
5362         GList *list = NULL;
5363         gint fgtn = 0;
5364         gint accs = 0;
5365
5366         main_window_lock(mainwin);
5367         for (list = account_get_list(); list != NULL; list = list->next) {
5368                 PrefsAccount *account = list->data;
5369                 if (account->session_passwd) {
5370                         g_free(account->session_passwd);
5371                         account->session_passwd = NULL;
5372                         ++fgtn;
5373                 }
5374                 if (account->session_smtp_passwd) {
5375                         g_free(account->session_smtp_passwd);
5376                         account->session_smtp_passwd = NULL;
5377                         ++fgtn;
5378                 }
5379                 ++accs;
5380         }
5381         main_window_unlock(mainwin);
5382         alertpanel_notice(ngettext("Forgotten %d password in %d accounts.\n",
5383                                    "Forgotten %d passwords in %d accounts.\n",
5384                                    fgtn), fgtn, accs);  
5385 }
5386
5387 #ifndef PASSWORD_CRYPTO_OLD
5388 static void forget_master_passphrase_cb(GtkAction *action, gpointer data)
5389 {
5390         MainWindow *mainwin = (MainWindow *)data;
5391
5392         main_window_lock(mainwin);
5393         master_passphrase_forget();
5394         main_window_unlock(mainwin);
5395 }
5396 #endif
5397
5398 void mainwindow_learn (MainWindow *mainwin, gboolean is_spam)
5399 {
5400         summary_mark_as_spam(mainwin->summaryview, is_spam, NULL);
5401 }
5402
5403 void mainwindow_jump_to(const gchar *target, gboolean popup)
5404 {
5405         gchar *tmp = NULL;
5406         gchar *p = NULL;
5407         FolderItem *item = NULL;
5408         gchar *msg = NULL;
5409         MainWindow *mainwin = mainwindow_get_mainwindow();
5410         gchar *from_uri = NULL;
5411         if (!target)
5412                 return;
5413                 
5414         if (!mainwin) {
5415                 g_print("not initialized\n");
5416                 return;
5417         }
5418
5419         if ((from_uri = g_filename_from_uri(target, NULL, NULL)) != NULL)
5420                 tmp = from_uri;
5421         else
5422                 tmp = g_strdup(target);
5423         
5424         if ((p = strstr(tmp, "\r")) != NULL)
5425                 *p = '\0';
5426         if ((p = strstr(tmp, "\n")) != NULL)
5427                 *p = '\0';
5428
5429         if ((item = folder_find_item_from_identifier(tmp))) {
5430                 g_print("selecting folder '%s'\n", tmp);
5431                 folderview_select(mainwin->folderview, item);
5432                 if (popup)
5433                         main_window_popup(mainwin);
5434                 g_free(tmp);
5435                 return;
5436         }
5437         
5438         msg = strrchr(tmp, '/');
5439         if (msg) {
5440                 *msg++ = '\0';
5441                 if ((item = folder_find_item_from_identifier(tmp))) {
5442                         g_print("selecting folder '%s'\n", tmp);
5443                         folderview_select(mainwin->folderview, item);
5444                 } else if ((item = folder_find_item_from_real_path(tmp))) {
5445                         g_print("selecting folder '%s'\n", tmp);
5446                         folderview_select(mainwin->folderview, item);
5447                 } else {
5448                         g_print("'%s' not found\n", tmp);
5449                 }
5450                 if (item && msg && atoi(msg)) {
5451                         g_print("selecting message %d\n", atoi(msg));
5452                         summary_select_by_msgnum(mainwin->summaryview, atoi(msg), TRUE);
5453                         if (popup)
5454                                 main_window_popup(mainwin);
5455                         g_free(tmp);
5456                         return;
5457                 } else if (item && msg[0] == '<' && msg[strlen(msg)-1] == '>') {
5458                         MsgInfo *msginfo = NULL;
5459                         msg++;
5460                         msg[strlen(msg)-1] = '\0';
5461                         msginfo = folder_item_get_msginfo_by_msgid(item, msg);
5462                         if (msginfo) {
5463                                 g_print("selecting message %s\n", msg);
5464                                 summary_select_by_msgnum(mainwin->summaryview, msginfo->msgnum, TRUE);
5465                                 if (popup)
5466                                         main_window_popup(mainwin);
5467                                 g_free(tmp);
5468                                 procmsg_msginfo_free(&msginfo);
5469                                 return;
5470                         } else {
5471                                 g_print("'%s' not found\n", msg);
5472                         }
5473                 } else {
5474                         g_print("'%s' not found\n", msg);
5475                 }
5476         } else {
5477                 g_print("'%s' not found\n", tmp);
5478         }
5479         
5480         g_free(tmp);
5481 }
5482
5483 void mainwindow_exit_folder(MainWindow *mainwin) {
5484         if (prefs_common.layout_mode == SMALL_LAYOUT) {
5485                 folderview_close_opened(mainwin->folderview, FALSE);
5486                 mainwin_paned_show_first(GTK_PANED(mainwin->hpaned));
5487                 folderview_grab_focus(mainwin->folderview);
5488         }
5489         mainwin->in_folder = FALSE;
5490         main_window_set_menu_sensitive(mainwin);
5491 }
5492
5493 void mainwindow_enter_folder(MainWindow *mainwin) {
5494         if (prefs_common.layout_mode == SMALL_LAYOUT) {
5495                 mainwin_paned_show_last(GTK_PANED(mainwin->hpaned));
5496         }
5497         mainwin->in_folder = TRUE;
5498         main_window_set_menu_sensitive(mainwin);
5499 }
5500
5501 static void save_part_as_cb(GtkAction *action, gpointer data)
5502 {
5503         MainWindow *mainwin = (MainWindow *)data;
5504
5505         if (mainwin->messageview 
5506         &&  mainwin->messageview->mimeview)
5507                 mimeview_save_as(mainwin->messageview->mimeview);
5508 }
5509
5510 static void view_part_as_text_cb(GtkAction *action, gpointer data)
5511 {
5512         MainWindow *mainwin = (MainWindow *)data;
5513
5514         if (mainwin->messageview 
5515         &&  mainwin->messageview->mimeview)
5516                 mimeview_display_as_text(mainwin->messageview->mimeview);
5517 }
5518
5519 static void open_part_cb(GtkAction *action, gpointer data)
5520 {
5521         MainWindow *mainwin = (MainWindow *)data;
5522
5523         if (mainwin->messageview 
5524         &&  mainwin->messageview->mimeview)
5525                 mimeview_launch(mainwin->messageview->mimeview, NULL);
5526 }
5527 #ifndef G_OS_WIN32
5528 static void open_part_with_cb(GtkAction *action, gpointer data)
5529 {
5530         MainWindow *mainwin = (MainWindow *)data;
5531
5532         if (mainwin->messageview 
5533         &&  mainwin->messageview->mimeview)
5534                 mimeview_open_with(mainwin->messageview->mimeview);
5535 }
5536 #endif
5537 static void check_signature_cb(GtkAction *action, gpointer data)
5538 {
5539         MainWindow *mainwin = (MainWindow *)data;
5540
5541         if (mainwin->messageview 
5542         &&  mainwin->messageview->mimeview)
5543                 mimeview_check_signature(mainwin->messageview->mimeview);
5544 }
5545
5546 static void goto_next_part_cb(GtkAction *action, gpointer data)
5547 {
5548         MainWindow *mainwin = (MainWindow *)data;
5549
5550         if (mainwin->messageview 
5551         &&  mainwin->messageview->mimeview)
5552                 mimeview_select_next_part(mainwin->messageview->mimeview);
5553 }
5554
5555 static void goto_prev_part_cb(GtkAction *action, gpointer data)
5556 {
5557         MainWindow *mainwin = (MainWindow *)data;
5558
5559         if (mainwin->messageview 
5560         &&  mainwin->messageview->mimeview)
5561                 mimeview_select_prev_part(mainwin->messageview->mimeview);
5562 }