move 'msg selection when entering a folder" button to Message List page
[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         GdkColormap *colormap;
1436         gboolean success[4];
1437         GdkColor color[4];
1438         GtkWidget *ac_menu;
1439         gint i;
1440
1441         static GdkGeometry geometry;
1442
1443         debug_print("Creating main window...\n");
1444         mainwin = g_new0(MainWindow, 1);
1445
1446         /* main window */
1447         window = GTK_WIDGET(gtkut_window_new(GTK_WINDOW_TOPLEVEL, "mainwindow"));
1448         gtk_window_set_title(GTK_WINDOW(window), PROG_VERSION);
1449         gtk_window_set_resizable(GTK_WINDOW(window), TRUE);
1450 #ifdef GENERIC_UMPC
1451         prefs_common.layout_mode = SMALL_LAYOUT;
1452 #endif
1453         if (!geometry.min_height) {
1454                 geometry.min_width = 320;
1455                 geometry.min_height = 200;
1456         }
1457         gtk_window_set_geometry_hints(GTK_WINDOW(window), NULL, &geometry,
1458                                       GDK_HINT_MIN_SIZE);
1459
1460         g_signal_connect(G_OBJECT(window), "delete_event",
1461                          G_CALLBACK(main_window_close_cb), mainwin);
1462         MANAGE_WINDOW_SIGNALS_CONNECT(window);
1463         g_signal_connect(G_OBJECT(window), "focus_in_event",
1464                          G_CALLBACK(mainwindow_focus_in_event),
1465                          mainwin);
1466         g_signal_connect(G_OBJECT(window), "key_press_event",
1467                          G_CALLBACK(mainwindow_key_pressed), mainwin);
1468
1469         gtk_widget_realize(window);
1470         gtk_widget_add_events(window, GDK_KEY_PRESS_MASK|GDK_KEY_RELEASE_MASK);
1471         
1472
1473         gtkut_widget_set_app_icon(window);
1474
1475         vbox = gtk_vbox_new(FALSE, 0);
1476         gtk_widget_show(vbox);
1477         gtk_container_add(GTK_CONTAINER(window), vbox);
1478
1479         /* menu bar */
1480
1481         mainwin->ui_manager = gtk_ui_manager_new();
1482         mainwin->action_group = cm_menu_create_action_group_full(mainwin->ui_manager,"Menu", mainwin_entries,
1483                         G_N_ELEMENTS(mainwin_entries), (gpointer)mainwin);
1484         gtk_action_group_add_toggle_actions(mainwin->action_group, mainwin_toggle_entries,
1485                         G_N_ELEMENTS(mainwin_toggle_entries), (gpointer)mainwin);
1486         gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_showhide_radio_entries,
1487                         G_N_ELEMENTS(mainwin_showhide_radio_entries), C_AUTO, G_CALLBACK(toggle_toolbar_cb), (gpointer)mainwin);
1488 #ifndef GENERIC_UMPC
1489         gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_layout_radio_entries,
1490                         G_N_ELEMENTS(mainwin_layout_radio_entries), C_AUTO, G_CALLBACK(set_layout_cb), (gpointer)mainwin);
1491 #endif
1492         gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_sort_radio_entries,
1493                         G_N_ELEMENTS(mainwin_sort_radio_entries), C_AUTO, G_CALLBACK(sort_summary_cb), (gpointer)mainwin);
1494         gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_sorttype_radio_entries,
1495                         G_N_ELEMENTS(mainwin_sorttype_radio_entries), C_AUTO, G_CALLBACK(sort_summary_type_cb), (gpointer)mainwin);
1496         gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_radio_enc_entries,
1497                         G_N_ELEMENTS(mainwin_radio_enc_entries), C_AUTO, G_CALLBACK(set_charset_cb), (gpointer)mainwin);
1498         gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_radio_dec_entries,
1499                         G_N_ELEMENTS(mainwin_radio_dec_entries), C_AUTO, G_CALLBACK(set_decode_cb), (gpointer)mainwin);
1500
1501         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/", "Menu", NULL, GTK_UI_MANAGER_MENUBAR)
1502         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "File", "File", GTK_UI_MANAGER_MENU)
1503         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Edit", "Edit", GTK_UI_MANAGER_MENU)
1504         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "View", "View", GTK_UI_MANAGER_MENU)
1505         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Message", "Message", GTK_UI_MANAGER_MENU)
1506         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Tools", "Tools", GTK_UI_MANAGER_MENU)
1507         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Configuration", "Configuration", GTK_UI_MANAGER_MENU)
1508         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Help", "Help", GTK_UI_MANAGER_MENU)
1509
1510 /* File menu */
1511         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "AddMailbox", "File/AddMailbox", GTK_UI_MANAGER_MENU)
1512         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File/AddMailbox", "MH", "File/AddMailbox/MH", GTK_UI_MANAGER_MENUITEM)
1513         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator1", "File/---", GTK_UI_MANAGER_SEPARATOR)
1514         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "SortMailboxes", "File/SortMailboxes", GTK_UI_MANAGER_MENUITEM)
1515         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator2", "File/---", GTK_UI_MANAGER_SEPARATOR)
1516         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "ImportMbox", "File/ImportMbox", GTK_UI_MANAGER_MENUITEM)
1517         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "ExportMbox", "File/ExportMbox", GTK_UI_MANAGER_MENUITEM)
1518         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "ExportSelMbox", "File/ExportSelMbox", GTK_UI_MANAGER_MENUITEM)
1519         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator3", "File/---", GTK_UI_MANAGER_SEPARATOR)
1520         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "EmptyTrashes", "File/EmptyTrashes", GTK_UI_MANAGER_MENUITEM)
1521         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator4", "File/---", GTK_UI_MANAGER_SEPARATOR)
1522         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "SaveAs", "File/SaveAs", GTK_UI_MANAGER_MENUITEM)
1523         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "SavePartAs", "File/SavePartAs", GTK_UI_MANAGER_MENUITEM)
1524         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator5", "File/---", GTK_UI_MANAGER_SEPARATOR)
1525         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "PageSetup", "File/PageSetup", GTK_UI_MANAGER_MENUITEM)
1526         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Print", "File/Print", GTK_UI_MANAGER_MENUITEM)
1527         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator6", "File/---", GTK_UI_MANAGER_SEPARATOR)
1528         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "OfflineMode", "File/OfflineMode", GTK_UI_MANAGER_MENUITEM)
1529         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "SynchroniseFolders", "File/SynchroniseFolders", GTK_UI_MANAGER_MENUITEM)
1530         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator7", "File/---", GTK_UI_MANAGER_SEPARATOR)
1531         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Exit", "File/Exit", GTK_UI_MANAGER_MENUITEM)
1532
1533 /* Edit menu */
1534         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "Copy", "Edit/Copy", GTK_UI_MANAGER_MENUITEM)
1535         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "SelectAll", "Edit/SelectAll", GTK_UI_MANAGER_MENUITEM)
1536         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "SelectThread", "Edit/SelectThread", GTK_UI_MANAGER_MENUITEM)
1537         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "Separator1", "Edit/---", GTK_UI_MANAGER_SEPARATOR)
1538         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "Find", "Edit/Find", GTK_UI_MANAGER_MENUITEM)
1539         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "SearchFolder", "Edit/SearchFolder", GTK_UI_MANAGER_MENUITEM)
1540         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "QuickSearch", "Edit/QuickSearch", GTK_UI_MANAGER_MENUITEM)
1541
1542 /* View menu */
1543         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "ShowHide", "View/ShowHide", GTK_UI_MANAGER_MENU)
1544         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "MenuBar", "View/ShowHide/MenuBar", GTK_UI_MANAGER_MENUITEM)
1545         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "Toolbar", "View/ShowHide/Toolbar", GTK_UI_MANAGER_MENU)
1546         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "TextBelowIcon", "View/ShowHide/Toolbar/TextBelowIcon", GTK_UI_MANAGER_MENUITEM)
1547         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "TextBesideIcon", "View/ShowHide/Toolbar/TextBesideIcon", GTK_UI_MANAGER_MENUITEM)
1548         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "IconOnly", "View/ShowHide/Toolbar/IconOnly", GTK_UI_MANAGER_MENUITEM)
1549         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "TextOnly", "View/ShowHide/Toolbar/TextOnly", GTK_UI_MANAGER_MENUITEM)
1550 #ifndef GENERIC_UMPC
1551         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "Hide", "View/ShowHide/Toolbar/Hide", GTK_UI_MANAGER_MENUITEM)
1552 #endif
1553         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "MessageView", "View/ShowHide/MessageView", GTK_UI_MANAGER_MENUITEM)
1554 #ifndef GENERIC_UMPC
1555         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "StatusBar", "View/ShowHide/StatusBar", GTK_UI_MANAGER_MENUITEM)
1556 #endif
1557         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "ColumnHeaders", "View/ShowHide/ColumnHeaders", GTK_UI_MANAGER_MENUITEM)
1558         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "SetColumns", "View/SetColumns", GTK_UI_MANAGER_MENU)
1559         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/SetColumns", "Folderlist", "View/SetColumns/Folderlist", GTK_UI_MANAGER_MENUITEM)
1560         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/SetColumns", "Messagelist", "View/SetColumns/Messagelist", GTK_UI_MANAGER_MENUITEM)
1561         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator1", "View/---", GTK_UI_MANAGER_SEPARATOR)
1562
1563         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "FullScreen", "View/FullScreen", GTK_UI_MANAGER_MENUITEM)
1564 #ifndef GENERIC_UMPC
1565         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Layout", "View/Layout", GTK_UI_MANAGER_MENU)
1566         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "Standard", "View/Layout/Standard", GTK_UI_MANAGER_MENUITEM)
1567         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "ThreeColumns", "View/Layout/ThreeColumns", GTK_UI_MANAGER_MENUITEM)
1568         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "WideMessage", "View/Layout/WideMessage", GTK_UI_MANAGER_MENUITEM)
1569         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "WideMessageList", "View/Layout/WideMessageList", GTK_UI_MANAGER_MENUITEM)
1570         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "SmallScreen", "View/Layout/SmallScreen", GTK_UI_MANAGER_MENUITEM)
1571         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator2", "View/---", GTK_UI_MANAGER_SEPARATOR)
1572 #endif
1573
1574         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Sort", "View/Sort", GTK_UI_MANAGER_MENU)
1575         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Number", "View/Sort/Number", GTK_UI_MANAGER_MENUITEM)
1576         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Size", "View/Sort/Size", GTK_UI_MANAGER_MENUITEM)
1577         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Date", "View/Sort/Date", GTK_UI_MANAGER_MENUITEM)
1578         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "ThreadDate", "View/Sort/ThreadDate", GTK_UI_MANAGER_MENUITEM)
1579         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "From", "View/Sort/From", GTK_UI_MANAGER_MENUITEM)
1580         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "To", "View/Sort/To", GTK_UI_MANAGER_MENUITEM)
1581         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Subject", "View/Sort/Subject", GTK_UI_MANAGER_MENUITEM)
1582         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Color", "View/Sort/Color", GTK_UI_MANAGER_MENUITEM)
1583         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Tag", "View/Sort/Tag", GTK_UI_MANAGER_MENUITEM)
1584         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Mark", "View/Sort/Mark", GTK_UI_MANAGER_MENUITEM)
1585         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Status", "View/Sort/Status", GTK_UI_MANAGER_MENUITEM)
1586         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Attachment", "View/Sort/Attachment", GTK_UI_MANAGER_MENUITEM)
1587         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Score", "View/Sort/Score", GTK_UI_MANAGER_MENUITEM)
1588         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Locked", "View/Sort/Locked", GTK_UI_MANAGER_MENUITEM)
1589         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "DontSort", "View/Sort/DontSort", GTK_UI_MANAGER_MENUITEM)
1590         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Separator1", "View/Sort/---", GTK_UI_MANAGER_SEPARATOR)
1591         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Ascending", "View/Sort/Ascending", GTK_UI_MANAGER_MENUITEM)
1592         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Descending", "View/Sort/Descending", GTK_UI_MANAGER_MENUITEM)
1593         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Separator2", "View/Sort/---", GTK_UI_MANAGER_SEPARATOR)
1594         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "AttractSubj", "View/Sort/AttractSubj", GTK_UI_MANAGER_MENUITEM)
1595
1596         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "ThreadView", "View/ThreadView", GTK_UI_MANAGER_MENUITEM)
1597         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "ExpandThreads", "View/ExpandThreads", GTK_UI_MANAGER_MENUITEM)
1598         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "CollapseThreads", "View/CollapseThreads", GTK_UI_MANAGER_MENUITEM)
1599         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "HideReadThreads", "View/HideReadThreads", GTK_UI_MANAGER_MENUITEM)
1600         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "HideReadMessages", "View/HideReadMessages", GTK_UI_MANAGER_MENUITEM)
1601         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "HideDelMessages", "View/HideDelMessages", GTK_UI_MANAGER_MENUITEM)
1602         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator3", "View/---", GTK_UI_MANAGER_SEPARATOR)
1603
1604         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Goto", "View/Goto", GTK_UI_MANAGER_MENU)
1605         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Prev", "View/Goto/Prev", GTK_UI_MANAGER_MENUITEM)
1606         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Next", "View/Goto/Next", GTK_UI_MANAGER_MENUITEM)
1607         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator1", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1608         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevUnread", "View/Goto/PrevUnread", GTK_UI_MANAGER_MENUITEM)
1609         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextUnread", "View/Goto/NextUnread", GTK_UI_MANAGER_MENUITEM)
1610         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator2", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1611         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevNew", "View/Goto/PrevNew", GTK_UI_MANAGER_MENUITEM)
1612         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextNew", "View/Goto/NextNew", GTK_UI_MANAGER_MENUITEM)
1613         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator3", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1614         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevMarked", "View/Goto/PrevMarked", GTK_UI_MANAGER_MENUITEM)
1615         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextMarked", "View/Goto/NextMarked", GTK_UI_MANAGER_MENUITEM)
1616         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator4", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1617         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevLabeled", "View/Goto/PrevLabeled", GTK_UI_MANAGER_MENUITEM)
1618         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextLabeled", "View/Goto/NextLabeled", GTK_UI_MANAGER_MENUITEM)
1619         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator5", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1620         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevHistory", "View/Goto/PrevHistory", GTK_UI_MANAGER_MENUITEM)
1621         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextHistory", "View/Goto/NextHistory", GTK_UI_MANAGER_MENUITEM)
1622         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator6", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1623         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "ParentMessage", "View/Goto/ParentMessage", GTK_UI_MANAGER_MENUITEM)
1624         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator7", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1625         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextUnreadFolder", "View/Goto/NextUnreadFolder", GTK_UI_MANAGER_MENUITEM)
1626         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Folder", "View/Goto/Folder", GTK_UI_MANAGER_MENUITEM)
1627         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator8", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1628         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextPart", "View/Goto/NextPart", GTK_UI_MANAGER_MENUITEM)
1629         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevPart", "View/Goto/PrevPart", GTK_UI_MANAGER_MENUITEM)
1630         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Scroll", "View/Scroll", GTK_UI_MANAGER_MENU)
1631         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Scroll", "PrevLine", "View/Scroll/PrevLine", GTK_UI_MANAGER_MENUITEM)
1632         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Scroll", "NextLine", "View/Scroll/NextLine", GTK_UI_MANAGER_MENUITEM)
1633         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Scroll", "PrevPage", "View/Scroll/PrevPage", GTK_UI_MANAGER_MENUITEM)
1634         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Scroll", "NextPage", "View/Scroll/NextPage", GTK_UI_MANAGER_MENUITEM)
1635         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator4", "View/---", GTK_UI_MANAGER_SEPARATOR)
1636
1637         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Encoding", "View/Encoding", GTK_UI_MANAGER_MENU)
1638         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_AUTO, "View/Encoding/"CS_AUTO, GTK_UI_MANAGER_MENUITEM)
1639         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Separator1", "View/Encoding/---", GTK_UI_MANAGER_SEPARATOR)
1640         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_US_ASCII, "View/Encoding/"CS_US_ASCII, GTK_UI_MANAGER_MENUITEM)
1641         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_UTF_8, "View/Encoding/"CS_UTF_8, GTK_UI_MANAGER_MENUITEM)
1642         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Separator2", "View/Encoding/---", GTK_UI_MANAGER_SEPARATOR)
1643
1644         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Western", "View/Encoding/Western", GTK_UI_MANAGER_MENU)
1645         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)
1646         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)
1647         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Western", CS_WINDOWS_1252, "View/Encoding/Western/"CS_WINDOWS_1252, GTK_UI_MANAGER_MENUITEM)
1648
1649         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_ISO_8859_2, "View/Encoding/"CS_ISO_8859_2, GTK_UI_MANAGER_MENUITEM)
1650
1651         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Baltic", "View/Encoding/Baltic", GTK_UI_MANAGER_MENU)
1652         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)
1653         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)
1654
1655         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_ISO_8859_7, "View/Encoding/"CS_ISO_8859_7, GTK_UI_MANAGER_MENUITEM)
1656
1657         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Hebrew", "View/Encoding/Hebrew", GTK_UI_MANAGER_MENU)
1658         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)
1659         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Hebrew", CS_WINDOWS_1255, "View/Encoding/Hebrew/"CS_WINDOWS_1255, GTK_UI_MANAGER_MENUITEM)
1660
1661         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Arabic", "View/Encoding/Arabic", GTK_UI_MANAGER_MENU)
1662         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)
1663         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Arabic", CS_WINDOWS_1256, "View/Encoding/Arabic/"CS_WINDOWS_1256, GTK_UI_MANAGER_MENUITEM)
1664
1665         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_ISO_8859_9, "View/Encoding/"CS_ISO_8859_9, GTK_UI_MANAGER_MENUITEM)
1666
1667         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Cyrillic", "View/Encoding/Cyrillic", GTK_UI_MANAGER_MENU)
1668         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)
1669         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_KOI8_R, "View/Encoding/Cyrillic/"CS_KOI8_R, GTK_UI_MANAGER_MENUITEM)
1670         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_MACCYR, "View/Encoding/Cyrillic/"CS_MACCYR, GTK_UI_MANAGER_MENUITEM)
1671         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_KOI8_U, "View/Encoding/Cyrillic/"CS_KOI8_U, GTK_UI_MANAGER_MENUITEM)
1672         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_WINDOWS_1251, "View/Encoding/Cyrillic/"CS_WINDOWS_1251, GTK_UI_MANAGER_MENUITEM)
1673
1674         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Japanese", "View/Encoding/Japanese", GTK_UI_MANAGER_MENU)
1675         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)
1676         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)
1677         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Japanese", CS_EUC_JP, "View/Encoding/Japanese/"CS_EUC_JP, GTK_UI_MANAGER_MENUITEM)
1678         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Japanese", CS_SHIFT_JIS, "View/Encoding/Japanese/"CS_SHIFT_JIS, GTK_UI_MANAGER_MENUITEM)
1679
1680         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Chinese", "View/Encoding/Chinese", GTK_UI_MANAGER_MENU)
1681         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_GB18030, "View/Encoding/Chinese/"CS_GB18030, GTK_UI_MANAGER_MENUITEM)
1682         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_GB2312, "View/Encoding/Chinese/"CS_GB2312, GTK_UI_MANAGER_MENUITEM)
1683         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_GBK, "View/Encoding/Chinese/"CS_GBK, GTK_UI_MANAGER_MENUITEM)
1684         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_BIG5, "View/Encoding/Chinese/"CS_BIG5, GTK_UI_MANAGER_MENUITEM)
1685         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_EUC_TW, "View/Encoding/Chinese/"CS_EUC_TW, GTK_UI_MANAGER_MENUITEM)
1686
1687         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Korean", "View/Encoding/Korean", GTK_UI_MANAGER_MENU)
1688         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Korean", CS_EUC_KR, "View/Encoding/Korean/"CS_EUC_KR, GTK_UI_MANAGER_MENUITEM)
1689         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)
1690
1691         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Thai", "View/Encoding/Thai", GTK_UI_MANAGER_MENU)
1692         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Thai", CS_TIS_620, "View/Encoding/Thai/"CS_TIS_620, GTK_UI_MANAGER_MENUITEM)
1693         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Thai", CS_WINDOWS_874, "View/Encoding/Thai/"CS_WINDOWS_874, GTK_UI_MANAGER_MENUITEM)
1694
1695         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Decode", "View/Decode", GTK_UI_MANAGER_MENU)
1696         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "AutoDetect", "View/Decode/AutoDetect", GTK_UI_MANAGER_MENUITEM)
1697         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "Separator1", "View/Decode/---", GTK_UI_MANAGER_SEPARATOR)
1698         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "8bit", "View/Decode/8bit", GTK_UI_MANAGER_MENUITEM)
1699         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "QP", "View/Decode/QP", GTK_UI_MANAGER_MENUITEM)
1700         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "B64", "View/Decode/B64", GTK_UI_MANAGER_MENUITEM)
1701         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "Uuencode", "View/Decode/Uuencode", GTK_UI_MANAGER_MENUITEM)
1702         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator5", "View/---", GTK_UI_MANAGER_SEPARATOR)
1703
1704         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "OpenNewWindow", "View/OpenNewWindow", GTK_UI_MANAGER_MENUITEM)
1705         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "MessageSource", "View/MessageSource", GTK_UI_MANAGER_MENUITEM)
1706         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "AllHeaders", "View/AllHeaders", GTK_UI_MANAGER_MENUITEM)
1707         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Quotes", "View/Quotes", GTK_UI_MANAGER_MENU)
1708         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Quotes", "CollapseAll", "View/Quotes/CollapseAll", GTK_UI_MANAGER_MENUITEM)
1709         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Quotes", "Collapse2", "View/Quotes/Collapse2", GTK_UI_MANAGER_MENUITEM)
1710         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Quotes", "Collapse3", "View/Quotes/Collapse3", GTK_UI_MANAGER_MENUITEM)
1711         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Part", "View/Part", GTK_UI_MANAGER_MENU)
1712         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Part", "AsText", "View/Part/AsText", GTK_UI_MANAGER_MENUITEM)
1713         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Part", "Open", "View/Part/Open", GTK_UI_MANAGER_MENUITEM)
1714 #ifndef G_OS_WIN32
1715         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Part", "OpenWith", "View/Part/OpenWith", GTK_UI_MANAGER_MENUITEM)
1716 #endif
1717         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator8", "View/---", GTK_UI_MANAGER_SEPARATOR)
1718         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "UpdateSummary", "View/UpdateSummary", GTK_UI_MANAGER_MENUITEM)
1719
1720 /* Message menu */
1721         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Receive", "Message/Receive", GTK_UI_MANAGER_MENU)
1722         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "CurrentAccount", "Message/Receive/CurrentAccount", GTK_UI_MANAGER_MENUITEM)
1723         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "AllAccounts", "Message/Receive/AllAccounts", GTK_UI_MANAGER_MENUITEM)
1724         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "CancelReceiving", "Message/Receive/CancelReceiving", GTK_UI_MANAGER_MENUITEM)
1725         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "Separator1", "Message/Receive/---", GTK_UI_MANAGER_SEPARATOR)
1726         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "PlaceHolder", "Message/Receive/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1727         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "SendQueue", "Message/SendQueue", GTK_UI_MANAGER_MENUITEM)
1728         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "CancelSending", "Message/CancelSending", GTK_UI_MANAGER_MENUITEM)
1729         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator1", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1730
1731         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ComposeEmail", "Message/ComposeEmail", GTK_UI_MANAGER_MENUITEM)
1732         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ComposeNews", "Message/ComposeNews", GTK_UI_MANAGER_MENUITEM)
1733         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Reply", "Message/Reply", GTK_UI_MANAGER_MENUITEM)
1734         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ReplyTo", "Message/ReplyTo", GTK_UI_MANAGER_MENU)
1735         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/ReplyTo", "All", "Message/ReplyTo/All", GTK_UI_MANAGER_MENUITEM)
1736         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/ReplyTo", "Sender", "Message/ReplyTo/Sender", GTK_UI_MANAGER_MENUITEM)
1737         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/ReplyTo", "List", "Message/ReplyTo/List", GTK_UI_MANAGER_MENUITEM)
1738         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "FollowupReply", "Message/FollowupReply", GTK_UI_MANAGER_MENUITEM)
1739         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator2", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1740
1741         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Forward", "Message/Forward", GTK_UI_MANAGER_MENUITEM)
1742         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ForwardAtt", "Message/ForwardAtt", GTK_UI_MANAGER_MENUITEM)
1743         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Redirect", "Message/Redirect", GTK_UI_MANAGER_MENUITEM)
1744         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "MailingList", "Message/MailingList", GTK_UI_MANAGER_MENU)
1745         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "Post", "Message/MailingList/Post", GTK_UI_MANAGER_MENU)
1746         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "Help", "Message/MailingList/Help", GTK_UI_MANAGER_MENU)
1747         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "Subscribe", "Message/MailingList/Subscribe", GTK_UI_MANAGER_MENU)
1748         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "Unsubscribe", "Message/MailingList/Unsubscribe", GTK_UI_MANAGER_MENU)
1749         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "ViewArchive", "Message/MailingList/ViewArchive", GTK_UI_MANAGER_MENU)
1750         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "ContactOwner", "Message/MailingList/ContactOwner", GTK_UI_MANAGER_MENU)
1751         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/Post", "PlaceHolder", "Message/MailingList/Post/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1752         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/Help", "PlaceHolder", "Message/MailingList/Help/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1753         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/Subscribe", "PlaceHolder", "Message/MailingList/Subscribe/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1754         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/Unsubscribe", "PlaceHolder", "Message/MailingList/Unsubscribe/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1755         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/ViewArchive", "PlaceHolder", "Message/MailingList/ViewArchive/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1756         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/ContactOwner", "PlaceHolder", "Message/MailingList/ContactOwner/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1757         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator3", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1758
1759         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Move", "Message/Move", GTK_UI_MANAGER_MENUITEM)
1760         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Copy", "Message/Copy", GTK_UI_MANAGER_MENUITEM)
1761         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Trash", "Message/Trash", GTK_UI_MANAGER_MENUITEM)
1762         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Delete", "Message/Delete", GTK_UI_MANAGER_MENUITEM)
1763         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "TrashThread", "Message/TrashThread", GTK_UI_MANAGER_MENUITEM)
1764         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "DeleteThread", "Message/DeleteThread", GTK_UI_MANAGER_MENUITEM)
1765         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "CancelNews", "Message/CancelNews", GTK_UI_MANAGER_MENUITEM)
1766         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator4", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1767
1768         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Mark", "Message/Mark", GTK_UI_MANAGER_MENU)
1769         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Mark", "Message/Mark/Mark", GTK_UI_MANAGER_MENUITEM)
1770         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Unmark", "Message/Mark/Unmark", GTK_UI_MANAGER_MENUITEM)
1771         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator1", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1772         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkRead", "Message/Mark/MarkRead", GTK_UI_MANAGER_MENUITEM)
1773         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkUnread", "Message/Mark/MarkUnread", GTK_UI_MANAGER_MENUITEM)
1774         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator2", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1775         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkAllRead", "Message/Mark/MarkAllRead", GTK_UI_MANAGER_MENUITEM)
1776         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkAllUnread", "Message/Mark/MarkAllUnread", GTK_UI_MANAGER_MENUITEM)
1777         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator3", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1778         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "IgnoreThread", "Message/Mark/IgnoreThread", GTK_UI_MANAGER_MENUITEM)
1779         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "UnignoreThread", "Message/Mark/UnignoreThread", GTK_UI_MANAGER_MENUITEM)
1780         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "WatchThread", "Message/Mark/WatchThread", GTK_UI_MANAGER_MENUITEM)
1781         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "UnwatchThread", "Message/Mark/UnwatchThread", GTK_UI_MANAGER_MENUITEM)
1782         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator4", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1783         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkSpam", "Message/Mark/MarkSpam", GTK_UI_MANAGER_MENUITEM)
1784         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkHam", "Message/Mark/MarkHam", GTK_UI_MANAGER_MENUITEM)
1785         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator5", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1786         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Lock", "Message/Mark/Lock", GTK_UI_MANAGER_MENUITEM)
1787         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Unlock", "Message/Mark/Unlock", GTK_UI_MANAGER_MENUITEM)
1788         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ColorLabel", "Message/ColorLabel", GTK_UI_MANAGER_MENUITEM)
1789         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Tags", "Message/Tags", GTK_UI_MANAGER_MENUITEM)
1790         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator5", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1791
1792         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Reedit", "Message/Reedit", GTK_UI_MANAGER_MENUITEM)
1793         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator6", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1794         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "CheckSignature", "Message/CheckSignature", GTK_UI_MANAGER_MENUITEM)
1795
1796 /* Tools menu */
1797         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "AddressBook", "Tools/AddressBook", GTK_UI_MANAGER_MENUITEM)
1798         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "AddSenderToAB", "Tools/AddSenderToAB", GTK_UI_MANAGER_MENUITEM)
1799         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "CollectAddresses", "Tools/CollectAddresses", GTK_UI_MANAGER_MENU)
1800         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CollectAddresses", "FromFolder", "Tools/CollectAddresses/FromFolder", GTK_UI_MANAGER_MENUITEM)
1801         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CollectAddresses", "FromSelected", "Tools/CollectAddresses/FromSelected", GTK_UI_MANAGER_MENUITEM)
1802         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator1", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1803
1804         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "FilterFolder", "Tools/FilterFolder", GTK_UI_MANAGER_MENUITEM)
1805         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "FilterSelected", "Tools/FilterSelected", GTK_UI_MANAGER_MENUITEM)
1806         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "RunProcessing", "Tools/RunProcessing", GTK_UI_MANAGER_MENUITEM)
1807         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "CreateFilterRule", "Tools/CreateFilterRule", GTK_UI_MANAGER_MENU)
1808         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateFilterRule", "Automatically", "Tools/CreateFilterRule/Automatically", GTK_UI_MANAGER_MENUITEM)
1809         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateFilterRule", "ByFrom", "Tools/CreateFilterRule/ByFrom", GTK_UI_MANAGER_MENUITEM)
1810         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateFilterRule", "ByTo", "Tools/CreateFilterRule/ByTo", GTK_UI_MANAGER_MENUITEM)
1811         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateFilterRule", "BySubject", "Tools/CreateFilterRule/BySubject", GTK_UI_MANAGER_MENUITEM)
1812
1813         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "CreateProcessingRule", "Tools/CreateProcessingRule", GTK_UI_MANAGER_MENU)
1814         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateProcessingRule", "Automatically", "Tools/CreateProcessingRule/Automatically", GTK_UI_MANAGER_MENUITEM)
1815         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateProcessingRule", "ByFrom", "Tools/CreateProcessingRule/ByFrom", GTK_UI_MANAGER_MENUITEM)
1816         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateProcessingRule", "ByTo", "Tools/CreateProcessingRule/ByTo", GTK_UI_MANAGER_MENUITEM)
1817         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateProcessingRule", "BySubject", "Tools/CreateProcessingRule/BySubject", GTK_UI_MANAGER_MENUITEM)
1818         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator2", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1819         
1820         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "ListUrls", "Tools/ListUrls", GTK_UI_MANAGER_MENUITEM)
1821         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator3", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1822
1823         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Actions", "Tools/Actions", GTK_UI_MANAGER_MENU)
1824         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/Actions", "PlaceHolder", "Tools/Actions/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1825         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator4", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1826
1827         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "CheckNewMessages", "Tools/CheckNewMessages", GTK_UI_MANAGER_MENUITEM)
1828         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "DeleteDuplicates", "Tools/DeleteDuplicates", GTK_UI_MANAGER_MENU)
1829         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/DeleteDuplicates", "SelFolder", "Tools/DeleteDuplicates/SelFolder", GTK_UI_MANAGER_MENUITEM)
1830         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/DeleteDuplicates", "AllFolders", "Tools/DeleteDuplicates/AllFolders", GTK_UI_MANAGER_MENUITEM)
1831         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator5", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1832
1833         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Execute", "Tools/Execute", GTK_UI_MANAGER_MENUITEM)
1834         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Expunge", "Tools/Expunge", GTK_UI_MANAGER_MENUITEM)
1835 #ifdef USE_GNUTLS
1836         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator6", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1837         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "SSLCertificates", "Tools/SSLCertificates", GTK_UI_MANAGER_MENUITEM)
1838 #endif
1839         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator7", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1840         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "FilteringLog", "Tools/FilteringLog", GTK_UI_MANAGER_MENUITEM)
1841         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "NetworkLog", "Tools/NetworkLog", GTK_UI_MANAGER_MENUITEM)
1842         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator8", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1843         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "ForgetSessionPasswords", "Tools/ForgetSessionPasswords", GTK_UI_MANAGER_MENUITEM)
1844 #ifndef PASSWORD_CRYPTO_OLD
1845         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "ForgetMasterPassphrase", "Tools/ForgetMasterPassphrase", GTK_UI_MANAGER_MENUITEM)
1846 #endif
1847         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator9", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1848
1849 /* Configuration menu */
1850         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "ChangeAccount", "Configuration/ChangeAccount", GTK_UI_MANAGER_MENU)
1851         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration/ChangeAccount", "PlaceHolder", "Configuration/ChangeAccount/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1852         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "AccountPrefs", "Configuration/AccountPrefs", GTK_UI_MANAGER_MENUITEM)
1853         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "CreateAccount", "Configuration/CreateAccount", GTK_UI_MANAGER_MENUITEM)
1854         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "EditAccounts", "Configuration/EditAccounts", GTK_UI_MANAGER_MENUITEM)
1855         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Separator1", "Configuration/---", GTK_UI_MANAGER_SEPARATOR)
1856
1857         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Preferences", "Configuration/Preferences", GTK_UI_MANAGER_MENUITEM)
1858         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "PreProcessing", "Configuration/PreProcessing", GTK_UI_MANAGER_MENUITEM)
1859         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "PostProcessing", "Configuration/PostProcessing", GTK_UI_MANAGER_MENUITEM)
1860         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Filtering", "Configuration/Filtering", GTK_UI_MANAGER_MENUITEM)
1861         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Templates", "Configuration/Templates", GTK_UI_MANAGER_MENUITEM)
1862         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Actions", "Configuration/Actions", GTK_UI_MANAGER_MENUITEM)
1863         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Tags", "Configuration/Tags", GTK_UI_MANAGER_MENUITEM)
1864
1865         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Separator2", "Configuration/---", GTK_UI_MANAGER_SEPARATOR)
1866         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Plugins", "Configuration/Plugins", GTK_UI_MANAGER_MENUITEM)
1867
1868 /* Help menu */
1869         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "Manual", "Help/Manual", GTK_UI_MANAGER_MENUITEM)
1870         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "FAQ", "Help/FAQ", GTK_UI_MANAGER_MENUITEM)
1871         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "IconLegend", "Help/IconLegend", GTK_UI_MANAGER_MENUITEM)
1872 #ifdef G_OS_WIN32
1873         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "Separator1", "Help/---", GTK_UI_MANAGER_SEPARATOR)
1874         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "SetDefault", "Help/SetDefault", GTK_UI_MANAGER_MENUITEM)
1875 #endif
1876         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "Separator2", "Help/---", GTK_UI_MANAGER_SEPARATOR)
1877         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "About", "Help/About", GTK_UI_MANAGER_MENUITEM)
1878
1879
1880         menubar = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu");
1881         if (prefs_common.mainwin_menubar)
1882                 gtk_widget_show_all(menubar);
1883         else
1884                 gtk_widget_hide(menubar);
1885         gtk_window_add_accel_group(GTK_WINDOW(window), gtk_ui_manager_get_accel_group(mainwin->ui_manager));
1886
1887         gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, TRUE, 0);
1888
1889         if (prefs_common.toolbar_detachable) {
1890                 handlebox = gtk_handle_box_new();
1891                 gtk_widget_show(handlebox);
1892                 gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
1893                 g_signal_connect(G_OBJECT(handlebox), "child_attached",
1894                                  G_CALLBACK(toolbar_child_attached), mainwin);
1895                 g_signal_connect(G_OBJECT(handlebox), "child_detached",
1896                                  G_CALLBACK(toolbar_child_detached), mainwin);
1897         } else {
1898                 handlebox = gtk_hbox_new(FALSE, 0);
1899                 gtk_widget_show(handlebox);
1900                 gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
1901         }
1902         /* link window to mainwin->window to avoid gdk warnings */
1903         mainwin->window       = window;
1904         mainwin_list = g_list_append(mainwin_list, mainwin);
1905         
1906         mainwin->toolbar = toolbar_create(TOOLBAR_MAIN, 
1907                                           handlebox, 
1908                                           (gpointer)mainwin);
1909         toolbar_set_learn_button
1910                 (mainwin->toolbar,
1911                  LEARN_SPAM);
1912
1913         /* vbox that contains body */
1914         vbox_body = gtk_vbox_new(FALSE, BORDER_WIDTH);
1915         gtk_widget_show(vbox_body);
1916         gtk_container_set_border_width(GTK_CONTAINER(vbox_body), BORDER_WIDTH);
1917         gtk_box_pack_start(GTK_BOX(vbox), vbox_body, TRUE, TRUE, 0);
1918
1919 #ifndef GENERIC_UMPC
1920         hbox_stat = gtk_hbox_new(FALSE, 2);
1921         gtk_box_pack_end(GTK_BOX(vbox_body), hbox_stat, FALSE, FALSE, 0);
1922
1923         warning_icon = gtk_image_new_from_stock
1924                         (GTK_STOCK_DIALOG_WARNING, GTK_ICON_SIZE_SMALL_TOOLBAR);
1925         warning_btn = gtk_event_box_new();
1926         gtk_event_box_set_visible_window(GTK_EVENT_BOX(warning_btn), FALSE);
1927         
1928         mainwin->warning_btn      = warning_btn;
1929         
1930         g_signal_connect(G_OBJECT(warning_btn), "button-press-event", 
1931                          G_CALLBACK(warning_icon_pressed),
1932                          (gpointer) mainwin);
1933         g_signal_connect(G_OBJECT(warning_btn), "motion-notify-event",
1934                          G_CALLBACK(warning_visi_notify), mainwin);
1935         g_signal_connect(G_OBJECT(warning_btn), "leave-notify-event",
1936                          G_CALLBACK(warning_leave_notify), mainwin);
1937         g_signal_connect(G_OBJECT(warning_btn), "enter-notify-event",
1938                          G_CALLBACK(warning_enter_notify), mainwin);
1939
1940         gtk_container_add (GTK_CONTAINER(warning_btn), warning_icon);
1941
1942         CLAWS_SET_TIP(warning_btn, 
1943                              _("Some error(s) happened. Click here to view log."));
1944         gtk_box_pack_start(GTK_BOX(hbox_stat), warning_btn, FALSE, FALSE, 0);
1945
1946         statusbar = statusbar_create();
1947         gtk_box_pack_start(GTK_BOX(hbox_stat), statusbar, TRUE, TRUE, 0);
1948
1949         progressbar = gtk_progress_bar_new();
1950         gtk_widget_set_size_request(progressbar, 120, 1);
1951         gtk_box_pack_start(GTK_BOX(hbox_stat), progressbar, FALSE, FALSE, 0);
1952
1953         online_pixmap = stock_pixmap_widget(STOCK_PIXMAP_ONLINE);
1954         offline_pixmap = stock_pixmap_widget(STOCK_PIXMAP_OFFLINE);
1955         online_switch = gtk_button_new ();
1956         gtk_widget_set_can_focus(online_switch, FALSE);
1957         CLAWS_SET_TIP(online_switch, 
1958                              _("You are online. Click the icon to go offline"));
1959         offline_switch = gtk_button_new ();
1960         CLAWS_SET_TIP(offline_switch, 
1961                              _("You are offline. Click the icon to go online"));
1962         gtk_container_add (GTK_CONTAINER(online_switch), online_pixmap);
1963         gtk_button_set_relief (GTK_BUTTON(online_switch), GTK_RELIEF_NONE);
1964         g_signal_connect (G_OBJECT(online_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
1965         gtk_box_pack_start (GTK_BOX(hbox_stat), online_switch, FALSE, FALSE, 0);
1966         gtk_container_add (GTK_CONTAINER(offline_switch), offline_pixmap);
1967         gtk_button_set_relief (GTK_BUTTON(offline_switch), GTK_RELIEF_NONE);
1968         g_signal_connect (G_OBJECT(offline_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
1969         gtk_box_pack_start (GTK_BOX(hbox_stat), offline_switch, FALSE, FALSE, 0);
1970         
1971         statuslabel = gtk_label_new("");
1972         gtk_box_pack_start(GTK_BOX(hbox_stat), statuslabel, FALSE, FALSE, 0);
1973
1974         ac_button = gtk_button_new();
1975         CLAWS_SET_TIP(ac_button, _("Select account"));
1976         gtk_widget_set_can_focus(ac_button, FALSE);
1977         gtk_widget_set_size_request(ac_button, -1, 0);
1978         gtk_box_pack_end(GTK_BOX(hbox_stat), ac_button, FALSE, FALSE, 0);
1979         g_signal_connect(G_OBJECT(ac_button), "button_press_event",
1980                          G_CALLBACK(ac_label_button_pressed), mainwin);
1981
1982         ac_label = gtk_label_new("");
1983         gtk_container_add(GTK_CONTAINER(ac_button), ac_label);
1984
1985         gtk_widget_show_all(hbox_stat);
1986
1987         gtk_widget_hide(offline_switch);
1988         gtk_widget_hide(progressbar);
1989         gtk_widget_hide(warning_btn);
1990 #else
1991         online_switch = gtk_button_new ();
1992         offline_switch = gtk_button_new ();
1993         g_signal_connect (G_OBJECT(online_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
1994         g_signal_connect (G_OBJECT(offline_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
1995 #endif
1996         /* create views */
1997         mainwin->folderview  = folderview  = folderview_create();
1998         mainwin->summaryview = summaryview = summary_create(mainwin);
1999         mainwin->messageview = messageview = messageview_create(mainwin);
2000
2001         /* init log instances data before creating log views */
2002         set_log_title(LOG_PROTOCOL, _("Network log"));
2003         set_log_prefs(LOG_PROTOCOL,
2004                         &prefs_common.logwin_width,
2005                         &prefs_common.logwin_height);
2006         set_log_title(LOG_DEBUG_FILTERING, _("Filtering/Processing debug log"));
2007         set_log_prefs(LOG_DEBUG_FILTERING,
2008                         &prefs_common.filtering_debugwin_width,
2009                         &prefs_common.filtering_debugwin_height);
2010
2011         /* setup log windows */
2012         mainwin->logwin = log_window_create(LOG_PROTOCOL);
2013         log_window_init(mainwin->logwin);
2014
2015         mainwin->filtering_debugwin = log_window_create(LOG_DEBUG_FILTERING);
2016         log_window_set_clipping(mainwin->logwin,
2017                                 prefs_common.cliplog,
2018                                 prefs_common.loglength);
2019
2020         log_window_init(mainwin->filtering_debugwin);
2021         log_window_set_clipping(mainwin->filtering_debugwin,
2022                                 prefs_common.filtering_debug_cliplog,
2023                                 prefs_common.filtering_debug_loglength);
2024         if (prefs_common.enable_filtering_debug)
2025                 log_message(LOG_DEBUG_FILTERING, _("filtering log enabled\n"));
2026         else
2027                 log_message(LOG_DEBUG_FILTERING, _("filtering log disabled\n"));
2028
2029         folderview->mainwin      = mainwin;
2030         folderview->summaryview  = summaryview;
2031
2032         summaryview->mainwin     = mainwin;
2033         summaryview->folderview  = folderview;
2034         summaryview->messageview = messageview;
2035         summaryview->window      = window;
2036
2037         mainwin->vbox           = vbox;
2038         mainwin->menubar        = menubar;
2039         mainwin->handlebox      = handlebox;
2040         mainwin->vbox_body      = vbox_body;
2041         mainwin->online_switch  = online_switch;
2042         mainwin->offline_switch    = offline_switch;
2043 #ifndef GENERIC_UMPC
2044         messageview->statusbar  = statusbar;
2045         mainwin->statusbar      = statusbar;
2046         mainwin->hbox_stat      = hbox_stat;
2047         mainwin->progressbar    = progressbar;
2048         mainwin->statuslabel    = statuslabel;
2049         mainwin->online_pixmap  = online_pixmap;
2050         mainwin->offline_pixmap = offline_pixmap;
2051         mainwin->ac_button      = ac_button;
2052         mainwin->ac_label       = ac_label;
2053         /* set context IDs for status bar */
2054         mainwin->mainwin_cid = gtk_statusbar_get_context_id
2055                 (GTK_STATUSBAR(statusbar), "Main Window");
2056         mainwin->folderview_cid = gtk_statusbar_get_context_id
2057                 (GTK_STATUSBAR(statusbar), "Folder View");
2058         mainwin->summaryview_cid = gtk_statusbar_get_context_id
2059                 (GTK_STATUSBAR(statusbar), "Summary View");
2060         mainwin->messageview_cid = gtk_statusbar_get_context_id
2061                 (GTK_STATUSBAR(statusbar), "Message View");
2062         messageview->statusbar_cid = mainwin->messageview_cid;
2063
2064 #else
2065         messageview->statusbar  = NULL;
2066         mainwin->statusbar      = NULL;
2067         mainwin->hbox_stat      = NULL;
2068         /* mainwin->progressbar is set in toolbar.c */
2069         mainwin->statuslabel    = NULL;
2070         mainwin->online_pixmap  = NULL;
2071         mainwin->offline_pixmap = NULL;
2072         mainwin->ac_button      = NULL;
2073         mainwin->ac_label       = NULL;
2074 #endif
2075         
2076         /* allocate colors for summary view and folder view */
2077         summaryview->color_marked.red = summaryview->color_marked.green = 0;
2078         summaryview->color_marked.blue = (guint16)65535;
2079
2080         summaryview->color_dim.red = summaryview->color_dim.green =
2081                 summaryview->color_dim.blue = COLOR_DIM;
2082
2083         gtkut_convert_int_to_gdk_color(prefs_common.color[COL_NEW],
2084                                        &folderview->color_new);
2085
2086         gtkut_convert_int_to_gdk_color(prefs_common.color[COL_TGT_FOLDER],
2087                                        &folderview->color_op);
2088
2089         color[0] = summaryview->color_marked;
2090         color[1] = summaryview->color_dim;
2091         color[2] = folderview->color_new;
2092         color[3] = folderview->color_op;
2093
2094         colormap = gdk_drawable_get_colormap(gtk_widget_get_window(window));
2095         gdk_colormap_alloc_colors(colormap, color, 4, FALSE, TRUE, success);
2096         for (i = 0; i < 4; i++) {
2097                 if (success[i] == FALSE)
2098                         g_warning("MainWindow: color allocation %d failed", i);
2099         }
2100
2101         debug_print("done.\n");
2102
2103         messageview->visible = prefs_common.msgview_visible;
2104
2105         main_window_set_widgets(mainwin, prefs_common.layout_mode);
2106
2107         g_signal_connect(G_OBJECT(window), "size_allocate",
2108                          G_CALLBACK(main_window_size_allocate_cb),
2109                          mainwin);
2110
2111         /* set menu items */
2112         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Encoding/"CS_AUTO, TRUE);
2113
2114         menuitem = NULL;
2115         switch (prefs_common.toolbar_style) {
2116         case TOOLBAR_NONE:
2117                 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/Hide");
2118                 break;
2119         case TOOLBAR_ICON:
2120                 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/IconOnly");
2121                 break;
2122         case TOOLBAR_TEXT:
2123                 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/TextOnly");
2124                 break;
2125         case TOOLBAR_BOTH:
2126                 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/TextBelowIcon");
2127                 break;
2128         case TOOLBAR_BOTH_HORIZ:
2129                 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/TextBesideIcon");
2130         }
2131         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), TRUE);
2132
2133         toolbar_set_style(mainwin->toolbar->toolbar, 
2134                           mainwin->handlebox, 
2135                           prefs_common.toolbar_style);
2136 #ifndef GENERIC_UMPC
2137         gtk_widget_hide(mainwin->hbox_stat);
2138         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/StatusBar");
2139         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
2140                                        prefs_common.show_statusbar);
2141 #endif  
2142         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/ColumnHeaders");
2143         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
2144                                        prefs_common.show_col_headers);
2145         /* set account selection menu */
2146         ac_menu = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Configuration/ChangeAccount");
2147         mainwin->ac_menu = ac_menu;
2148
2149         toolbar_main_set_sensitive(mainwin);
2150
2151         /* create actions menu */
2152         main_window_update_actions_menu(mainwin);
2153
2154         main_create_mailing_list_menu (mainwin, NULL);
2155
2156         /* attach accel groups to main window */
2157 #define ADD_MENU_ACCEL_GROUP_TO_WINDOW(menu,win)                        \
2158         gtk_window_add_accel_group                                      \
2159                 (GTK_WINDOW(win),                                       \
2160                  gtk_ui_manager_get_accel_group(gtkut_ui_manager()));
2161
2162         ADD_MENU_ACCEL_GROUP_TO_WINDOW(summaryview->popupmenu, mainwin->window);
2163         
2164         g_signal_connect(G_OBJECT(window), "window_state_event",
2165                          G_CALLBACK(mainwindow_state_event_cb), mainwin);
2166         g_signal_connect(G_OBJECT(window), "visibility_notify_event",
2167                          G_CALLBACK(mainwindow_visibility_event_cb), mainwin);
2168         gtk_widget_add_events(GTK_WIDGET(window), GDK_VISIBILITY_NOTIFY_MASK);
2169
2170         if (prefs_common.layout_mode == VERTICAL_LAYOUT ||
2171             prefs_common.layout_mode == SMALL_LAYOUT) {
2172                 summary_relayout(mainwin->summaryview); 
2173         }
2174         summary_update_unread(mainwin->summaryview, NULL);
2175         
2176         /* initialize views */
2177         folderview_init(folderview);
2178         summary_init(summaryview);
2179         messageview_init(messageview);
2180 #ifdef USE_GNUTLS
2181         sslcertwindow_register_hook();
2182 #endif
2183         mainwin->lock_count = 0;
2184         mainwin->menu_lock_count = 0;
2185         mainwin->cursor_count = 0;
2186
2187         mainwin->progressindicator_hook =
2188                 hooks_register_hook(PROGRESSINDICATOR_HOOKLIST, mainwindow_progressindicator_hook, mainwin);
2189
2190         if (!watch_cursor)
2191                 watch_cursor = gdk_cursor_new(GDK_WATCH);
2192         if (!hand_cursor)
2193                 hand_cursor = gdk_cursor_new(GDK_HAND2);
2194
2195         /* init work_offline */
2196         if (prefs_common.work_offline)
2197                 online_switch_clicked (GTK_BUTTON(online_switch), mainwin);
2198
2199         mainwindow_colorlabel_menu_create(mainwin, FALSE);
2200         mainwindow_tags_menu_create(mainwin, FALSE);
2201
2202         if (prefs_common.mainwin_fullscreen) {
2203                 cm_toggle_menu_set_active_full(mainwin->ui_manager, 
2204                         "Menu/View/FullScreen",
2205                         TRUE);
2206         }
2207         if (prefs_common.mainwin_menubar)
2208                 cm_toggle_menu_set_active_full(mainwin->ui_manager,"Menu/View/ShowHide/MenuBar", TRUE);
2209         
2210         return mainwin;
2211 }
2212
2213 void main_window_update_actions_menu(MainWindow *mainwin)
2214 {
2215         action_update_mainwin_menu(mainwin->ui_manager, "/Menu/Tools/Actions", mainwin);
2216 }
2217
2218 void main_window_cursor_wait(MainWindow *mainwin)
2219 {
2220
2221         if (mainwin->cursor_count == 0) {
2222                 gdk_window_set_cursor(gtk_widget_get_window(mainwin->window), watch_cursor);
2223                 textview_cursor_wait(mainwin->messageview->mimeview->textview);
2224         }
2225         
2226         mainwin->cursor_count++;
2227
2228         gdk_flush();
2229 }
2230
2231 void main_window_cursor_normal(MainWindow *mainwin)
2232 {
2233         if (mainwin->cursor_count)
2234                 mainwin->cursor_count--;
2235
2236         if (mainwin->cursor_count == 0) {
2237                 gdk_window_set_cursor(gtk_widget_get_window(mainwin->window), NULL);
2238                 textview_cursor_normal(mainwin->messageview->mimeview->textview);
2239         }
2240         gdk_flush();
2241 }
2242
2243 /* lock / unlock the user-interface */
2244 void main_window_lock(MainWindow *mainwin)
2245 {
2246         if (mainwin->lock_count == 0 && mainwin->ac_button)
2247                 gtk_widget_set_sensitive(mainwin->ac_button, FALSE);
2248
2249         mainwin->lock_count++;
2250
2251         main_window_set_menu_sensitive(mainwin);
2252         toolbar_main_set_sensitive(mainwin);
2253 }
2254
2255 void main_window_unlock(MainWindow *mainwin)
2256 {
2257         if (mainwin->lock_count)
2258                 mainwin->lock_count--;
2259
2260         main_window_set_menu_sensitive(mainwin);
2261         toolbar_main_set_sensitive(mainwin);
2262
2263         if (mainwin->lock_count == 0 && mainwin->ac_button)
2264                 gtk_widget_set_sensitive(mainwin->ac_button, TRUE);
2265 }
2266
2267 static void main_window_menu_callback_block(MainWindow *mainwin)
2268 {
2269         mainwin->menu_lock_count++;
2270 }
2271
2272 static void main_window_menu_callback_unblock(MainWindow *mainwin)
2273 {
2274         if (mainwin->menu_lock_count)
2275                 mainwin->menu_lock_count--;
2276 }
2277
2278 static guint prefs_tag = 0;
2279
2280 void main_window_reflect_prefs_all(void)
2281 {
2282         main_window_reflect_prefs_all_real(FALSE);
2283 }
2284
2285 static gboolean reflect_prefs_timeout_cb(gpointer data) 
2286 {
2287         gboolean pixmap_theme_changed = GPOINTER_TO_INT(data);
2288         GList *cur;
2289         MainWindow *mainwin;
2290 #ifndef GENERIC_UMPC
2291         GtkWidget *pixmap;
2292 #endif
2293         for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2294                 mainwin = (MainWindow *)cur->data;
2295
2296                 main_window_show_cur_account(mainwin);
2297                 main_window_set_menu_sensitive(mainwin);
2298                 toolbar_main_set_sensitive(mainwin);
2299
2300                 /* pixmap themes */
2301                 if (pixmap_theme_changed) {
2302                         toolbar_update(TOOLBAR_MAIN, mainwin);
2303                         messageview_reflect_prefs_pixmap_theme();
2304                         compose_reflect_prefs_pixmap_theme();
2305                         folderview_reinit_fonts(mainwin->folderview);
2306                         summary_reflect_prefs_pixmap_theme(mainwin->summaryview);
2307                         foldersel_reflect_prefs_pixmap_theme();
2308 #ifndef USE_ALT_ADDRBOOK
2309                         addressbook_reflect_prefs_pixmap_theme();
2310 #endif
2311 #ifndef GENERIC_UMPC
2312                         pixmap = stock_pixmap_widget(STOCK_PIXMAP_ONLINE);
2313                         gtk_container_remove(GTK_CONTAINER(mainwin->online_switch), 
2314                                              mainwin->online_pixmap);
2315                         gtk_container_add (GTK_CONTAINER(mainwin->online_switch), pixmap);
2316                         gtk_widget_show(pixmap);
2317                         mainwin->online_pixmap = pixmap;
2318                         pixmap = stock_pixmap_widget(STOCK_PIXMAP_OFFLINE);
2319                         gtk_container_remove(GTK_CONTAINER(mainwin->offline_switch), 
2320                                              mainwin->offline_pixmap);
2321                         gtk_container_add (GTK_CONTAINER(mainwin->offline_switch), pixmap);
2322                         gtk_widget_show(pixmap);
2323                         mainwin->offline_pixmap = pixmap;
2324 #endif
2325                         hooks_invoke(THEME_CHANGED_HOOKLIST, NULL);
2326                 }
2327                 
2328                 headerview_set_font(mainwin->messageview->headerview);
2329                 headerview_set_visibility(mainwin->messageview->headerview,
2330                                           prefs_common.display_header_pane);
2331                 textview_reflect_prefs(mainwin->messageview->mimeview->textview);
2332                 folderview_reflect_prefs();
2333                 summary_reflect_prefs();
2334 #ifndef GENERIC_UMPC
2335                 summary_redisplay_msg(mainwin->summaryview);
2336 #endif
2337                 if (prefs_common.layout_mode == SMALL_LAYOUT) {
2338                         if (mainwin->in_folder) {
2339                                 mainwindow_enter_folder(mainwin);
2340                         } else {
2341                                 mainwindow_exit_folder(mainwin);
2342                         }
2343                 }
2344         }
2345         prefs_tag = 0;
2346         return FALSE;
2347 }
2348
2349 void main_window_reflect_prefs_all_now(void)
2350 {
2351         reflect_prefs_timeout_cb(GINT_TO_POINTER(FALSE));
2352 }
2353
2354 void main_window_reflect_prefs_custom_colors(MainWindow *mainwin)
2355 {
2356         GtkMenuShell *menu;
2357         GList *children, *cur;
2358
2359         /* re-create colorlabel submenu */
2360         menu = GTK_MENU_SHELL(mainwin->colorlabel_menu);
2361         cm_return_if_fail(menu != NULL);
2362
2363         /* clear items. get item pointers. */
2364         children = gtk_container_get_children(GTK_CONTAINER(menu));
2365         for (cur = children; cur != NULL && cur->data != NULL; cur = cur->next) {
2366                 g_signal_handlers_disconnect_matched
2367                          (gtk_ui_manager_get_accel_group(mainwin->ui_manager), 
2368                          G_SIGNAL_MATCH_DATA|G_SIGNAL_MATCH_FUNC,
2369                          0, 0, NULL, mainwin_accel_changed_cb, cur->data);
2370                 gtk_menu_item_set_submenu(GTK_MENU_ITEM(cur->data), NULL);
2371         }
2372         g_list_free(children);
2373         mainwindow_colorlabel_menu_create(mainwin, TRUE);
2374         summary_reflect_prefs_custom_colors(mainwin->summaryview);
2375         folderview_reinit_fonts(mainwin->folderview);
2376 }
2377
2378 static gint tags_tag = 0;
2379 static gboolean main_window_reflect_tags_changes_real(gpointer data)
2380 {
2381         GtkMenuShell *menu;
2382         GList *children, *cur;
2383         MainWindow *mainwin = (MainWindow *)data;
2384
2385         if (summary_is_locked(mainwin->summaryview)) {
2386                 return TRUE;
2387         }
2388         /* re-create tags submenu */
2389         menu = GTK_MENU_SHELL(mainwin->tags_menu);
2390         cm_return_val_if_fail(menu != NULL, FALSE);
2391
2392         /* clear items. get item pointers. */
2393         children = gtk_container_get_children(GTK_CONTAINER(menu));
2394         for (cur = children; cur != NULL && cur->data != NULL; cur = cur->next) {
2395                 gtk_menu_item_set_submenu(GTK_MENU_ITEM(cur->data), NULL);
2396         }
2397         g_list_free(children);
2398         mainwindow_tags_menu_create(mainwin, TRUE);
2399         summary_reflect_tags_changes(mainwin->summaryview);
2400         
2401         tags_tag = 0;
2402         return FALSE;
2403 }
2404
2405 void main_window_reflect_tags_changes(MainWindow *mainwin)
2406 {
2407         if (tags_tag == 0) {
2408                 tags_tag = g_timeout_add(100, main_window_reflect_tags_changes_real, 
2409                                                 mainwin);
2410         }
2411 }
2412
2413 void main_window_reflect_prefs_all_real(gboolean pixmap_theme_changed)
2414 {
2415         if (prefs_tag == 0) {
2416                 prefs_tag = g_timeout_add(100, reflect_prefs_timeout_cb, 
2417                                                 GINT_TO_POINTER(pixmap_theme_changed));
2418         }
2419 }
2420
2421 void main_window_set_summary_column(void)
2422 {
2423         GList *cur;
2424         MainWindow *mainwin;
2425
2426         for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2427                 mainwin = (MainWindow *)cur->data;
2428                 summary_set_column_order(mainwin->summaryview);
2429         }
2430 }
2431
2432 void main_window_set_folder_column(void)
2433 {
2434         GList *cur;
2435         MainWindow *mainwin;
2436
2437         for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2438                 mainwin = (MainWindow *)cur->data;
2439                 folderview_set_column_order(mainwin->folderview);
2440         }
2441 }
2442
2443 static void main_window_set_account_selector_menu(MainWindow *mainwin,
2444                                                   GList *account_list)
2445 {
2446         GList *cur_ac;
2447         GtkWidget *menuitem;
2448         PrefsAccount *ac_prefs;
2449         GtkWidget *menu;
2450         gchar *accel_path;
2451
2452         menu = gtk_menu_new();
2453         gtk_menu_set_accel_group (GTK_MENU (menu), 
2454                 gtk_ui_manager_get_accel_group(mainwin->ui_manager));
2455
2456         for (cur_ac = account_list; cur_ac != NULL; cur_ac = cur_ac->next) {
2457                 ac_prefs = (PrefsAccount *)cur_ac->data;
2458
2459                 menuitem = gtk_menu_item_new_with_label
2460                         (ac_prefs->account_name
2461                          ? ac_prefs->account_name : _("Untitled"));
2462                 gtk_widget_show(menuitem);
2463                 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
2464                 g_signal_connect(G_OBJECT(menuitem), "activate",
2465                                  G_CALLBACK(account_selector_menu_cb),
2466                                  ac_prefs);
2467                 accel_path = g_strconcat("<Actions>/Menu/Configuration/ChangeAccount/",(ac_prefs->account_name
2468                          ? ac_prefs->account_name : _("Untitled")), NULL );
2469                 gtk_menu_item_set_accel_path(GTK_MENU_ITEM(menuitem), accel_path);
2470                 g_free(accel_path);
2471         }
2472         gtk_menu_item_set_submenu(GTK_MENU_ITEM(mainwin->ac_menu), menu);
2473 }
2474
2475 static void main_window_set_account_receive_menu(MainWindow *mainwin,
2476                                                  GList *account_list)
2477 {
2478         GList *children, *child;
2479         GtkWidget *menu;
2480         GtkWidget *menuitem;
2481         PrefsAccount *ac_prefs;
2482
2483         menu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(
2484                 gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/Receive")));
2485
2486         /* search for separator */
2487         children = gtk_container_get_children(GTK_CONTAINER(menu));
2488         for (child = children; child != NULL; child = child->next) {
2489                 if (child->data == gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/Receive/Separator1")) {
2490                         child = child->next;
2491                         break;
2492                 }
2493         }
2494
2495         /* destroy all previous menu item */
2496         while (child != NULL) {
2497                 gtk_widget_destroy(GTK_WIDGET(child->data));
2498                 child = child->next;
2499         }
2500
2501         g_list_free(children);
2502
2503         for (child = account_list; child != NULL; child = child->next) {
2504                 ac_prefs = (PrefsAccount *)child->data;
2505
2506                 if (ac_prefs->protocol == A_NONE)
2507                         continue;
2508
2509                 menuitem = gtk_menu_item_new_with_label
2510                         (ac_prefs->account_name ? ac_prefs->account_name
2511                          : _("Untitled"));
2512                 gtk_widget_show(menuitem);
2513                 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
2514                 g_signal_connect(G_OBJECT(menuitem), "activate",
2515                                  G_CALLBACK(account_receive_menu_cb),
2516                                  ac_prefs);
2517         }
2518 }
2519
2520 static void main_window_set_toolbar_combo_receive_menu(MainWindow *mainwin,
2521                                                        GList *account_list)
2522 {
2523         GList *cur_ac;
2524         GtkWidget *menuitem;
2525         PrefsAccount *ac_prefs;
2526         GtkWidget *menu = NULL;
2527
2528         if (mainwin->toolbar->getall_btn == NULL) /* button doesn't exist */
2529                 return;
2530
2531         menu = gtk_menu_tool_button_get_menu(GTK_MENU_TOOL_BUTTON(mainwin->toolbar->getall_btn));
2532         if (menu)
2533                 gtk_widget_destroy(menu);
2534         menu = gtk_menu_new();
2535
2536         for (cur_ac = account_list; cur_ac != NULL; cur_ac = cur_ac->next) {
2537                 ac_prefs = (PrefsAccount *)cur_ac->data;
2538
2539                 if (ac_prefs->protocol == A_NONE)
2540                         continue;
2541
2542                 menuitem = gtk_menu_item_new_with_label
2543                         (ac_prefs->account_name
2544                          ? ac_prefs->account_name : _("Untitled"));
2545                 gtk_widget_show(menuitem);
2546                 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
2547                 g_signal_connect(G_OBJECT(menuitem), "activate",
2548                                  G_CALLBACK(account_receive_menu_cb),
2549                                  ac_prefs);
2550         }
2551         gtk_menu_tool_button_set_menu(GTK_MENU_TOOL_BUTTON(mainwin->toolbar->getall_btn), menu);
2552 }
2553
2554 static void main_window_set_toolbar_combo_compose_menu(MainWindow *mainwin,
2555                                                        GList *account_list)
2556 {
2557 #ifndef GENERIC_UMPC
2558         GList *cur_ac;
2559         GtkWidget *menuitem;
2560         PrefsAccount *ac_prefs;
2561         GtkWidget *menu = NULL;
2562
2563         if (mainwin->toolbar->compose_mail_btn == NULL) /* button doesn't exist */
2564                 return;
2565
2566         menu = gtk_menu_tool_button_get_menu(GTK_MENU_TOOL_BUTTON(mainwin->toolbar->compose_mail_btn));
2567         if (menu)
2568                 gtk_widget_destroy(menu);
2569         menu = gtk_menu_new();
2570
2571         for (cur_ac = account_list; cur_ac != NULL; cur_ac = cur_ac->next) {
2572                 ac_prefs = (PrefsAccount *)cur_ac->data;
2573
2574                 menuitem = gtk_menu_item_new_with_label
2575                         (ac_prefs->account_name
2576                          ? ac_prefs->account_name : _("Untitled"));
2577                 gtk_widget_show(menuitem);
2578                 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
2579                 g_signal_connect(G_OBJECT(menuitem), "activate",
2580                                  G_CALLBACK(account_compose_menu_cb),
2581                                  ac_prefs);
2582         }
2583         gtk_menu_tool_button_set_menu(GTK_MENU_TOOL_BUTTON(mainwin->toolbar->compose_mail_btn), menu);
2584 #endif
2585 }
2586
2587 void main_window_set_account_menu(GList *account_list)
2588 {
2589         GList *cur;
2590         MainWindow *mainwin;
2591
2592         for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2593                 mainwin = (MainWindow *)cur->data;
2594                 main_window_set_account_selector_menu(mainwin, account_list);
2595                 main_window_set_account_receive_menu(mainwin, account_list);
2596                 main_window_set_toolbar_combo_receive_menu(mainwin, account_list);
2597                 main_window_set_toolbar_combo_compose_menu(mainwin, account_list);
2598         }
2599         hooks_invoke(ACCOUNT_LIST_CHANGED_HOOKLIST, NULL);
2600 }
2601
2602 void main_window_set_account_menu_only_toolbar(GList *account_list)
2603 {
2604         GList *cur;
2605         MainWindow *mainwin;
2606
2607         for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2608                 mainwin = (MainWindow *)cur->data;
2609                 main_window_set_toolbar_combo_receive_menu(mainwin, account_list);
2610                 main_window_set_toolbar_combo_compose_menu(mainwin, account_list);
2611         }
2612 }
2613
2614 static void main_window_show_cur_account(MainWindow *mainwin)
2615 {
2616         gchar *buf;
2617         gchar *ac_name;
2618
2619         ac_name = g_strdup(cur_account
2620                            ? (cur_account->account_name
2621                               ? cur_account->account_name : _("Untitled"))
2622                            : _("none"));
2623
2624         if (cur_account)
2625                 buf = g_strdup_printf("%s - %s", ac_name, PROG_VERSION);
2626         else
2627                 buf = g_strdup(PROG_VERSION);
2628         gtk_window_set_title(GTK_WINDOW(mainwin->window), buf);
2629         g_free(buf);
2630
2631         if (mainwin->ac_label)
2632                 gtk_label_set_text(GTK_LABEL(mainwin->ac_label), ac_name);
2633         if (mainwin->ac_button)
2634                 gtk_widget_queue_resize(mainwin->ac_button);
2635
2636         g_free(ac_name);
2637 }
2638 #ifndef GENERIC_UMPC
2639 static void main_window_separation_change(MainWindow *mainwin, LayoutType layout_mode)
2640 {
2641         GtkWidget *folder_wid  = GTK_WIDGET_PTR(mainwin->folderview);
2642         GtkWidget *summary_wid = GTK_WIDGET_PTR(mainwin->summaryview);
2643         GtkWidget *message_wid = mainwin->messageview->vbox;
2644
2645         if (layout_mode == prefs_common.layout_mode) 
2646                 return;
2647
2648         debug_print("Changing window separation type from %d to %d\n",
2649                     prefs_common.layout_mode, layout_mode);
2650
2651         /* remove widgets from those containers */
2652         g_object_ref(folder_wid);
2653         g_object_ref(summary_wid);
2654         g_object_ref(message_wid);
2655         gtkut_container_remove
2656                 (GTK_CONTAINER(gtk_widget_get_parent(folder_wid)), folder_wid);
2657         gtkut_container_remove
2658                 (GTK_CONTAINER(gtk_widget_get_parent(summary_wid)), summary_wid);
2659         gtkut_container_remove
2660                 (GTK_CONTAINER(gtk_widget_get_parent(message_wid)), message_wid);
2661
2662         gtk_widget_hide(mainwin->window);
2663         main_window_set_widgets(mainwin, layout_mode);
2664         gtk_widget_show(mainwin->window);
2665
2666         g_object_unref(folder_wid);
2667         g_object_unref(summary_wid);
2668         g_object_unref(message_wid);
2669 }
2670 #endif
2671 void mainwindow_reset_paned(GtkPaned *paned)
2672 {
2673                 gint min, max, mid;
2674
2675                 if (gtk_paned_get_child1(GTK_PANED(paned)))
2676                         gtk_widget_show(gtk_paned_get_child1(GTK_PANED(paned)));
2677                 if (gtk_paned_get_child2(GTK_PANED(paned)))
2678                         gtk_widget_show(gtk_paned_get_child2(GTK_PANED(paned)));
2679
2680 GTK_EVENTS_FLUSH();
2681                 g_object_get (G_OBJECT(paned),
2682                                 "min-position",
2683                                 &min, NULL);
2684                 g_object_get (G_OBJECT(paned),
2685                                 "max-position",
2686                                 &max, NULL);
2687                 mid = (min+max)/2;
2688                 gtk_paned_set_position(GTK_PANED(paned), mid);
2689 }
2690
2691 static void mainwin_paned_show_first(GtkPaned *paned)
2692 {
2693                 gint max;
2694                 g_object_get (G_OBJECT(paned),
2695                                 "max-position",
2696                                 &max, NULL);
2697
2698                 if (gtk_paned_get_child1(GTK_PANED(paned)))
2699                         gtk_widget_show(gtk_paned_get_child1(GTK_PANED(paned)));
2700                 if (gtk_paned_get_child2(GTK_PANED(paned)))
2701                         gtk_widget_hide(gtk_paned_get_child2(GTK_PANED(paned)));
2702                 gtk_paned_set_position(GTK_PANED(paned), max);
2703 }
2704
2705 static void mainwin_paned_show_last(GtkPaned *paned)
2706 {
2707                 gint min;
2708                 g_object_get (G_OBJECT(paned),
2709                                 "min-position",
2710                                 &min, NULL);
2711
2712                 if (gtk_paned_get_child1(GTK_PANED(paned)))
2713                         gtk_widget_hide(gtk_paned_get_child1(GTK_PANED(paned)));
2714                 if (gtk_paned_get_child2(GTK_PANED(paned)))
2715                         gtk_widget_show(gtk_paned_get_child2(GTK_PANED(paned)));
2716                 gtk_paned_set_position(GTK_PANED(paned), min);
2717 }
2718
2719 void main_window_toggle_message_view(MainWindow *mainwin)
2720 {
2721         SummaryView *summaryview = mainwin->summaryview;
2722         GtkWidget *ppaned = NULL;
2723         GtkWidget *container = NULL;
2724
2725         switch (prefs_common.layout_mode) {
2726         case NORMAL_LAYOUT:
2727         case VERTICAL_LAYOUT:
2728         case SMALL_LAYOUT:
2729                 ppaned = mainwin->vpaned;
2730                 container = mainwin->hpaned;
2731                 if (gtk_widget_get_parent(ppaned) != NULL) {
2732                         mainwin->messageview->visible = FALSE;
2733                         summaryview->displayed = NULL;
2734                         g_object_ref(ppaned);
2735                         gtkut_container_remove(GTK_CONTAINER(container), ppaned);
2736                         gtk_widget_reparent(GTK_WIDGET_PTR(summaryview), container);
2737                 } else {
2738                         mainwin->messageview->visible = TRUE;
2739                         gtk_widget_reparent(GTK_WIDGET_PTR(summaryview), ppaned);
2740                         gtk_container_add(GTK_CONTAINER(container), ppaned);
2741                         g_object_unref(ppaned);
2742                 }
2743                 break;
2744         case WIDE_LAYOUT:
2745                 container = mainwin->vpaned;
2746                 if (gtk_widget_get_parent(mainwin->messageview->vbox) != NULL) {
2747                         mainwin->messageview->visible = FALSE;
2748                         summaryview->displayed = NULL;
2749                         g_object_ref(mainwin->messageview->vbox);
2750                         gtkut_container_remove(GTK_CONTAINER(container), mainwin->messageview->vbox);
2751                 } else {
2752                         mainwin->messageview->visible = TRUE;
2753                         gtk_container_add(GTK_CONTAINER(container), mainwin->messageview->vbox);
2754                         g_object_unref(mainwin->messageview->vbox);
2755                 }
2756                 break;
2757         case WIDE_MSGLIST_LAYOUT:
2758                 g_warning("can't hide messageview in this wide msglist layout");
2759                 break;
2760         }
2761
2762         if (messageview_is_visible(mainwin->messageview))
2763                 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
2764                               GTK_ARROW_DOWN, GTK_SHADOW_OUT);
2765         else
2766                 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
2767                               GTK_ARROW_UP, GTK_SHADOW_OUT);
2768
2769         if (mainwin->messageview->visible == FALSE)
2770                 messageview_clear(mainwin->messageview);
2771
2772         main_window_set_menu_sensitive(mainwin);
2773
2774         prefs_common.msgview_visible = mainwin->messageview->visible;
2775
2776         if (messageview_is_visible(mainwin->messageview)) {
2777                 gtk_widget_queue_resize(mainwin->hpaned);
2778                 gtk_widget_queue_resize(mainwin->vpaned);
2779         }
2780         summary_grab_focus(summaryview);
2781         if (!summary_is_list(summaryview)) {
2782                 summary_show(summaryview, summaryview->folder_item);
2783         }
2784 }
2785
2786 void main_window_get_size(MainWindow *mainwin)
2787 {
2788         GtkAllocation allocation;
2789
2790         if (mainwin_list == NULL || mainwin->messageview == NULL) {
2791                 debug_print("called after messageview "
2792                             "has been deallocated!\n");
2793                 return;
2794         }
2795
2796         if (prefs_common.mainwin_fullscreen) {
2797                 debug_print("mainwin in full screen state. "
2798                             "Keeping original settings\n");
2799         }
2800
2801         gtk_widget_get_allocation(GTK_WIDGET_PTR(mainwin->summaryview), &allocation);
2802         if (allocation.width > 1 && allocation.height > 1 && !prefs_common.mainwin_fullscreen) {
2803                 prefs_common.summaryview_width = allocation.width;
2804
2805                 if (messageview_is_visible(mainwin->messageview))
2806                         prefs_common.summaryview_height = allocation.height;
2807
2808                 prefs_common.mainview_width = allocation.width;
2809         }
2810
2811         gtk_widget_get_allocation(mainwin->window, &allocation);
2812         if (allocation.width > 1 && allocation.height > 1 &&
2813             !prefs_common.mainwin_maximised && !prefs_common.mainwin_fullscreen) {
2814                 prefs_common.mainview_height = allocation.height;
2815                 prefs_common.mainwin_width   = allocation.width;
2816                 prefs_common.mainwin_height  = allocation.height;
2817         }
2818
2819         gtk_widget_get_allocation(GTK_WIDGET_PTR(mainwin->folderview), &allocation);
2820         if (allocation.width > 1 && allocation.height > 1 &&
2821             !prefs_common.mainwin_fullscreen) {
2822                 prefs_common.folderview_width  = allocation.width;
2823                 prefs_common.folderview_height = allocation.height;
2824         }
2825         
2826         gtk_widget_get_allocation(GTK_WIDGET_PTR(mainwin->messageview), &allocation);
2827         if (allocation.width > 1 && allocation.height > 1 &&
2828             !prefs_common.mainwin_fullscreen) {
2829                 prefs_common.msgview_width = allocation.width;
2830                 prefs_common.msgview_height = allocation.height;
2831         }
2832
2833 /*      debug_print("summaryview size: %d x %d\n",
2834                     prefs_common.summaryview_width,
2835                     prefs_common.summaryview_height);
2836         debug_print("folderview size: %d x %d\n",
2837                     prefs_common.folderview_width,
2838                     prefs_common.folderview_height);
2839         debug_print("messageview size: %d x %d\n",
2840                     prefs_common.msgview_width,
2841                     prefs_common.msgview_height); */
2842 }
2843
2844 void main_window_get_position(MainWindow *mainwin)
2845 {
2846         gint x, y;
2847
2848         if (prefs_common.mainwin_maximised || prefs_common.mainwin_fullscreen)
2849                 return;
2850
2851         gtkut_widget_get_uposition(mainwin->window, &x, &y);
2852
2853         prefs_common.mainview_x = x;
2854         prefs_common.mainview_y = y;
2855         prefs_common.mainwin_x = x;
2856         prefs_common.mainwin_y = y;
2857
2858         debug_print("main window position: %d, %d\n", x, y);
2859 }
2860
2861 void main_window_progress_on(MainWindow *mainwin)
2862 {
2863         gtk_progress_bar_set_text(GTK_PROGRESS_BAR(mainwin->progressbar), "");
2864 }
2865
2866 void main_window_progress_off(MainWindow *mainwin)
2867 {
2868         gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(mainwin->progressbar), 0.0);
2869         gtk_progress_bar_set_text(GTK_PROGRESS_BAR(mainwin->progressbar), "");
2870 }
2871
2872 gboolean main_window_empty_trash(MainWindow *mainwin, gboolean confirm, gboolean for_quit)
2873 {
2874         if (confirm && procmsg_have_trashed_mails_fast()) {
2875                 AlertValue val;
2876                 
2877                 if (for_quit)
2878                         val = alertpanel(_("Empty trash"),
2879                                _("Delete all messages in trash folders?"),
2880                                GTK_STOCK_NO, GTK_STOCK_YES, _("Don't quit"),
2881                                                  ALERTFOCUS_SECOND);
2882                 else
2883                         val = alertpanel(_("Empty trash"),
2884                                _("Delete all messages in trash folders?"),
2885                                GTK_STOCK_NO, GTK_STOCK_YES, NULL,
2886                                                  ALERTFOCUS_SECOND);
2887                 if (val == G_ALERTALTERNATE) {
2888                         debug_print("will empty trash\n");
2889                 } else if (val == G_ALERTDEFAULT) {
2890                         debug_print("will not empty trash\n");
2891                         return TRUE;
2892                 } else {
2893                         return FALSE; /* cancel exit */
2894                 }
2895                 manage_window_focus_in(mainwin->window, NULL, NULL);
2896         }
2897
2898         procmsg_empty_all_trash();
2899
2900         if (mainwin->summaryview->folder_item &&
2901             mainwin->summaryview->folder_item->stype == F_TRASH)
2902                 folderview_grab_focus(mainwin->folderview);
2903         return TRUE;
2904 }
2905
2906 static void main_window_add_mailbox(MainWindow *mainwin)
2907 {
2908         gchar *path;
2909         Folder *folder;
2910
2911         path = input_dialog(_("Add mailbox"),
2912                             _("Input the location of mailbox.\n"
2913                               "If an existing mailbox is specified, it will be\n"
2914                               "scanned automatically."),
2915                             "Mail");
2916         if (!path) return;
2917         if (folder_find_from_path(path)) {
2918                 alertpanel_error(_("The mailbox '%s' already exists."), path);
2919                 g_free(path);
2920                 return;
2921         }
2922         folder = folder_new(folder_get_class_from_string("mh"), 
2923                             !strcmp(path, "Mail") ? _("Mailbox") : 
2924                             g_path_get_basename(path), path);
2925         g_free(path);
2926
2927         if (folder->klass->create_tree(folder) < 0) {
2928                 alertpanel_error(_("Creation of the mailbox failed.\n"
2929                                    "Maybe some files already exist, or you don't have the permission to write there."));
2930                 folder_destroy(folder);
2931                 return;
2932         }
2933
2934         folder_add(folder);
2935         folder_set_ui_func(folder, scan_tree_func, mainwin);
2936         folder_scan_tree(folder, TRUE);
2937         folder_set_ui_func(folder, NULL, NULL);
2938 }
2939
2940 SensitiveCondMask main_window_get_current_state(MainWindow *mainwin)
2941 {
2942         SensitiveCondMask state = 0;
2943         SummarySelection selection;
2944         FolderItem *item = mainwin->summaryview->folder_item;
2945         GList *account_list = account_get_list();
2946         GSList *tmp;
2947         
2948         selection = summary_get_selection_type(mainwin->summaryview);
2949
2950 #define UPDATE_STATE(...) \
2951         do { \
2952                 state |= main_window_get_mask(__VA_ARGS__, -1); \
2953         } while (0)
2954
2955         if (mainwin->lock_count == 0 && !claws_is_starting())
2956                 UPDATE_STATE(M_UNLOCKED);
2957         if (selection != SUMMARY_NONE && selection != SUMMARY_SELECTED_NONE)
2958                 UPDATE_STATE(M_MSG_EXIST);
2959         if (item && item->path && folder_item_parent(item) && !item->no_select) {
2960                 UPDATE_STATE(M_EXEC);
2961                 /*              if (item->folder->type != F_NEWS) */
2962                 UPDATE_STATE(M_ALLOW_DELETE);
2963
2964                 if (prefs_common.immediate_exec == 0
2965                     && mainwin->lock_count == 0)
2966                         UPDATE_STATE(M_DELAY_EXEC);
2967
2968                 if ((selection == SUMMARY_NONE && item->hide_read_msgs)
2969                     || selection != SUMMARY_NONE)
2970                         UPDATE_STATE(M_HIDE_READ_MSG);
2971
2972                 if ((selection == SUMMARY_NONE && item->hide_read_threads)
2973                     || selection != SUMMARY_NONE)
2974                         UPDATE_STATE(M_HIDE_READ_THREADS);
2975         }               
2976         if (mainwin->summaryview->threaded)
2977                 UPDATE_STATE(M_THREADED);
2978         else
2979                 UPDATE_STATE(M_UNTHREADED);
2980         if (selection == SUMMARY_SELECTED_SINGLE ||
2981             selection == SUMMARY_SELECTED_MULTIPLE)
2982                 UPDATE_STATE(M_TARGET_EXIST);
2983         if (selection == SUMMARY_SELECTED_SINGLE)
2984                 UPDATE_STATE(M_SINGLE_TARGET_EXIST);
2985         if (mainwin->summaryview->folder_item &&
2986             mainwin->summaryview->folder_item->folder->klass->type == F_NEWS)
2987                 UPDATE_STATE(M_NEWS);
2988         else
2989                 UPDATE_STATE(M_NOT_NEWS);
2990         if (mainwin->summaryview->folder_item &&
2991             (mainwin->summaryview->folder_item->stype != F_TRASH ||
2992              !folder_has_parent_of_type(mainwin->summaryview->folder_item, F_TRASH)))
2993                 UPDATE_STATE(M_NOT_TRASH);
2994
2995         if (mainwin->summaryview->folder_item
2996             && mainwin->summaryview->folder_item->stype != F_DRAFT)
2997                 UPDATE_STATE(M_NOT_DRAFT);
2998
2999         if (prefs_common.actions_list && g_slist_length(prefs_common.actions_list))
3000                 UPDATE_STATE(M_ACTIONS_EXIST);
3001
3002         tmp = tags_get_list();
3003         if (tmp && g_slist_length(tmp))
3004                 UPDATE_STATE(M_TAGS_EXIST);
3005         g_slist_free(tmp);
3006
3007         if (procmsg_have_queued_mails_fast() && !procmsg_is_sending())
3008                 UPDATE_STATE(M_HAVE_QUEUED_MAILS);
3009
3010         if (selection == SUMMARY_SELECTED_SINGLE &&
3011             (item &&
3012              (folder_has_parent_of_type(item, F_DRAFT) ||
3013               folder_has_parent_of_type(item, F_OUTBOX) ||
3014               folder_has_parent_of_type(item, F_QUEUE))))
3015                 UPDATE_STATE(M_ALLOW_REEDIT);
3016         if (cur_account)
3017                 UPDATE_STATE(M_HAVE_ACCOUNT);
3018         
3019         if (cur_account && cur_account->protocol != A_NONE)
3020                 UPDATE_STATE(M_HAVE_RETRIEVABLE_ACCOUNT);
3021
3022         if (any_folder_want_synchronise())
3023                 UPDATE_STATE(M_WANT_SYNC);
3024
3025         if (item && item->prefs->processing && selection != SUMMARY_NONE)
3026                 UPDATE_STATE(M_HAVE_PROCESSING);
3027
3028         if (g_list_length(account_list) > 1)
3029                 UPDATE_STATE(M_HAVE_MULTI_ACCOUNT);
3030
3031         for (account_list = account_get_list(); account_list != NULL; account_list = account_list->next) {
3032                 if (((PrefsAccount*)account_list->data)->protocol != A_NONE) {
3033                         UPDATE_STATE(M_HAVE_ANY_RETRIEVABLE_ACCOUNT);
3034                         break;
3035                 }
3036         }
3037
3038         for (account_list = account_get_list(); account_list != NULL; account_list = account_list->next) {
3039                 if (((PrefsAccount*)account_list->data)->protocol == A_NNTP) {
3040                         UPDATE_STATE(M_HAVE_NEWS_ACCOUNT);
3041                         break;
3042                 }
3043         }
3044         
3045         if (procmsg_spam_can_learn() &&
3046             (mainwin->summaryview->folder_item &&
3047              mainwin->summaryview->folder_item->folder->klass->type != F_UNKNOWN &&
3048              mainwin->summaryview->folder_item->folder->klass->type != F_NEWS)) {
3049                 UPDATE_STATE(M_CAN_LEARN_SPAM);
3050         }
3051
3052         if (mainwin->summaryview->folder_item) {
3053                 UPDATE_STATE(M_FOLDER_SELECTED);
3054         }
3055
3056         if (inc_is_active())
3057                 UPDATE_STATE(M_INC_ACTIVE);
3058         if (imap_cancel_all_enabled())
3059                 UPDATE_STATE(M_INC_ACTIVE);
3060
3061         if (send_is_active() | procmsg_is_sending())
3062                 UPDATE_STATE(M_SEND_ACTIVE);
3063
3064         if (mainwin->summaryview->deleted > 0)
3065                 UPDATE_STATE(M_DELETED_EXISTS);
3066
3067         if (mainwin->summaryview->deleted > 0 ||
3068             mainwin->summaryview->moved > 0 ||
3069             mainwin->summaryview->copied > 0)
3070                 UPDATE_STATE(M_DELAY_EXEC);
3071
3072         if (summary_is_list(mainwin->summaryview))
3073                 UPDATE_STATE(M_SUMMARY_ISLIST);
3074
3075         if (prefs_common.layout_mode != SMALL_LAYOUT || mainwin->in_folder)
3076                 UPDATE_STATE(M_IN_MSGLIST);
3077
3078         for (account_list = account_get_list(); account_list != NULL; account_list = account_list->next) {
3079                 PrefsAccount *account = account_list->data;
3080                 if (account->session_passwd || account->session_smtp_passwd) {
3081                         UPDATE_STATE(M_SESSION_PASSWORDS);
3082                         break;
3083                 }
3084         }
3085
3086 #ifndef PASSWORD_CRYPTO_OLD
3087         if (master_passphrase_is_entered()) {
3088                 UPDATE_STATE(M_MASTER_PASSPHRASE);
3089         }
3090 #endif
3091 #undef UPDATE_STATE
3092
3093         return state;
3094 }
3095
3096 SensitiveCondMask main_window_get_mask(SensitiveCond cond, ...)
3097 {
3098         va_list args;
3099         gint i;
3100         SensitiveCondMask value;
3101         static SensitiveCondMask SensitiveCond_table[M_MAX_RESERVED];
3102         static gboolean first_time = TRUE;
3103
3104         if (first_time) {
3105                 for (i = 0; i < M_MAX_RESERVED; i++)
3106                         SensitiveCond_table[i] = (SensitiveCondMask) ((SensitiveCondMask)1 << i);
3107                 first_time = FALSE;
3108         }
3109
3110         value = 0;
3111
3112         va_start(args, cond); 
3113         for (i = (gint) cond; i >= 0; i = va_arg(args, gint))
3114                 value |= SensitiveCond_table[i];
3115         va_end(args);
3116
3117         return value;
3118 }
3119
3120 void main_window_set_menu_sensitive(MainWindow *mainwin)
3121 {
3122         SensitiveCondMask state;
3123         gboolean sensitive;
3124         SummaryView *summaryview;
3125         gchar *menu_path;
3126         GtkWidget *menu;
3127         GList *children, *cur_item;
3128         gint i;
3129         gboolean mimepart_selected = FALSE;
3130
3131 #define N_ENTRIES 88
3132         static struct {
3133                 const gchar *entry;
3134                 SensitiveCondMask cond;
3135         } entry[N_ENTRIES];
3136
3137         i = 0;
3138 #define FILL_TABLE(entry_str, ...) \
3139 do { \
3140         entry[i].entry = (const gchar *) entry_str; entry[i++].cond = main_window_get_mask(__VA_ARGS__, -1); \
3141 } while (0)
3142
3143         FILL_TABLE("Menu/File/SaveAs", M_TARGET_EXIST);
3144         FILL_TABLE("Menu/File/SavePartAs", M_SINGLE_TARGET_EXIST);
3145         FILL_TABLE("Menu/File/Print", M_TARGET_EXIST);
3146         FILL_TABLE("Menu/File/SynchroniseFolders", M_WANT_SYNC);
3147         FILL_TABLE("Menu/File/Exit", M_UNLOCKED);
3148
3149         FILL_TABLE("Menu/Edit/SelectThread", M_TARGET_EXIST, M_SUMMARY_ISLIST);
3150         FILL_TABLE("Menu/Edit/Find", M_SINGLE_TARGET_EXIST);
3151         FILL_TABLE("Menu/Edit/QuickSearch", M_IN_MSGLIST);
3152         FILL_TABLE("Menu/Edit/SearchFolder", M_TARGET_EXIST, M_SUMMARY_ISLIST);
3153
3154         FILL_TABLE("Menu/View/SetColumns/Folderlist", M_UNLOCKED, M_SUMMARY_ISLIST);
3155         FILL_TABLE("Menu/View/Sort", M_EXEC, M_SUMMARY_ISLIST);
3156         FILL_TABLE("Menu/View/ThreadView", M_EXEC, M_SUMMARY_ISLIST);
3157         FILL_TABLE("Menu/View/ExpandThreads", M_MSG_EXIST, M_SUMMARY_ISLIST);
3158         FILL_TABLE("Menu/View/CollapseThreads", M_MSG_EXIST, M_SUMMARY_ISLIST);
3159         FILL_TABLE("Menu/View/HideReadThreads", M_HIDE_READ_THREADS, M_SUMMARY_ISLIST, M_NOT_DRAFT);
3160         FILL_TABLE("Menu/View/HideReadMessages", M_HIDE_READ_MSG, M_SUMMARY_ISLIST, M_NOT_DRAFT);
3161         FILL_TABLE("Menu/View/HideDelMessages", M_SUMMARY_ISLIST, M_NOT_DRAFT);
3162         FILL_TABLE("Menu/View/Goto/Prev", M_MSG_EXIST);
3163         FILL_TABLE("Menu/View/Goto/Next", M_MSG_EXIST);
3164         FILL_TABLE("Menu/View/Goto/PrevUnread", M_MSG_EXIST);
3165         FILL_TABLE("Menu/View/Goto/NextUnread", M_MSG_EXIST);
3166         FILL_TABLE("Menu/View/Goto/PrevNew", M_MSG_EXIST);
3167         FILL_TABLE("Menu/View/Goto/NextNew", M_MSG_EXIST);
3168         FILL_TABLE("Menu/View/Goto/PrevMarked", M_MSG_EXIST);
3169         FILL_TABLE("Menu/View/Goto/NextMarked", M_MSG_EXIST);
3170         FILL_TABLE("Menu/View/Goto/PrevLabeled", M_MSG_EXIST);
3171         FILL_TABLE("Menu/View/Goto/NextLabeled", M_MSG_EXIST);
3172         FILL_TABLE("Menu/View/Goto/ParentMessage", M_SINGLE_TARGET_EXIST);
3173         FILL_TABLE("Menu/View/Goto/NextPart", M_SINGLE_TARGET_EXIST);
3174         FILL_TABLE("Menu/View/Goto/PrevPart", M_SINGLE_TARGET_EXIST);
3175         FILL_TABLE("Menu/View/OpenNewWindow", M_SINGLE_TARGET_EXIST);
3176         FILL_TABLE("Menu/View/MessageSource", M_SINGLE_TARGET_EXIST);
3177         FILL_TABLE("Menu/View/Part", M_SINGLE_TARGET_EXIST);
3178         FILL_TABLE("Menu/View/AllHeaders", M_SINGLE_TARGET_EXIST);
3179         FILL_TABLE("Menu/View/Quotes", M_SINGLE_TARGET_EXIST);
3180
3181         FILL_TABLE("Menu/Message/Receive/CurrentAccount", M_HAVE_ACCOUNT, M_UNLOCKED, M_HAVE_RETRIEVABLE_ACCOUNT);
3182         FILL_TABLE("Menu/Message/Receive/AllAccounts", M_HAVE_ACCOUNT, M_UNLOCKED, M_HAVE_ANY_RETRIEVABLE_ACCOUNT);
3183         FILL_TABLE("Menu/Message/Receive/CancelReceiving", M_INC_ACTIVE);
3184         FILL_TABLE("Menu/Message/SendQueue", M_HAVE_ACCOUNT, M_HAVE_QUEUED_MAILS);
3185         FILL_TABLE("Menu/Message/CancelSending", M_SEND_ACTIVE);
3186         FILL_TABLE("Menu/Message/ComposeEmail", M_HAVE_ACCOUNT);
3187         FILL_TABLE("Menu/Message/ComposeNews", M_HAVE_NEWS_ACCOUNT);
3188         FILL_TABLE("Menu/Message/Reply", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_SUMMARY_ISLIST);
3189         FILL_TABLE("Menu/Message/ReplyTo", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_SUMMARY_ISLIST);
3190         FILL_TABLE("Menu/Message/FollowupReply", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_NEWS, M_SUMMARY_ISLIST);
3191         FILL_TABLE("Menu/Message/Forward", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_SUMMARY_ISLIST);
3192         FILL_TABLE("Menu/Message/ForwardAtt", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_SUMMARY_ISLIST);
3193         FILL_TABLE("Menu/Message/Redirect", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_SUMMARY_ISLIST);
3194         FILL_TABLE("Menu/Message/Move", M_TARGET_EXIST, M_ALLOW_DELETE, M_NOT_NEWS);
3195         FILL_TABLE("Menu/Message/Copy", M_TARGET_EXIST, M_EXEC);
3196         FILL_TABLE("Menu/Message/Trash", M_TARGET_EXIST, M_ALLOW_DELETE, M_NOT_NEWS, M_NOT_TRASH);
3197         FILL_TABLE("Menu/Message/Delete", M_TARGET_EXIST, M_ALLOW_DELETE);
3198         FILL_TABLE("Menu/Message/TrashThread", M_TARGET_EXIST, M_SUMMARY_ISLIST);
3199         FILL_TABLE("Menu/Message/DeleteThread", M_TARGET_EXIST, M_SUMMARY_ISLIST);
3200         FILL_TABLE("Menu/Message/CancelNews", M_TARGET_EXIST, M_ALLOW_DELETE, M_NEWS);
3201         FILL_TABLE("Menu/Message/Mark", M_TARGET_EXIST, M_SUMMARY_ISLIST);
3202         FILL_TABLE("Menu/Message/Mark/MarkSpam", M_TARGET_EXIST, M_CAN_LEARN_SPAM);
3203         FILL_TABLE("Menu/Message/Mark/MarkHam", M_TARGET_EXIST, M_CAN_LEARN_SPAM);
3204         FILL_TABLE("Menu/Message/Mark/IgnoreThread", M_TARGET_EXIST);
3205         FILL_TABLE("Menu/Message/Mark/UnignoreThread", M_TARGET_EXIST);
3206         FILL_TABLE("Menu/Message/Mark/Lock", M_TARGET_EXIST);
3207         FILL_TABLE("Menu/Message/Mark/Unlock", M_TARGET_EXIST);
3208         FILL_TABLE("Menu/Message/ColorLabel", M_TARGET_EXIST);
3209         FILL_TABLE("Menu/Message/Tags", M_TARGET_EXIST);
3210         FILL_TABLE("Menu/Message/Reedit", M_HAVE_ACCOUNT, M_ALLOW_REEDIT);
3211         FILL_TABLE("Menu/Message/CheckSignature", M_SINGLE_TARGET_EXIST);
3212
3213         FILL_TABLE("Menu/Tools/AddSenderToAB", M_SINGLE_TARGET_EXIST);
3214         FILL_TABLE("Menu/Tools/CollectAddresses", M_FOLDER_SELECTED);
3215         FILL_TABLE("Menu/Tools/CollectAddresses/FromFolder", M_FOLDER_SELECTED);
3216         FILL_TABLE("Menu/Tools/CollectAddresses/FromSelected", M_TARGET_EXIST);
3217         FILL_TABLE("Menu/Tools/FilterFolder", M_MSG_EXIST, M_EXEC);
3218         FILL_TABLE("Menu/Tools/FilterSelected", M_TARGET_EXIST, M_EXEC);
3219         FILL_TABLE("Menu/Tools/RunProcessing", M_HAVE_PROCESSING);
3220         FILL_TABLE("Menu/Tools/CreateFilterRule", M_SINGLE_TARGET_EXIST, M_UNLOCKED);
3221         FILL_TABLE("Menu/Tools/CreateProcessingRule", M_SINGLE_TARGET_EXIST, M_UNLOCKED);
3222         FILL_TABLE("Menu/Tools/ListUrls", M_TARGET_EXIST);
3223         FILL_TABLE("Menu/Tools/Actions", M_TARGET_EXIST, M_ACTIONS_EXIST);
3224         FILL_TABLE("Menu/Tools/Execute", M_DELAY_EXEC);
3225         FILL_TABLE("Menu/Tools/Expunge", M_DELETED_EXISTS);
3226         FILL_TABLE("Menu/Tools/ForgetSessionPasswords", M_SESSION_PASSWORDS);
3227 #ifndef PASSWORD_CRYPTO_OLD
3228         FILL_TABLE("Menu/Tools/ForgetMasterPassphrase", M_MASTER_PASSPHRASE);
3229 #endif
3230         FILL_TABLE("Menu/Tools/DeleteDuplicates/SelFolder", M_MSG_EXIST, M_ALLOW_DELETE);
3231
3232         FILL_TABLE("Menu/Configuration", M_UNLOCKED);
3233         FILL_TABLE("Menu/Configuration/ChangeAccount", M_HAVE_MULTI_ACCOUNT);
3234         FILL_TABLE("Menu/Configuration/AccountPrefs", M_UNLOCKED);
3235         FILL_TABLE("Menu/Configuration/CreateAccount", M_UNLOCKED);
3236         FILL_TABLE("Menu/Configuration/EditAccounts", M_UNLOCKED);
3237         FILL_TABLE(NULL, -1);
3238 #undef FILL_TABLE
3239         if (i > N_ENTRIES)
3240                 g_error("main window menu entry table overrun (%d/%d)", i, N_ENTRIES);
3241 #undef ENTRIES
3242
3243         state = main_window_get_current_state(mainwin);
3244
3245         for (i = 0; entry[i].entry != NULL; i++) {
3246                 sensitive = ((entry[i].cond & state) == entry[i].cond);
3247                 cm_menu_set_sensitive_full(mainwin->ui_manager, entry[i].entry, sensitive);
3248         }
3249
3250         menu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(
3251                 gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/Receive")));
3252
3253         children = gtk_container_get_children(GTK_CONTAINER(menu));
3254         for (cur_item = children; cur_item != NULL; cur_item = cur_item->next) {
3255                 if (cur_item->data == gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/Receive/Separator1")) {
3256                         cur_item = cur_item->next;
3257                         break;
3258                 }
3259         }
3260
3261         for (; cur_item != NULL; cur_item = cur_item->next) {
3262                 gtk_widget_set_sensitive(GTK_WIDGET(cur_item->data),
3263                                          (main_window_get_mask(M_UNLOCKED, -1) & state) != 0);
3264         }
3265
3266         g_list_free(children);
3267
3268         main_window_menu_callback_block(mainwin);
3269
3270         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/ShowHide/MessageView",
3271                               messageview_is_visible(mainwin->messageview));
3272
3273         summaryview = mainwin->summaryview;
3274
3275         switch (summaryview->sort_key) {
3276         case SORT_BY_NUMBER:
3277                 menu_path = "Menu/View/Sort/Number"; break;
3278         case SORT_BY_SIZE:
3279                 menu_path = "Menu/View/Sort/Size"; break;
3280         case SORT_BY_DATE:
3281                 menu_path = "Menu/View/Sort/Date"; break;
3282         case SORT_BY_THREAD_DATE:
3283                 menu_path = "Menu/View/Sort/ThreadDate"; break;
3284         case SORT_BY_FROM:
3285                 menu_path = "Menu/View/Sort/From"; break;
3286         case SORT_BY_TO:
3287                 menu_path = "Menu/View/Sort/To"; break;
3288         case SORT_BY_SUBJECT:
3289                 menu_path = "Menu/View/Sort/Subject"; break;
3290         case SORT_BY_LABEL:
3291                 menu_path = "Menu/View/Sort/Color"; break;
3292         case SORT_BY_MARK:
3293                 menu_path = "Menu/View/Sort/Mark"; break;
3294         case SORT_BY_STATUS:
3295                 menu_path = "Menu/View/Sort/Status"; break;
3296         case SORT_BY_MIME:
3297                 menu_path = "Menu/View/Sort/Attachment"; break;
3298         case SORT_BY_SCORE:
3299                 menu_path = "Menu/View/Sort/Score"; break;
3300         case SORT_BY_LOCKED:
3301                 menu_path = "Menu/View/Sort/Locked"; break;
3302         case SORT_BY_TAGS:
3303                 menu_path = "Menu/View/Sort/Tag"; break;
3304         case SORT_BY_NONE:
3305         default:
3306                 menu_path = "Menu/View/Sort/DontSort"; break;
3307         }
3308         cm_toggle_menu_set_active_full(mainwin->ui_manager, menu_path, TRUE);
3309
3310         if (summaryview->sort_type == SORT_ASCENDING) {
3311                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Sort/Ascending", TRUE);
3312         } else {
3313                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Sort/Descending", TRUE);
3314         }
3315
3316         if (summaryview->sort_key != SORT_BY_NONE) {
3317                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Sort/Ascending", TRUE);
3318                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Sort/Descending", TRUE);
3319         } else {
3320                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Sort/Ascending", FALSE);
3321                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Sort/Descending", FALSE);
3322         }
3323
3324         if (mainwin->messageview
3325         &&  mainwin->messageview->mimeview
3326         &&  mainwin->messageview->mimeview->textview)
3327                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/AllHeaders",
3328                                                 prefs_common.show_all_headers);
3329         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/ThreadView", (state & main_window_get_mask(M_THREADED, -1)) != 0);
3330         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/ExpandThreads", (state & main_window_get_mask(M_THREADED, -1)) != 0);
3331         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/CollapseThreads", (state & main_window_get_mask(M_THREADED, -1)) != 0);
3332         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);
3333         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/CollapseAll", (prefs_common.hide_quotes == 1));
3334         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/Collapse2", (prefs_common.hide_quotes == 2));
3335         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/Collapse3", (prefs_common.hide_quotes == 3));
3336
3337         if (mainwin->summaryview->folder_item && !mainwin->summaryview->folder_item->threaded)
3338                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/HideReadThreads", FALSE);
3339         if ((mainwin->summaryview->folder_item && mainwin->summaryview->folder_item->hide_read_msgs) ||
3340             quicksearch_has_sat_predicate(mainwin->summaryview->quicksearch))
3341                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/HideReadThreads", FALSE);
3342         if ((mainwin->summaryview->folder_item && mainwin->summaryview->folder_item->hide_read_threads) ||
3343             quicksearch_has_sat_predicate(mainwin->summaryview->quicksearch))
3344                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/HideReadMessages", FALSE);
3345         if (quicksearch_has_sat_predicate(mainwin->summaryview->quicksearch))
3346                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/HideDelMessages", FALSE);
3347
3348         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Goto/PrevHistory",
3349                 messageview_nav_has_prev(mainwin->messageview));
3350         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Goto/NextHistory",
3351                 messageview_nav_has_next(mainwin->messageview));
3352
3353         if (mainwin->messageview 
3354         &&  mainwin->messageview->mimeview)
3355                 mimepart_selected = !mimeview_tree_is_empty(mainwin->messageview->mimeview);
3356
3357         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/File/SavePartAs", mimepart_selected);
3358         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Goto/NextPart", mimepart_selected);
3359         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Goto/PrevPart", mimepart_selected);
3360         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Part", mimepart_selected);
3361         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/CheckSignature", 
3362                                    mimepart_selected && mainwin->messageview->mimeview->signed_part);
3363
3364         sensitive = TRUE;
3365         if (mimepart_selected) {
3366                 MimeInfo *partinfo = messageview_get_selected_mime_part(mainwin->messageview);
3367
3368                 if (partinfo && (partinfo->type == MIMETYPE_MESSAGE ||
3369                                  partinfo->type == MIMETYPE_IMAGE ||
3370                                  partinfo->type == MIMETYPE_MULTIPART)) {
3371                         sensitive = FALSE;
3372                 }
3373         }
3374         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Part/AsText", sensitive);
3375
3376         main_window_menu_callback_unblock(mainwin);
3377 }
3378
3379 void main_create_mailing_list_menu (MainWindow *mainwin, MsgInfo *msginfo)
3380 {
3381         gint is_menu = 0;
3382         
3383         if (msginfo) 
3384                 is_menu = mailing_list_create_submenu (mainwin, msginfo);
3385         if (is_menu)
3386                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList", TRUE);
3387         else
3388                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList", FALSE);
3389 }
3390
3391 static gint mailing_list_create_submenu (MainWindow *mainwin, MsgInfo *msginfo)
3392 {
3393         gint menu_nb = 0;
3394         GtkWidget *menuitem;
3395         
3396         if (!msginfo || !msginfo->extradata) {
3397                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/Post", FALSE);
3398                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/Help", FALSE);
3399                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/Subscribe", FALSE);
3400                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/Unsubscribe", FALSE);
3401                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/ViewArchive", FALSE);
3402                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/ContactOwner", FALSE);
3403                 return 0;
3404         }
3405                 
3406         /* Mailing list post */
3407         if (!strcmp2 (msginfo->extradata->list_post, "NO")) {
3408                 g_free(msginfo->extradata->list_post);
3409                 msginfo->extradata->list_post = g_strdup (_("No posting allowed"));
3410         }
3411         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/Post");
3412                 
3413         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_post);
3414  
3415         /* Mailing list help */
3416         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/Help");
3417         
3418         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_help);
3419
3420         /* Mailing list subscribe */
3421         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/Subscribe");
3422         
3423         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_subscribe);
3424                 
3425         /* Mailing list unsubscribe */
3426         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/Unsubscribe");
3427         
3428         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_unsubscribe);
3429         
3430         /* Mailing list view archive */
3431         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/ViewArchive");
3432         
3433         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_archive);
3434         
3435         /* Mailing list contact owner */
3436         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/ContactOwner");
3437         
3438         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_owner);
3439         
3440         return menu_nb;
3441 }
3442
3443 static gint mailing_list_populate_submenu (GtkWidget *menuitem, const gchar * list_header)
3444 {
3445         GtkWidget *item, *menu;
3446         const gchar *url_pt ;
3447         gchar url_decoded[BUFFSIZE];
3448         GList *children, *amenu;
3449         gint menu_nb = 0;
3450         
3451         menu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(menuitem));
3452         
3453         /* First delete old submenu */
3454         /* FIXME: we can optimize this, and only change/add/delete necessary items */
3455         children = gtk_container_get_children(GTK_CONTAINER(menu));
3456         for (amenu = children; amenu; amenu = amenu->next) {
3457                 item = GTK_WIDGET (amenu->data);
3458                 gtk_widget_destroy (item);
3459         }
3460         g_list_free(children);
3461         if (list_header) {
3462                 for (url_pt = list_header; url_pt && *url_pt;) {
3463                         get_url_part (&url_pt, url_decoded);
3464                         item = NULL;
3465                         if (!g_ascii_strncasecmp(url_decoded, "mailto:", 7)) {
3466                                 item = cm_menu_item_new_label_from_url ((url_decoded));
3467                                 g_signal_connect(G_OBJECT(item), "activate",
3468                                                  G_CALLBACK(mailing_list_compose),
3469                                                  NULL);
3470                         }
3471                         else if (!g_ascii_strncasecmp(url_decoded, "http:", 5) ||
3472                                  !g_ascii_strncasecmp(url_decoded, "https:",6)) {
3473
3474                                 item = cm_menu_item_new_label_from_url ((url_decoded));
3475                                 g_signal_connect(G_OBJECT(item), "activate",
3476                                                  G_CALLBACK(mailing_list_open_uri),
3477                                                  NULL);
3478                         } 
3479                         if (item) {
3480                                 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
3481                                 gtk_widget_show (item);
3482                                 menu_nb++;
3483                         }
3484                 }
3485         }
3486         if (menu_nb)
3487                 gtk_widget_set_sensitive (menuitem, TRUE);
3488         else
3489                 gtk_widget_set_sensitive (menuitem, FALSE);
3490                 
3491
3492         return menu_nb;
3493 }
3494
3495 static void get_url_part (const gchar **buffer, gchar *url_decoded)
3496 {
3497         gchar tmp[BUFFSIZE];
3498         const gchar *buf;
3499         gint i = 0;
3500         buf = *buffer;
3501         gboolean with_plus = TRUE;
3502
3503         if (buf == 0x00) {
3504                 *url_decoded = '\0';
3505                 *buffer = NULL;
3506                 return;
3507         }
3508         /* Ignore spaces, comments  and tabs () */
3509         for (;*buf == ' ' || *buf == '(' || *buf == '\t'; buf++)
3510                 if (*buf == '(')
3511                         for (;*buf != ')' && *buf != 0x00; buf++);
3512         
3513         /* First non space and non comment must be a < */
3514         if (*buf =='<' ) {
3515                 buf++;
3516                 if (!strncmp(buf, "mailto:", strlen("mailto:")))
3517                         with_plus = FALSE;
3518                 for (i = 0;
3519                      *buf != '>' && *buf != 0x00 && i < BUFFSIZE;
3520                         tmp[i++] = *(buf++));
3521                 if (*buf == 0) {
3522                         *buffer = NULL;
3523                         *url_decoded = '\0';
3524                         return;
3525                 }
3526                 buf++;
3527         }
3528         else  {
3529                 *buffer = NULL;
3530                 *url_decoded = '\0';
3531                 return;
3532         }
3533         
3534         *url_decoded = '\0';
3535         *buffer = NULL;
3536         
3537         if (i == BUFFSIZE) {
3538                 return;
3539         }
3540         tmp[i] = 0x00;
3541         decode_uri_with_plus (url_decoded, (const gchar *)tmp, with_plus);
3542
3543         /* Prepare the work for the next url in the list */
3544         /* after the closing bracket >, ignore space, comments and tabs */
3545         for (;buf && *buf && (*buf == ' ' || *buf == '(' || *buf == '\t'); buf++)
3546                 if (*buf == '(')
3547                         for (;*buf != ')' && *buf != 0x00; buf++);
3548                         
3549         if (!buf || !*buf) {
3550                 *buffer = NULL;
3551                 return;
3552         }
3553
3554         /* now first non space, non comment must be a comma */
3555         if (*buf != ',')
3556                 for (;*buf != 0x00; buf++);
3557         else
3558                 buf++;
3559         *buffer = buf;
3560 }
3561         
3562 static void mailing_list_compose (GtkWidget *w, gpointer *data)
3563 {
3564         const gchar *mailto;
3565         PrefsAccount *account = NULL;
3566         FolderItem   *folder_item = NULL;
3567
3568         mailto = gtk_label_get_text(GTK_LABEL (gtk_bin_get_child(GTK_BIN((w)))));
3569         if (mainwindow_get_mainwindow()) {
3570                 folder_item = mainwindow_get_mainwindow()->summaryview->folder_item;
3571                 if (folder_item && folder_item->prefs && folder_item->prefs->enable_default_account)
3572                         account = account_find_from_id(folder_item->prefs->default_account);
3573                 if (folder_item && !account)
3574                         account = account_find_from_item(folder_item);
3575         }
3576         if (mailto)
3577                 compose_new_with_folderitem(account, folder_item, mailto+7);
3578 }
3579  
3580  static void mailing_list_open_uri (GtkWidget *w, gpointer *data)
3581 {
3582  
3583         const gchar *mailto;
3584  
3585         mailto = gtk_label_get_text(GTK_LABEL (gtk_bin_get_child(GTK_BIN((w)))));
3586         if (mailto)
3587                 open_uri (mailto, prefs_common_get_uri_cmd());
3588
3589         
3590 static void fix_folderview_scroll(MainWindow *mainwin)
3591 {
3592         static gboolean fix_done = FALSE;
3593
3594         if (fix_done)
3595                 return;
3596
3597         gtk_widget_queue_resize(mainwin->folderview->ctree);
3598
3599         fix_done = TRUE;
3600 }
3601
3602 void main_window_popup(MainWindow *mainwin)
3603 {
3604         static gboolean first_start = TRUE;
3605
3606         if (!gtk_widget_get_visible(GTK_WIDGET(mainwin->window)))
3607                 main_window_show(mainwin);
3608
3609         if (prefs_common.mainwin_maximised)
3610                 gtk_window_maximize(GTK_WINDOW(mainwin->window));
3611
3612         if (first_start) {
3613                 first_start = FALSE;
3614         } else {
3615                 gtkut_window_popup(mainwin->window);
3616         }
3617
3618         if (prefs_common.layout_mode == SMALL_LAYOUT) {
3619                 if (mainwin->in_folder) {
3620                         mainwindow_enter_folder(mainwin);
3621                 } else {
3622                         mainwindow_exit_folder(mainwin);
3623                 }
3624         }
3625         fix_folderview_scroll(mainwin);
3626 }
3627
3628 void main_window_show(MainWindow *mainwin)
3629 {
3630         gtk_widget_show(mainwin->window);
3631         gtk_widget_show(mainwin->vbox_body);
3632 #ifndef GENERIC_UMPC
3633         gtk_window_move(GTK_WINDOW(mainwin->window),
3634                                  prefs_common.mainwin_x,
3635                                  prefs_common.mainwin_y);
3636         
3637         gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->folderview),
3638                              prefs_common.folderview_width,
3639                              prefs_common.folderview_height);
3640         gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->summaryview),
3641                              prefs_common.summaryview_width,
3642                              prefs_common.summaryview_height);
3643         gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->messageview),
3644                              prefs_common.msgview_width,
3645                              prefs_common.msgview_height);
3646 #endif
3647 }
3648
3649 void main_window_hide(MainWindow *mainwin)
3650 {
3651         main_window_get_size(mainwin);
3652         main_window_get_position(mainwin);
3653
3654         gtk_widget_hide(mainwin->window);
3655         gtk_widget_hide(mainwin->vbox_body);
3656 }
3657
3658 static void main_window_set_widgets(MainWindow *mainwin, LayoutType layout_mode)
3659 {
3660         GtkWidget *folderwin = NULL;
3661         GtkWidget *messagewin = NULL;
3662         GtkWidget *hpaned;
3663         GtkWidget *vpaned;
3664         GtkWidget *vbox_body = mainwin->vbox_body;
3665         gboolean first_set = (mainwin->hpaned == NULL);
3666         debug_print("Setting widgets...\n");
3667
3668 #ifndef GENERIC_UMPC
3669         mainwin->messageview->statusbar = mainwin->statusbar;
3670         mainwin->messageview->statusbar_cid = mainwin->messageview_cid;
3671 #endif
3672         /* clean top-most container */
3673         if (mainwin->hpaned) {
3674                 if (gtk_widget_get_parent(mainwin->hpaned) == mainwin->vpaned)
3675                         gtk_widget_destroy(mainwin->vpaned);
3676                 else
3677                         gtk_widget_destroy(mainwin->hpaned);
3678         }
3679
3680         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/ShowHide/MessageView", 
3681                 (layout_mode != WIDE_MSGLIST_LAYOUT && layout_mode != SMALL_LAYOUT));
3682         switch (layout_mode) {
3683         case VERTICAL_LAYOUT:
3684         case NORMAL_LAYOUT:
3685         case SMALL_LAYOUT:
3686                 hpaned = gtk_hpaned_new();
3687                 if (layout_mode == VERTICAL_LAYOUT)
3688                         vpaned = gtk_hpaned_new();
3689                 else
3690                         vpaned = gtk_vpaned_new();
3691                 gtk_box_pack_start(GTK_BOX(vbox_body), hpaned, TRUE, TRUE, 0);
3692                 gtk_paned_add1(GTK_PANED(hpaned),
3693                                GTK_WIDGET_PTR(mainwin->folderview));
3694                 gtk_widget_show(hpaned);
3695                 gtk_widget_queue_resize(hpaned);
3696
3697                 if (messageview_is_visible(mainwin->messageview)) {
3698                         gtk_paned_add2(GTK_PANED(hpaned), vpaned);
3699                         gtk_paned_pack1(GTK_PANED(vpaned),
3700                                        GTK_WIDGET_PTR(mainwin->summaryview), TRUE, TRUE);
3701                 } else {
3702                         gtk_paned_add2(GTK_PANED(hpaned),
3703                                        GTK_WIDGET_PTR(mainwin->summaryview));
3704                         g_object_ref(vpaned);
3705                 }
3706                 gtk_paned_add2(GTK_PANED(vpaned),
3707                                GTK_WIDGET_PTR(mainwin->messageview));
3708                 gtk_widget_show(vpaned);
3709                 if (layout_mode == SMALL_LAYOUT && first_set) {
3710                         mainwin_paned_show_first(GTK_PANED(hpaned));
3711                 }
3712                 gtk_widget_queue_resize(vpaned);
3713                 break;
3714         case WIDE_LAYOUT:
3715                 vpaned = gtk_vpaned_new();
3716                 hpaned = gtk_hpaned_new();
3717                 gtk_box_pack_start(GTK_BOX(vbox_body), vpaned, TRUE, TRUE, 0);
3718                 gtk_paned_add1(GTK_PANED(vpaned), hpaned);
3719
3720                 gtk_paned_add1(GTK_PANED(hpaned),
3721                                GTK_WIDGET_PTR(mainwin->folderview));
3722                 gtk_paned_add2(GTK_PANED(hpaned),
3723                                GTK_WIDGET_PTR(mainwin->summaryview));
3724
3725                 gtk_widget_show(hpaned);
3726                 gtk_widget_queue_resize(hpaned);
3727
3728                 if (messageview_is_visible(mainwin->messageview)) {
3729                         gtk_paned_add2(GTK_PANED(vpaned),
3730                                GTK_WIDGET_PTR(mainwin->messageview));   
3731                 } else {
3732                         g_object_ref(GTK_WIDGET_PTR(mainwin->messageview));
3733                 }
3734                 gtk_widget_show(vpaned);
3735                 gtk_widget_queue_resize(vpaned);
3736                 break;
3737         case WIDE_MSGLIST_LAYOUT:
3738                 vpaned = gtk_vpaned_new();
3739                 hpaned = gtk_hpaned_new();
3740                 gtk_box_pack_start(GTK_BOX(vbox_body), vpaned, TRUE, TRUE, 0);
3741
3742                 gtk_paned_add1(GTK_PANED(vpaned),
3743                                GTK_WIDGET_PTR(mainwin->summaryview));
3744                 gtk_paned_add1(GTK_PANED(hpaned),
3745                                GTK_WIDGET_PTR(mainwin->folderview));
3746
3747                 gtk_widget_show(hpaned);
3748                 gtk_widget_queue_resize(hpaned);
3749
3750                 if (messageview_is_visible(mainwin->messageview)) {
3751                         gtk_paned_add2(GTK_PANED(hpaned),
3752                                GTK_WIDGET_PTR(mainwin->messageview));   
3753                 } else {
3754                         g_object_ref(GTK_WIDGET_PTR(mainwin->messageview));
3755                 }
3756                 gtk_paned_add2(GTK_PANED(vpaned), hpaned);
3757
3758                 gtk_widget_show(vpaned);
3759                 gtk_widget_queue_resize(vpaned);
3760                 break;
3761         default:
3762                 g_warning("Unknown layout");
3763                 return;
3764         }
3765
3766         mainwin->hpaned = hpaned;
3767         mainwin->vpaned = vpaned;
3768
3769         if (layout_mode == SMALL_LAYOUT) {
3770                 if (mainwin->messageview->visible)
3771                         main_window_toggle_message_view(mainwin);
3772         } 
3773
3774         if (layout_mode == SMALL_LAYOUT && first_set) {
3775                 gtk_widget_realize(mainwin->window);
3776                 gtk_widget_realize(mainwin->folderview->ctree);
3777                 gtk_widget_realize(mainwin->summaryview->hbox);
3778                 gtk_widget_realize(mainwin->summaryview->hbox_l);
3779                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->folderview),
3780                                     prefs_common.folderview_width,
3781                                     prefs_common.folderview_height);
3782                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->summaryview),
3783                                     0,0);
3784                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->messageview),
3785                                     0,0);
3786                 gtk_widget_set_size_request(GTK_WIDGET(mainwin->window),
3787                                 prefs_common.mainwin_width,
3788                                 prefs_common.mainwin_height);
3789                 gtk_paned_set_position(GTK_PANED(mainwin->hpaned), 800);
3790         } else {
3791                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->folderview),
3792                                     prefs_common.folderview_width,
3793                                     prefs_common.folderview_height);
3794                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->summaryview),
3795                                     prefs_common.summaryview_width,
3796                                     prefs_common.summaryview_height);
3797                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->messageview),
3798                                     prefs_common.msgview_width,
3799                                     prefs_common.msgview_height);
3800                 gtk_widget_set_size_request(GTK_WIDGET(mainwin->window),
3801                                     prefs_common.mainwin_width,
3802                                     prefs_common.mainwin_height);
3803         } 
3804         /* remove headerview if not in prefs */
3805         headerview_set_visibility(mainwin->messageview->headerview,
3806                                   prefs_common.display_header_pane);
3807
3808         if (messageview_is_visible(mainwin->messageview))
3809                 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
3810                               GTK_ARROW_DOWN, GTK_SHADOW_OUT);
3811         else
3812                 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
3813                               GTK_ARROW_UP, GTK_SHADOW_OUT);
3814
3815         gtk_window_move(GTK_WINDOW(mainwin->window),
3816                         prefs_common.mainwin_x,
3817                         prefs_common.mainwin_y);
3818
3819         gtk_widget_queue_resize(vbox_body);
3820         gtk_widget_queue_resize(mainwin->vbox);
3821         gtk_widget_queue_resize(mainwin->window);
3822         /* CLAWS: previous "gtk_widget_show_all" makes noticeview
3823          * and mimeview icon list/ctree lose track of their visibility states */
3824         if (!noticeview_is_visible(mainwin->messageview->noticeview)) 
3825                 gtk_widget_hide(GTK_WIDGET_PTR(mainwin->messageview->noticeview));
3826         if (!noticeview_is_visible(mainwin->messageview->mimeview->siginfoview)) 
3827                 gtk_widget_hide(GTK_WIDGET_PTR(mainwin->messageview->mimeview->siginfoview));
3828         if (mainwin->messageview->mimeview->ctree_mode)
3829                 gtk_widget_hide(mainwin->messageview->mimeview->icon_mainbox);
3830         else 
3831                 gtk_widget_hide(mainwin->messageview->mimeview->ctree_mainbox);
3832
3833         prefs_common.layout_mode = layout_mode;
3834
3835         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/ShowHide/MessageView", 
3836                  messageview_is_visible(mainwin->messageview));
3837
3838 #ifndef GENERIC_UMPC
3839         switch (prefs_common.layout_mode) {
3840         case NORMAL_LAYOUT:
3841                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/Standard", TRUE);
3842                 break;
3843         case VERTICAL_LAYOUT:
3844                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/ThreeColumns", TRUE);
3845                 break;
3846         case WIDE_LAYOUT:
3847                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/WideMessage", TRUE);
3848                 break;
3849         case WIDE_MSGLIST_LAYOUT:
3850                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/WideMessageList", TRUE);
3851                 break;
3852         case SMALL_LAYOUT:
3853                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/SmallScreen", TRUE);
3854                 break;
3855         }
3856 #endif
3857
3858         if (folderwin) {
3859                 g_signal_connect
3860                         (G_OBJECT(folderwin), "size_allocate",
3861                          G_CALLBACK(folder_window_size_allocate_cb),
3862                          mainwin);
3863         }
3864         if (messagewin) {
3865                 g_signal_connect
3866                         (G_OBJECT(messagewin), "size_allocate",
3867                          G_CALLBACK(message_window_size_allocate_cb),
3868                          mainwin);
3869         }
3870
3871         debug_print("Setting widgets done.\n");
3872 }
3873
3874 void main_window_destroy_all(void)
3875 {
3876         while (mainwin_list != NULL) {
3877                 MainWindow *mainwin = (MainWindow*)mainwin_list->data;
3878
3879                 /* free toolbar stuff */
3880                 toolbar_clear_list(TOOLBAR_MAIN);
3881                 toolbar_destroy(mainwin->toolbar);
3882
3883                 summaryview_destroy(mainwin->summaryview);
3884                 mainwin->folderview->mainwin = NULL;
3885                 mainwin->summaryview->mainwin = NULL;
3886                 mainwin->messageview->mainwin = NULL;
3887
3888                 g_free(mainwin->toolbar);
3889                 g_free(mainwin);
3890                 
3891                 mainwin_list = g_list_remove(mainwin_list, mainwin);
3892         }
3893         g_list_free(mainwin_list);
3894         mainwin_list = NULL;
3895 }
3896
3897 static void toolbar_child_attached(GtkWidget *widget, GtkWidget *child,
3898                                    gpointer data)
3899 {
3900         gtk_widget_set_size_request(child, 1, -1);
3901 }
3902
3903 static void toolbar_child_detached(GtkWidget *widget, GtkWidget *child,
3904                                    gpointer data)
3905 {
3906         gtk_widget_set_size_request(child, -1, -1);
3907 }
3908 #ifndef GENERIC_UMPC
3909 static gboolean ac_label_button_pressed(GtkWidget *widget, GdkEventButton *event,
3910                                     gpointer data)
3911 {
3912         MainWindow *mainwin = (MainWindow *)data;
3913         GtkWidget *menu = NULL;
3914         
3915         if (!event) return FALSE;
3916
3917         gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
3918         
3919         menu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(mainwin->ac_menu));
3920
3921         gtk_menu_popup(GTK_MENU(menu), NULL, NULL,
3922                        menu_button_position, widget,
3923                        event->button, event->time);
3924
3925         return TRUE;
3926 }
3927 #endif
3928 static gint main_window_close_cb(GtkWidget *widget, GdkEventAny *event,
3929                                  gpointer data)
3930 {
3931         MainWindow *mainwin = (MainWindow *)data;
3932         gboolean close_allowed = TRUE;
3933
3934         hooks_invoke(MAIN_WINDOW_CLOSE, &close_allowed);
3935
3936         if (close_allowed && mainwin->lock_count == 0)
3937                 app_exit_cb(NULL, data);
3938
3939         return TRUE;
3940 }
3941
3942 static void main_window_size_allocate_cb(GtkWidget *widget,
3943                                          GtkAllocation *allocation,
3944                                          gpointer data)
3945 {
3946         MainWindow *mainwin = (MainWindow *)data;
3947         main_window_get_size(mainwin);
3948 }
3949
3950 static void folder_window_size_allocate_cb(GtkWidget *widget,
3951                                            GtkAllocation *allocation,
3952                                            gpointer data)
3953 {
3954         MainWindow *mainwin = (MainWindow *)data;
3955
3956         main_window_get_size(mainwin);
3957 }
3958
3959 static void message_window_size_allocate_cb(GtkWidget *widget,
3960                                             GtkAllocation *allocation,
3961                                             gpointer data)
3962 {
3963         MainWindow *mainwin = (MainWindow *)data;
3964
3965         main_window_get_size(mainwin);
3966 }
3967
3968 static void add_mailbox_cb(GtkAction *action, gpointer data)
3969 {
3970         MainWindow *mainwin = (MainWindow *)data;
3971         main_window_add_mailbox(mainwin);
3972 }
3973
3974 static void update_folderview_cb(GtkAction *action, gpointer data)
3975 {
3976         MainWindow *mainwin = (MainWindow *)data;
3977         summary_show(mainwin->summaryview, NULL);
3978         folderview_check_new_all();
3979 }
3980
3981 static void foldersort_cb(GtkAction *action, gpointer data)
3982 {
3983         foldersort_open();
3984 }
3985
3986 static void import_mbox_cb(GtkAction *action, gpointer data)
3987 {
3988         MainWindow *mainwin = (MainWindow *)data;
3989         /* only notify if import has failed */
3990         if (import_mbox(mainwin->summaryview->folder_item) == -1) {
3991                 alertpanel_error(_("Mbox import has failed."));
3992         }
3993 }
3994
3995 static void export_mbox_cb(GtkAction *action, gpointer data)
3996 {
3997         MainWindow *mainwin = (MainWindow *)data;
3998         /* only notify if export has failed */
3999         if (export_mbox(mainwin->summaryview->folder_item) == -1) {
4000                 alertpanel_error(_("Export to mbox has failed."));
4001         }
4002 }
4003
4004 static void export_list_mbox_cb(GtkAction *action, gpointer data)
4005 {
4006         MainWindow *mainwin = (MainWindow *)data;
4007         /* only notify if export has failed */
4008         if (summaryview_export_mbox_list(mainwin->summaryview) == -1) {
4009                 alertpanel_error(_("Export to mbox has failed."));
4010         }
4011 }
4012
4013 static void empty_trash_cb(GtkAction *action, gpointer data)
4014 {
4015         MainWindow *mainwin = (MainWindow *)data;
4016         main_window_empty_trash(mainwin, TRUE, FALSE);
4017 }
4018
4019 static void save_as_cb(GtkAction *action, gpointer data)
4020 {
4021         MainWindow *mainwin = (MainWindow *)data;
4022         summary_save_as(mainwin->summaryview);
4023 }
4024
4025 static void print_cb(GtkAction *action, gpointer data)
4026 {
4027         MainWindow *mainwin = (MainWindow *)data;
4028         summary_print(mainwin->summaryview);
4029 }
4030
4031 static void page_setup_cb(GtkAction *action, gpointer data)
4032 {
4033         MainWindow *mainwin = (MainWindow *)data;
4034         GtkWindow *win;
4035
4036         win = (mainwin ? GTK_WINDOW(mainwin->window) : NULL);
4037
4038         printing_page_setup(win);
4039 }
4040
4041 static void app_exit_cb(GtkAction *action, gpointer data)
4042 {
4043         MainWindow *mainwin = (MainWindow *)data;
4044         if (prefs_common.clean_on_exit) {
4045                 if (!main_window_empty_trash(mainwin, prefs_common.ask_on_clean, TRUE))
4046                         return;
4047         }
4048
4049         if (prefs_common.confirm_on_exit) {
4050                 if (alertpanel(_("Exit"), _("Exit Claws Mail?"),
4051                                GTK_STOCK_CANCEL, GTK_STOCK_QUIT,  NULL, ALERTFOCUS_FIRST)
4052                     != G_ALERTALTERNATE)
4053                         return;
4054                 manage_window_focus_in(mainwin->window, NULL, NULL);
4055         }
4056
4057         app_will_exit(NULL, mainwin);
4058 }
4059
4060 static void search_cb(GtkAction *action, gpointer data)
4061 {
4062         MainWindow *mainwin = (MainWindow *)data;
4063         message_search(mainwin->messageview);
4064 }
4065
4066 static void search_folder_cb(GtkAction *action, gpointer data)
4067 {
4068         MainWindow *mainwin = (MainWindow *)data;
4069         FolderItem *item = mainwin->summaryview->folder_item;
4070         cm_return_if_fail(item != NULL);
4071         summary_search(mainwin->summaryview);
4072 }
4073
4074 static void mainwindow_quicksearch(GtkAction *action, gpointer data)
4075 {
4076         MainWindow *mainwin = (MainWindow *)data;
4077         summaryview_activate_quicksearch(mainwin->summaryview, TRUE);
4078 }
4079
4080 static void toggle_message_cb(GtkAction *action, gpointer data)
4081 {
4082         MainWindow *mainwin = (MainWindow *)data;
4083         gboolean active;
4084
4085         active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
4086
4087         if (active != messageview_is_visible(mainwin->messageview))
4088                 summary_toggle_view(mainwin->summaryview);
4089 }
4090
4091 static void toggle_toolbar_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4092 {
4093         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4094         MainWindow *mainwin = (MainWindow *)data;
4095         toolbar_toggle(value, mainwin);
4096 }
4097
4098 static void main_window_reply_cb(GtkAction *gaction, gpointer data)
4099 {
4100         MainWindow *mainwin = (MainWindow *)data;
4101         MessageView *msgview = (MessageView*)mainwin->messageview;
4102         GSList *msginfo_list = NULL;
4103         gint action = COMPOSE_REPLY;
4104         const gchar *a_name = gtk_action_get_name(gaction);
4105
4106         DO_ACTION("Message/Reply", COMPOSE_REPLY);
4107         DO_ACTION("Message/ReplyTo/All", COMPOSE_REPLY_TO_ALL);
4108         DO_ACTION("Message/ReplyTo/Sender", COMPOSE_REPLY_TO_SENDER);
4109         DO_ACTION("Message/ReplyTo/List", COMPOSE_REPLY_TO_LIST);
4110         DO_ACTION("Message/Forward", COMPOSE_FORWARD_INLINE);
4111         DO_ACTION("Message/ForwardAtt", COMPOSE_FORWARD_AS_ATTACH);
4112         DO_ACTION("Message/Redirect", COMPOSE_REDIRECT);
4113         DO_ACTION("Message/FollowupReply", COMPOSE_FOLLOWUP_AND_REPLY_TO);
4114
4115         cm_return_if_fail(msgview != NULL);
4116
4117         msginfo_list = summary_get_selection(mainwin->summaryview);
4118         cm_return_if_fail(msginfo_list != NULL);
4119
4120         if (!summary_has_opened_message(mainwin->summaryview)) {
4121                 compose_reply_from_messageview(NULL, msginfo_list, action);
4122         } else if (summary_is_opened_message_selected(mainwin->summaryview)) {
4123                 compose_reply_from_messageview(msgview, msginfo_list, action);
4124         } else {
4125                 compose_reply_from_messageview(msgview, NULL, action);
4126         }
4127
4128         g_slist_free(msginfo_list);
4129 }
4130
4131 static void toggle_col_headers_cb(GtkAction *gaction, gpointer data)
4132 {
4133         MainWindow *mainwin = (MainWindow *)data;
4134         FolderView *folderview = mainwin->folderview;
4135         SummaryView *summaryview = mainwin->summaryview;
4136         MimeView *mimeview = mainwin->messageview->mimeview;
4137
4138         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (gaction))) {
4139                 gtk_cmclist_column_titles_show(GTK_CMCLIST(folderview->ctree));
4140                 gtk_cmclist_column_titles_show(GTK_CMCLIST(summaryview->ctree));
4141                 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(mimeview->ctree), TRUE);
4142                 prefs_common.show_col_headers = TRUE;
4143         } else {
4144                 gtk_cmclist_column_titles_hide(GTK_CMCLIST(folderview->ctree));
4145                 gtk_cmclist_column_titles_hide(GTK_CMCLIST(summaryview->ctree));
4146                 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(mimeview->ctree), FALSE);               
4147                 prefs_common.show_col_headers = FALSE;
4148         }
4149 }
4150
4151 #ifndef GENERIC_UMPC
4152 static void toggle_statusbar_cb(GtkAction *gaction, gpointer data)
4153 {
4154         MainWindow *mainwin = (MainWindow *)data;
4155         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (gaction))) {
4156                 gtk_widget_show(mainwin->hbox_stat);
4157                 prefs_common.show_statusbar = TRUE;
4158         } else {
4159                 gtk_widget_hide(mainwin->hbox_stat);
4160                 prefs_common.show_statusbar = FALSE;
4161         }
4162 }
4163
4164 static void set_layout_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4165 {
4166         MainWindow *mainwin = (MainWindow *)data;
4167         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4168         LayoutType layout_mode = value;
4169         LayoutType old_layout_mode = prefs_common.layout_mode;
4170         if (mainwin->menu_lock_count) {
4171                 return;
4172         }
4173         if (!gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current))) {
4174                 return;
4175         }
4176         
4177         if (layout_mode == prefs_common.layout_mode) {
4178                 return;
4179         }
4180         
4181         if (!mainwin->messageview->visible && layout_mode != SMALL_LAYOUT)
4182                 main_window_toggle_message_view(mainwin);
4183         else if (mainwin->messageview->visible && layout_mode == SMALL_LAYOUT)
4184                 main_window_toggle_message_view(mainwin);
4185
4186         main_window_separation_change(mainwin, layout_mode);
4187         mainwindow_reset_paned(GTK_PANED(mainwin->vpaned));
4188         if (old_layout_mode == SMALL_LAYOUT && layout_mode != SMALL_LAYOUT) {
4189                 mainwindow_reset_paned(GTK_PANED(mainwin->hpaned));
4190                 if (layout_mode == VERTICAL_LAYOUT)
4191                         mainwindow_reset_paned(GTK_PANED(mainwin->vpaned));
4192         }
4193         if (old_layout_mode != SMALL_LAYOUT && layout_mode == SMALL_LAYOUT) {
4194                 mainwin_paned_show_first(GTK_PANED(mainwin->hpaned));
4195                 mainwindow_exit_folder(mainwin);
4196         }
4197         summary_relayout(mainwin->summaryview); 
4198         summary_update_unread(mainwin->summaryview, NULL);
4199 }
4200 #endif
4201
4202 void main_window_toggle_work_offline (MainWindow *mainwin, gboolean offline,
4203                                         gboolean ask_sync)
4204 {
4205         static gboolean switching = FALSE;
4206
4207         if (switching)
4208                 return;
4209
4210         switching = TRUE;
4211
4212         offline_ask_sync = ask_sync;
4213         if (offline)
4214                 online_switch_clicked (GTK_BUTTON(mainwin->online_switch), mainwin);
4215         else
4216                 online_switch_clicked (GTK_BUTTON(mainwin->offline_switch), mainwin);
4217         offline_ask_sync = TRUE;
4218
4219         inc_reset_offline_override_timers();
4220
4221         switching = FALSE;
4222 }
4223
4224 static void toggle_work_offline_cb (GtkAction *action, gpointer data)
4225 {
4226         MainWindow *mainwin = (MainWindow *)data;
4227         main_window_toggle_work_offline(mainwin, gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)), TRUE);
4228 }
4229
4230 static gboolean any_folder_want_synchronise(void)
4231 {
4232         GList *folderlist = folder_get_list();
4233
4234         /* see if there are synchronised folders */
4235         for (; folderlist; folderlist = folderlist->next) {
4236                 Folder *folder = (Folder *)folderlist->data;
4237                 if (folder_want_synchronise(folder)) {
4238                         return TRUE;
4239                 }
4240         }
4241         
4242         return FALSE;
4243 }
4244
4245 static void mainwindow_check_synchronise(MainWindow *mainwin, gboolean ask)
4246 {
4247         
4248         if (!any_folder_want_synchronise())
4249                 return;
4250
4251         if (offline_ask_sync && ask && alertpanel(_("Folder synchronisation"),
4252                         _("Do you want to synchronise your folders now?"),
4253                         GTK_STOCK_CANCEL, _("_Synchronise"), NULL, ALERTFOCUS_SECOND) != G_ALERTALTERNATE)
4254                 return;
4255         
4256         if (offline_ask_sync)
4257                 folder_synchronise(NULL);
4258 }
4259
4260 static void online_switch_clicked (GtkButton *btn, gpointer data) 
4261 {
4262         MainWindow *mainwin;
4263         gboolean have_connectivity;
4264
4265 #ifdef HAVE_NETWORKMANAGER_SUPPORT
4266         have_connectivity = networkmanager_is_online(NULL); 
4267 #else
4268         have_connectivity = TRUE;
4269 #endif
4270
4271         mainwin = (MainWindow *) data;
4272         
4273         cm_return_if_fail(mainwin != NULL);
4274         
4275         if (btn == GTK_BUTTON(mainwin->online_switch)) {
4276 #ifndef GENERIC_UMPC
4277                 gtk_widget_hide (mainwin->online_switch);
4278                 gtk_widget_show (mainwin->offline_switch);
4279 #endif
4280                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/File/OfflineMode", TRUE);
4281
4282                 inc_autocheck_timer_remove();
4283                         
4284                 /* go offline */
4285                 if (prefs_common.work_offline)
4286                         return;
4287
4288                 if(have_connectivity)
4289                         mainwindow_check_synchronise(mainwin, TRUE);
4290                 prefs_common.work_offline = TRUE;
4291                 imap_disconnect_all(have_connectivity);
4292                 nntp_disconnect_all(have_connectivity);
4293                 hooks_invoke(OFFLINE_SWITCH_HOOKLIST, NULL);
4294         } else {
4295                 /*go online */
4296                 if (!prefs_common.work_offline)
4297                         return;
4298 #ifndef GENERIC_UMPC
4299                 gtk_widget_hide (mainwin->offline_switch);
4300                 gtk_widget_show (mainwin->online_switch);
4301 #endif
4302                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/File/OfflineMode", FALSE);
4303                 prefs_common.work_offline = FALSE;
4304                 inc_autocheck_timer_set();
4305                 refresh_resolvers();
4306                 hooks_invoke(OFFLINE_SWITCH_HOOKLIST, NULL);
4307         }
4308 }
4309
4310 static void addressbook_open_cb(GtkAction *action, gpointer data)
4311 {
4312 #ifndef USE_ALT_ADDRBOOK
4313         addressbook_open(NULL);
4314 #else
4315         GError* error = NULL;
4316         
4317         addressbook_dbus_open(FALSE, &error);
4318         if (error) {
4319                 g_warning("Failed to open address book: %s", error->message);
4320                 g_error_free(error);
4321         }
4322 #endif
4323 }
4324
4325 static void log_window_show_cb(GtkAction *action, gpointer data)
4326 {
4327         MainWindow *mainwin = (MainWindow *)data;
4328         log_window_show(mainwin->logwin);
4329 }
4330
4331 static void filtering_debug_window_show_cb(GtkAction *action, gpointer data)
4332 {
4333         MainWindow *mainwin = (MainWindow *)data;
4334         log_window_show(mainwin->filtering_debugwin);
4335 }
4336
4337 static void inc_cancel_cb(GtkAction *action, gpointer data)
4338 {
4339         inc_cancel_all();
4340         imap_cancel_all();
4341 }
4342
4343 static void send_cancel_cb(GtkAction *action, gpointer data)
4344 {
4345         send_cancel();
4346 }
4347
4348 static void move_to_cb(GtkAction *action, gpointer data)
4349 {
4350         MainWindow *mainwin = (MainWindow *)data;
4351         summary_move_to(mainwin->summaryview);
4352 }
4353
4354 static void copy_to_cb(GtkAction *action, gpointer data)
4355 {
4356         MainWindow *mainwin = (MainWindow *)data;
4357         summary_copy_to(mainwin->summaryview);
4358 }
4359
4360 static void delete_cb(GtkAction *action, gpointer data)
4361 {
4362         MainWindow *mainwin = (MainWindow *)data;
4363         summary_delete(mainwin->summaryview);
4364 }
4365
4366 static void delete_trash_cb(GtkAction *action, gpointer data)
4367 {
4368         MainWindow *mainwin = (MainWindow *)data;
4369         summary_delete_trash(mainwin->summaryview);
4370 }
4371
4372 static void cancel_cb(GtkAction *action, gpointer data)
4373 {
4374         MainWindow *mainwin = (MainWindow *)data;
4375         summary_cancel(mainwin->summaryview);
4376 }
4377
4378 static void open_msg_cb(GtkAction *action, gpointer data)
4379 {
4380         MainWindow *mainwin = (MainWindow *)data;
4381         summary_open_msg(mainwin->summaryview);
4382 }
4383
4384 static void view_source_cb(GtkAction *action, gpointer data)
4385 {
4386         MainWindow *mainwin = (MainWindow *)data;
4387         summary_view_source(mainwin->summaryview);
4388 }
4389
4390 static void show_all_header_cb(GtkAction *action, gpointer data)
4391 {
4392         MainWindow *mainwin = (MainWindow *)data;
4393         if (mainwin->menu_lock_count) return;
4394         prefs_common.show_all_headers = 
4395                         gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
4396         summary_display_msg_selected(mainwin->summaryview,
4397                                      gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)));
4398 }
4399
4400 static void toggle_fullscreen_cb(GtkAction *action, gpointer data)
4401 {
4402         MainWindow *mainwin = (MainWindow *)data;
4403         if (mainwin->menu_lock_count) return;
4404         if (!gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action))) {
4405                 gtk_window_unfullscreen(GTK_WINDOW(mainwin->window));
4406                 prefs_common.mainwin_fullscreen = FALSE;
4407         }
4408         else {
4409                 prefs_common.mainwin_fullscreen = TRUE;
4410                 gtk_window_fullscreen(GTK_WINDOW(mainwin->window));
4411         }
4412 }
4413
4414 static void toggle_menubar_cb(GtkAction *action, gpointer data)
4415 {
4416         MainWindow *mainwin = (MainWindow *)data;
4417         if (mainwin->menu_lock_count) return;
4418         if (!gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action))) {
4419                 gtk_widget_hide(GTK_WIDGET(mainwin->menubar));
4420                 prefs_common.mainwin_menubar = FALSE;
4421         } else {
4422                 gtk_widget_show(GTK_WIDGET(mainwin->menubar));
4423                 prefs_common.mainwin_menubar = TRUE;
4424         }
4425 }
4426
4427 static void hide_quotes_cb(GtkAction *action, gpointer data)
4428 {
4429         MainWindow *mainwin = (MainWindow *)data;
4430
4431         if (mainwin->menu_lock_count) return;
4432
4433         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action))) {
4434                 const gchar *a_name = gtk_action_get_name(GTK_ACTION(action));
4435                 if (!strcmp(a_name, "View/Quotes/CollapseAll")) prefs_common.hide_quotes = 1;
4436                 else if (!strcmp(a_name, "View/Quotes/Collapse2")) prefs_common.hide_quotes = 2;
4437                 else if (!strcmp(a_name, "View/Quotes/Collapse3")) prefs_common.hide_quotes = 3;
4438         } else
4439                 prefs_common.hide_quotes = 0;
4440
4441         mainwin->menu_lock_count++;
4442         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/CollapseAll", (prefs_common.hide_quotes == 1));
4443         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/Collapse2", (prefs_common.hide_quotes == 2));
4444         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/Collapse3", (prefs_common.hide_quotes == 3));
4445         mainwin->menu_lock_count--;
4446
4447         summary_redisplay_msg(mainwin->summaryview);
4448 }
4449
4450 static void mark_cb(GtkAction *action, gpointer data)
4451 {
4452         MainWindow *mainwin = (MainWindow *)data;
4453         summary_mark(mainwin->summaryview);
4454 }
4455
4456 static void unmark_cb(GtkAction *action, gpointer data)
4457 {
4458         MainWindow *mainwin = (MainWindow *)data;
4459         summary_unmark(mainwin->summaryview);
4460 }
4461
4462 static void mark_as_read_cb(GtkAction *action, gpointer data)
4463 {
4464         MainWindow *mainwin = (MainWindow *)data;
4465         summary_mark_as_read(mainwin->summaryview);
4466 }
4467
4468 static void mark_as_unread_cb(GtkAction *action, gpointer data)
4469 {
4470         MainWindow *mainwin = (MainWindow *)data;
4471         summary_mark_as_unread(mainwin->summaryview);
4472 }
4473
4474 static void mark_all_read_cb(GtkAction *action, gpointer data)
4475 {
4476         MainWindow *mainwin = (MainWindow *)data;
4477         summary_mark_all_read(mainwin->summaryview, TRUE);
4478 }
4479
4480 static void mark_all_unread_cb(GtkAction *action, gpointer data)
4481 {
4482         MainWindow *mainwin = (MainWindow *)data;
4483         summary_mark_all_unread(mainwin->summaryview, TRUE);
4484 }
4485
4486 static void mark_as_spam_cb(GtkAction *action, gpointer data)
4487 {
4488         MainWindow *mainwin = (MainWindow *)data;
4489         summary_mark_as_spam(mainwin->summaryview, TRUE, NULL);
4490 }
4491
4492 static void mark_as_ham_cb(GtkAction *action, gpointer data)
4493 {
4494         MainWindow *mainwin = (MainWindow *)data;
4495         summary_mark_as_spam(mainwin->summaryview, FALSE, NULL);
4496 }
4497
4498 static void ignore_thread_cb(GtkAction *action, gpointer data)
4499 {
4500         MainWindow *mainwin = (MainWindow *)data;
4501         summary_ignore_thread(mainwin->summaryview);
4502 }
4503
4504 static void unignore_thread_cb(GtkAction *action, gpointer data)
4505 {
4506         MainWindow *mainwin = (MainWindow *)data;
4507         summary_unignore_thread(mainwin->summaryview);
4508 }
4509
4510 static void watch_thread_cb(GtkAction *action, gpointer data)
4511 {
4512         MainWindow *mainwin = (MainWindow *)data;
4513         summary_watch_thread(mainwin->summaryview);
4514 }
4515
4516 static void unwatch_thread_cb(GtkAction *action, gpointer data)
4517 {
4518         MainWindow *mainwin = (MainWindow *)data;
4519         summary_unwatch_thread(mainwin->summaryview);
4520 }
4521
4522 static void lock_msgs_cb(GtkAction *action, gpointer data)
4523 {
4524         MainWindow *mainwin = (MainWindow *)data;
4525         summary_msgs_lock(mainwin->summaryview);
4526 }
4527
4528 static void unlock_msgs_cb(GtkAction *action, gpointer data)
4529 {
4530         MainWindow *mainwin = (MainWindow *)data;
4531         summary_msgs_unlock(mainwin->summaryview);
4532 }
4533
4534
4535 static void reedit_cb(GtkAction *action, gpointer data)
4536 {
4537         MainWindow *mainwin = (MainWindow *)data;
4538         summary_reedit(mainwin->summaryview);
4539 }
4540
4541 static void open_urls_cb(GtkAction *action, gpointer data)
4542 {
4543         MainWindow *mainwin = (MainWindow *)data;
4544         if (!mainwin->summaryview->displayed && mainwin->summaryview->selected) {
4545                 summary_display_msg_selected(mainwin->summaryview, 
4546                                              prefs_common.show_all_headers);
4547         }
4548         messageview_list_urls(mainwin->messageview);
4549 }
4550
4551 static void add_address_cb(GtkAction *action, gpointer data)
4552 {
4553         MainWindow *mainwin = (MainWindow *)data;
4554         summary_add_address(mainwin->summaryview);
4555 }
4556
4557 static void set_charset_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4558 {
4559         MainWindow *mainwin = (MainWindow *)data;
4560         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4561         const gchar *str;
4562
4563         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current))) {
4564                 str = conv_get_charset_str((CharSet)value);
4565                 
4566                 g_free(mainwin->messageview->forced_charset);
4567                 mainwin->messageview->forced_charset = str ? g_strdup(str) : NULL;
4568                 procmime_force_charset(str);
4569                 
4570                 summary_redisplay_msg(mainwin->summaryview);
4571                 
4572                 debug_print("forced charset: %s\n", str ? str : "Auto-Detect");
4573         }
4574 }
4575
4576 static void set_decode_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4577 {
4578         MainWindow *mainwin = (MainWindow *)data;
4579         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4580         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current))) {
4581                 mainwin->messageview->forced_encoding = (EncodingType)value;
4582                 
4583                 summary_redisplay_msg(mainwin->summaryview);
4584                 
4585                 debug_print("forced encoding: %d\n", value);
4586         }
4587 }
4588
4589 static void hide_read_messages (GtkAction *action, gpointer data)
4590 {
4591         MainWindow *mainwin = (MainWindow *)data;
4592         GtkWidget *menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/HideReadMessages");
4593         if (!mainwin->summaryview->folder_item
4594             || g_object_get_data(G_OBJECT(menuitem), "dont_toggle"))
4595                 return;
4596         summary_toggle_show_read_messages(mainwin->summaryview);
4597 }
4598
4599 static void hide_del_messages (GtkAction *action, gpointer data)
4600 {
4601         MainWindow *mainwin = (MainWindow *)data;
4602         GtkWidget *menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/HideDelMessages");
4603         if (!mainwin->summaryview->folder_item
4604             || g_object_get_data(G_OBJECT(menuitem), "dont_toggle"))
4605                 return;
4606         summary_toggle_show_del_messages(mainwin->summaryview);
4607 }
4608
4609 static void hide_read_threads (GtkAction *action, gpointer data)
4610 {
4611         MainWindow *mainwin = (MainWindow *)data;
4612         GtkWidget *menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/HideReadThreads");
4613         if (!mainwin->summaryview->folder_item
4614             || g_object_get_data(G_OBJECT(menuitem), "dont_toggle"))
4615                 return;
4616         summary_toggle_show_read_threads(mainwin->summaryview);
4617 }
4618
4619 static void thread_cb(GtkAction *action, gpointer data)
4620 {
4621         MainWindow *mainwin = (MainWindow *)data;
4622         gboolean threaded = FALSE;
4623         if (mainwin->menu_lock_count) return;
4624         if (!mainwin->summaryview->folder_item) return;
4625
4626         threaded = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
4627
4628         mainwin->summaryview->folder_item->threaded = threaded; 
4629
4630         mainwin->summaryview->threaded = threaded;
4631
4632         summary_show(mainwin->summaryview, 
4633                         mainwin->summaryview->folder_item);
4634 }
4635
4636 static void expand_threads_cb(GtkAction *action, gpointer data)
4637 {
4638         MainWindow *mainwin = (MainWindow *)data;
4639         summary_expand_threads(mainwin->summaryview);
4640 }
4641
4642 static void collapse_threads_cb(GtkAction *action, gpointer data)
4643 {
4644         MainWindow *mainwin = (MainWindow *)data;
4645         summary_collapse_threads(mainwin->summaryview);
4646 }
4647
4648 static void set_summary_display_item_cb(GtkAction *action, gpointer data)
4649 {
4650         prefs_summary_column_open();
4651 }
4652
4653 static void set_folder_display_item_cb(GtkAction *action, gpointer data)
4654 {
4655         prefs_folder_column_open();
4656 }
4657
4658 static void sort_summary_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4659 {
4660         MainWindow *mainwin = (MainWindow *)data;
4661         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4662
4663         if (mainwin->menu_lock_count) return;
4664
4665         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current))) {
4666                 summary_sort(mainwin->summaryview, (FolderSortKey)value,
4667                              mainwin->summaryview->sort_type);
4668         }
4669 }
4670
4671 static void sort_summary_type_cb(GtkAction *gaction, GtkRadioAction *current, gpointer data)
4672 {
4673         MainWindow *mainwin = (MainWindow *)data;
4674         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4675
4676         if (mainwin->menu_lock_count) return;
4677
4678         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current)))
4679                 summary_sort(mainwin->summaryview,
4680                              mainwin->summaryview->sort_key, (FolderSortType)value);
4681 }
4682
4683 static void attract_by_subject_cb(GtkAction *action, gpointer data)
4684 {
4685         MainWindow *mainwin = (MainWindow *)data;
4686         summary_attract_by_subject(mainwin->summaryview);
4687 }
4688
4689 void mainwindow_delete_duplicated(MainWindow *mainwin)
4690 {
4691         FolderItem *item;
4692
4693         item = folderview_get_selected_item(mainwin->folderview);
4694         if (item) {
4695                 gint result;
4696
4697                 main_window_cursor_wait(mainwin);
4698                 STATUSBAR_PUSH(mainwin, _("Deleting duplicated messages..."));
4699                 result = folderutils_delete_duplicates(item, prefs_common.immediate_exec ?
4700                                               DELETE_DUPLICATES_REMOVE : DELETE_DUPLICATES_SETFLAG);
4701                 STATUSBAR_POP(mainwin);
4702                 main_window_cursor_normal(mainwin);
4703
4704                 switch (result) {
4705                 case -1:
4706                         break;
4707                 case 0:
4708                         alertpanel_notice(_("No duplicate message found in selected folder.\n"));
4709                         break;
4710                 default: {
4711                                 gchar *msg;
4712
4713                                 if (prefs_common.immediate_exec) {
4714                                         msg = ngettext("Deleted %d duplicate message in selected folder.\n",
4715                                                                "Deleted %d duplicate messages in selected folder.\n",
4716                                                            result);
4717                                 } else {
4718                                         msg = ngettext("Marked %d duplicate message for deletion in selected folder.\n",
4719                                                                "Marked %d duplicate messages for deletion in selected folder.\n",
4720                                                            result);
4721                                 }
4722                                 alertpanel_notice(msg, result);
4723                         }
4724                 }
4725         }
4726 }
4727
4728 static void delete_duplicated_cb(GtkAction *action, gpointer data)
4729 {
4730         mainwindow_delete_duplicated((MainWindow *)data);
4731 }
4732
4733 struct DelDupsData
4734 {
4735         guint   dups;
4736         guint   folders;
4737 };
4738
4739 static void deldup_all(FolderItem *item, gpointer _data)
4740 {
4741         struct DelDupsData *data = _data;
4742         gint result;
4743         
4744         result = folderutils_delete_duplicates(item, DELETE_DUPLICATES_REMOVE);
4745         if (result >= 0) {
4746                 data->dups += result;
4747                 data->folders += 1;
4748         }
4749 }
4750
4751 void mainwindow_delete_duplicated_all(MainWindow *mainwin)
4752 {
4753         struct DelDupsData data = {0, 0};
4754
4755         main_window_cursor_wait(mainwin);
4756         STATUSBAR_PUSH(mainwin, _("Deleting duplicated messages in all folders..."));
4757         folder_func_to_all_folders(deldup_all, &data);
4758         STATUSBAR_POP(mainwin);
4759         main_window_cursor_normal(mainwin);
4760
4761         if (data.dups > 0) {
4762                 alertpanel_notice(ngettext("Deleted %d duplicate message in %d folders.\n",
4763                                    "Deleted %d duplicate messages in %d folders.\n",
4764                                    data.dups),
4765                                    data.dups, data.folders);
4766         } else {
4767                 alertpanel_notice(_("No duplicate message found in %d folders.\n"), data.folders);
4768         }
4769 }
4770
4771 static void delete_duplicated_all_cb(GtkAction *action, gpointer mw)
4772 {
4773         MainWindow *mainwin = (MainWindow *)mw;
4774
4775         mainwindow_delete_duplicated_all(mainwin);
4776 }
4777
4778 static void filter_cb(GtkAction *action, gpointer data)
4779 {
4780         MainWindow *mainwin = (MainWindow *)data;
4781         summary_filter(mainwin->summaryview, FALSE);
4782 }
4783
4784 static void filter_list_cb(GtkAction *action, gpointer data)
4785 {
4786         MainWindow *mainwin = (MainWindow *)data;
4787         summary_filter(mainwin->summaryview, TRUE);
4788 }
4789
4790 static void process_cb(GtkAction *action, gpointer data)
4791 {
4792         MainWindow *mainwin = (MainWindow *)data;
4793         FolderItem *item = mainwin->summaryview->folder_item;   
4794         cm_return_if_fail(item != NULL);
4795
4796         item->processing_pending = TRUE;
4797         folder_item_apply_processing(item);     
4798         item->processing_pending = FALSE;
4799 }
4800
4801 static void execute_summary_cb(GtkAction *action, gpointer data)
4802 {
4803         MainWindow *mainwin = (MainWindow *)data;
4804         summary_execute(mainwin->summaryview);
4805 }
4806
4807 static void expunge_summary_cb(GtkAction *action, gpointer data)
4808 {
4809         MainWindow *mainwin = (MainWindow *)data;
4810         summary_expunge(mainwin->summaryview);
4811 }
4812
4813 static void update_summary_cb(GtkAction *action, gpointer data)
4814 {
4815         MainWindow *mainwin = (MainWindow *)data;
4816         FolderItem *fitem;
4817         FolderView *folderview = mainwin->folderview;
4818
4819         if (!mainwin->summaryview->folder_item) return;
4820         if ((fitem = folderview_get_opened_item(folderview)) == NULL) return;
4821
4822         folder_update_op_count();
4823         folder_item_scan(fitem);
4824         summary_show(mainwin->summaryview, fitem);
4825 }
4826
4827 static void prev_cb(GtkAction *action, gpointer data)
4828 {
4829         MainWindow *mainwin = (MainWindow *)data;
4830         summary_select_prev(mainwin->summaryview);
4831 }
4832
4833 static void next_cb(GtkAction *action, gpointer data)
4834 {
4835         MainWindow *mainwin = (MainWindow *)data;
4836         summary_select_next(mainwin->summaryview);
4837 }
4838
4839 static void prev_unread_cb(GtkAction *action, gpointer data)
4840 {
4841         MainWindow *mainwin = (MainWindow *)data;
4842         summary_select_prev_unread(mainwin->summaryview);
4843 }
4844
4845 static void next_unread_cb(GtkAction *action, gpointer data)
4846 {
4847         MainWindow *mainwin = (MainWindow *)data;
4848         summary_select_next_unread(mainwin->summaryview);
4849 }
4850
4851 static void prev_new_cb(GtkAction *action, gpointer data)
4852 {
4853         MainWindow *mainwin = (MainWindow *)data;
4854         summary_select_prev_new(mainwin->summaryview);
4855 }
4856
4857 static void next_new_cb(GtkAction *action, gpointer data)
4858 {
4859         MainWindow *mainwin = (MainWindow *)data;
4860         summary_select_next_new(mainwin->summaryview);
4861 }
4862
4863 static void prev_marked_cb(GtkAction *action, gpointer data)
4864 {
4865         MainWindow *mainwin = (MainWindow *)data;
4866         summary_select_prev_marked(mainwin->summaryview);
4867 }
4868
4869 static void next_marked_cb(GtkAction *action, gpointer data)
4870 {
4871         MainWindow *mainwin = (MainWindow *)data;
4872         summary_select_next_marked(mainwin->summaryview);
4873 }
4874
4875 static void prev_labeled_cb(GtkAction *action, gpointer data)
4876 {
4877         MainWindow *mainwin = (MainWindow *)data;
4878         summary_select_prev_labeled(mainwin->summaryview);
4879 }
4880
4881 static void next_labeled_cb(GtkAction *action, gpointer data)
4882 {
4883         MainWindow *mainwin = (MainWindow *)data;
4884         summary_select_next_labeled(mainwin->summaryview);
4885 }
4886
4887 static void prev_history_cb(GtkAction *action, gpointer data)
4888 {
4889         MainWindow *mainwin = (MainWindow *)data;
4890         MsgInfo *info = messageview_nav_get_prev(mainwin->messageview);
4891         if (info) {
4892                 if (info->folder != mainwin->summaryview->folder_item)
4893                         folderview_select(mainwin->folderview, info->folder);
4894                 summary_select_by_msgnum(mainwin->summaryview, info->msgnum,
4895                                 OPEN_SELECTED_ON_PREVNEXT);
4896                 procmsg_msginfo_free(&info);
4897                 main_window_set_menu_sensitive(mainwindow_get_mainwindow());
4898                 toolbar_main_set_sensitive(mainwindow_get_mainwindow());
4899         }
4900 }
4901
4902 static void next_history_cb(GtkAction *action, gpointer data)
4903 {
4904         MainWindow *mainwin = (MainWindow *)data;
4905         MsgInfo *info = messageview_nav_get_next(mainwin->messageview);
4906         if (info) {
4907                 if (info->folder != mainwin->summaryview->folder_item)
4908                         folderview_select(mainwin->folderview, info->folder);
4909                 summary_select_by_msgnum(mainwin->summaryview, info->msgnum,
4910                                 OPEN_SELECTED_ON_PREVNEXT);
4911                 procmsg_msginfo_free(&info);
4912                 main_window_set_menu_sensitive(mainwindow_get_mainwindow());
4913                 toolbar_main_set_sensitive(mainwindow_get_mainwindow());
4914         }
4915 }
4916
4917 static void parent_cb(GtkAction *action, gpointer data)
4918 {
4919         MainWindow *mainwin = (MainWindow *)data;
4920         summary_select_parent(mainwin->summaryview);
4921 }
4922
4923 static void goto_folder_cb(GtkAction *action, gpointer data)
4924 {
4925         MainWindow *mainwin = (MainWindow *)data;
4926         FolderItem *to_folder;
4927
4928         to_folder = foldersel_folder_sel(NULL, FOLDER_SEL_ALL, NULL, FALSE,
4929                         _("Select folder to go to"));
4930
4931         if (to_folder)
4932                 folderview_select(mainwin->folderview, to_folder);
4933 }
4934
4935 static void goto_unread_folder_cb(GtkAction *action, gpointer data)
4936 {
4937         MainWindow *mainwin = (MainWindow *)data;
4938         folderview_select_next_with_flag(mainwin->folderview, MSG_UNREAD);
4939 }
4940
4941 static void scroll_prev_line_cb(GtkAction *action, gpointer data)
4942 {
4943         MainWindow *mainwin = (MainWindow *)data;
4944         mimeview_scroll_one_line(mainwin->messageview->mimeview,TRUE);
4945 }
4946
4947 static void scroll_next_line_cb(GtkAction *action, gpointer data)
4948 {
4949         MainWindow *mainwin = (MainWindow *)data;
4950         mimeview_scroll_one_line(mainwin->messageview->mimeview,FALSE);
4951 }
4952
4953 static void scroll_prev_page_cb(GtkAction *action, gpointer data)
4954 {
4955         MainWindow *mainwin = (MainWindow *)data;
4956         mimeview_scroll_page(mainwin->messageview->mimeview,TRUE);
4957 }
4958
4959 static void scroll_next_page_cb(GtkAction *action, gpointer data)
4960 {
4961         MainWindow *mainwin = (MainWindow *)data;
4962         mimeview_scroll_page(mainwin->messageview->mimeview,FALSE);
4963 }
4964
4965 static void copy_cb(GtkAction *action, gpointer data)
4966 {
4967         MainWindow *mainwin = (MainWindow *)data;
4968         messageview_copy_clipboard(mainwin->messageview);
4969 }
4970
4971 static void allsel_cb(GtkAction *action, gpointer data)
4972 {
4973         MainWindow *mainwin = (MainWindow *)data;
4974         MessageView *msgview = mainwin->messageview;
4975
4976         if (messageview_is_visible(msgview) &&
4977                  (gtk_widget_has_focus(msgview->mimeview->textview->text)))
4978                 messageview_select_all(mainwin->messageview);
4979         else
4980                 summary_select_all(mainwin->summaryview);
4981 }
4982
4983 static void select_thread_cb(GtkAction *action, gpointer data)
4984 {
4985         MainWindow *mainwin = (MainWindow *)data;
4986         summary_select_thread(mainwin->summaryview, FALSE, FALSE);
4987 }
4988
4989 static void trash_thread_cb(GtkAction *action, gpointer data)
4990 {
4991         MainWindow *mainwin = (MainWindow *)data;
4992         summary_select_thread(mainwin->summaryview, FALSE, TRUE);
4993 }
4994
4995 static void delete_thread_cb(GtkAction *action, gpointer data)
4996 {
4997         MainWindow *mainwin = (MainWindow *)data;
4998         summary_select_thread(mainwin->summaryview, TRUE, FALSE);
4999 }
5000
5001 static void create_filter_cb(GtkAction *gaction, gpointer data)
5002 {
5003         MainWindow *mainwin = (MainWindow *)data;
5004         const gchar *a_name = gtk_action_get_name(gaction);
5005         gint action = -1;
5006
5007         DO_ACTION("Tools/CreateFilterRule/Automatically", FILTER_BY_AUTO);
5008         DO_ACTION("Tools/CreateFilterRule/ByFrom", FILTER_BY_FROM);
5009         DO_ACTION("Tools/CreateFilterRule/ByTo", FILTER_BY_TO);
5010         DO_ACTION("Tools/CreateFilterRule/BySubject", FILTER_BY_SUBJECT);
5011         summary_filter_open(mainwin->summaryview, (PrefsFilterType)action, 0);
5012 }
5013
5014 static void create_processing_cb(GtkAction *gaction, gpointer data)
5015 {
5016         MainWindow *mainwin = (MainWindow *)data;
5017         const gchar *a_name = gtk_action_get_name(gaction);
5018         gint action = -1;
5019
5020         DO_ACTION("Tools/CreateProcessingRule/Automatically", FILTER_BY_AUTO);
5021         DO_ACTION("Tools/CreateProcessingRule/ByFrom", FILTER_BY_FROM);
5022         DO_ACTION("Tools/CreateProcessingRule/ByTo", FILTER_BY_TO);
5023         DO_ACTION("Tools/CreateProcessingRule/BySubject", FILTER_BY_SUBJECT);
5024         summary_filter_open(mainwin->summaryview, (PrefsFilterType)action, 1);
5025 }
5026
5027 static void prefs_pre_processing_open_cb(GtkAction *action, gpointer data)
5028 {
5029         prefs_filtering_open(&pre_global_processing,
5030                              _("Processing rules to apply before folder rules"),
5031                              MANUAL_ANCHOR_PROCESSING,
5032                              NULL, NULL, FALSE);
5033 }
5034
5035 static void prefs_post_processing_open_cb(GtkAction *action, gpointer data)
5036 {
5037         prefs_filtering_open(&post_global_processing,
5038                              _("Processing rules to apply after folder rules"),
5039                              MANUAL_ANCHOR_PROCESSING,
5040                              NULL, NULL, FALSE);
5041 }
5042
5043 static void prefs_filtering_open_cb(GtkAction *action, gpointer data)
5044 {
5045         prefs_filtering_open(&filtering_rules,
5046                              _("Filtering configuration"),
5047                              MANUAL_ANCHOR_FILTERING,
5048                              NULL, NULL, TRUE);
5049 }
5050
5051 static void prefs_template_open_cb(GtkAction *action, gpointer data)
5052 {
5053         prefs_template_open();
5054 }
5055
5056 static void prefs_actions_open_cb(GtkAction *action, gpointer data)
5057 {
5058         MainWindow *mainwin = (MainWindow *)data;
5059         prefs_actions_open(mainwin);
5060 }
5061
5062 static void prefs_tags_open_cb(GtkAction *action, gpointer data)
5063 {
5064         MainWindow *mainwin = (MainWindow *)data;
5065         GSList * list = summary_get_selected_msg_list(mainwin->summaryview);
5066         tag_apply_open(list);
5067 }
5068 #ifdef USE_GNUTLS
5069 static void ssl_manager_open_cb(GtkAction *action, gpointer data)
5070 {
5071         MainWindow *mainwin = (MainWindow *)data;
5072         ssl_manager_open(mainwin);
5073 }
5074 #endif
5075 static void prefs_account_open_cb(GtkAction *action, gpointer data)
5076 {
5077         MainWindow *mainwin = (MainWindow *)data;
5078         if (!cur_account) {
5079                 new_account_cb(NULL, mainwin);
5080         } else {
5081                 account_open(cur_account, FALSE);
5082         }
5083 }
5084
5085 static void new_account_cb(GtkAction *action, gpointer data)
5086 {
5087         account_edit_open(NULL, NULL);
5088         if (!compose_get_compose_list()) account_add();
5089 }
5090
5091 static void account_selector_menu_cb(GtkMenuItem *menuitem, gpointer data)
5092 {
5093         FolderItem *item = NULL;
5094         cur_account = (PrefsAccount *)data;
5095         
5096         if (!mainwindow_get_mainwindow())
5097                 return;
5098         main_window_show_cur_account(mainwindow_get_mainwindow());
5099         toolbar_update(TOOLBAR_MAIN, mainwindow_get_mainwindow());
5100         main_window_set_menu_sensitive(mainwindow_get_mainwindow());
5101         toolbar_main_set_sensitive(mainwindow_get_mainwindow());
5102         item = folderview_get_selected_item(
5103                         mainwindow_get_mainwindow()->folderview);
5104         if (item) {
5105                 toolbar_set_compose_button
5106                         (mainwindow_get_mainwindow()->toolbar,
5107                          FOLDER_TYPE(item->folder) == F_NEWS ? 
5108                          COMPOSEBUTTON_NEWS : COMPOSEBUTTON_MAIL);
5109         }
5110 }
5111
5112 static void account_receive_menu_cb(GtkMenuItem *menuitem, gpointer data)
5113 {
5114         MainWindow *mainwin = (MainWindow *)mainwin_list->data;
5115         PrefsAccount *account = (PrefsAccount *)data;
5116
5117         inc_account_mail(mainwin, account);
5118 }
5119 #ifndef GENERIC_UMPC
5120 static void account_compose_menu_cb(GtkMenuItem *menuitem, gpointer data)
5121 {
5122         PrefsAccount *account = (PrefsAccount *)data;
5123
5124         compose_new_with_folderitem(account, NULL, NULL);
5125 }
5126 #endif
5127 static void prefs_open_cb(GtkAction *action, gpointer data)
5128 {
5129         prefs_gtk_open();
5130 }
5131
5132 static void plugins_open_cb(GtkAction *action, gpointer data)
5133 {
5134         pluginwindow_create();
5135 }
5136
5137 static void manual_open_cb(GtkAction *action, gpointer data)
5138 {
5139         manual_open(MANUAL_MANUAL_CLAWS, NULL);
5140 }
5141
5142 static void manual_faq_open_cb(GtkAction *action, gpointer data)
5143 {
5144         manual_open(MANUAL_FAQ_CLAWS, NULL);
5145 }
5146
5147 static void legend_open_cb(GtkAction *action, gpointer data)
5148 {
5149         legend_show();
5150 }
5151
5152 #ifdef G_OS_WIN32
5153 static void set_default_client_cb(GtkAction *action, gpointer data)
5154 {
5155         char exename[MAX_PATH];
5156         gchar *binary_icon = NULL;
5157         gchar *binary_compose = NULL;
5158         gchar *binary_run = NULL;
5159         int r = 0;
5160         if ( !GetModuleFileNameA (0, exename, sizeof (exename)) ) {
5161                 alertpanel_error(_("Can not register as default client: impossible to get executable path."));
5162                 return;
5163         }
5164         binary_icon = g_strconcat(exename, ",0", NULL);
5165         binary_compose = g_strconcat(exename, " --compose %1", NULL);
5166         binary_run = g_strconcat(exename, NULL);
5167
5168         /* Try to set the Mail Start menu item to Claws. It may fail if we're not root; we don't care */
5169         r = write_w32_registry_string("HKLM", "Software\\Clients\\Mail", 
5170                         "", "Claws Mail");
5171         
5172         r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail", 
5173                                 "", "Claws Mail");
5174         if (!r)
5175                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail", 
5176                                 "DLLPath", "");
5177         if (!r)
5178                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto", 
5179                                 "", "URL:MailTo-Protocol");
5180         if (!r)
5181                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto", 
5182                                 "URL Protocol", "");
5183         if (!r)
5184                 r = write_w32_registry_dword ("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto", 
5185                                 "EditFlags", 2);
5186         if (!r)
5187                 r = write_w32_registry_string ("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto", 
5188                                 "FriendlyTypeName", "Claws-Mail URL");
5189         if (!r)
5190                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto\\DefaultIcon", 
5191                                 "", binary_icon);
5192         if (!r)
5193                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto\\shell\\open\\command", 
5194                                 "", binary_compose);
5195         if (!r)
5196                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\shell\\open\\command", 
5197                                 "", binary_run);
5198         
5199         if (!r)
5200                 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto", 
5201                                 "", "URL:MailTo-Protocol");
5202         if (!r)
5203                 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto", 
5204                                 "URL Protocol", "");
5205         if (!r)
5206                 r = write_w32_registry_dword ("HKCU", "Software\\Classes\\mailto", 
5207                                 "EditFlags", 2);
5208         if (!r)
5209                 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto", 
5210                                 "FriendlyTypeName", "Claws-Mail URL");
5211         if (!r)
5212                 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto\\DefaultIcon", 
5213                                 "", binary_icon);
5214         if (!r)
5215                 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto\\shell\\open\\command", 
5216                                 "", binary_compose);
5217         
5218         if (!r) {
5219                 SendMessage(HWND_BROADCAST, WM_SETTINGCHANGE, 0, (LPARAM)"Software\\Clients\\Mail");
5220                 alertpanel_notice(_("Claws Mail has been registered as default client."));
5221         } else {
5222                 alertpanel_error(_("Can not register as default client: impossible to write to the registry."));
5223         }
5224         g_free(binary_icon);
5225         g_free(binary_compose);
5226         g_free(binary_run);
5227 }
5228 #endif
5229
5230 static void scan_tree_func(Folder *folder, FolderItem *item, gpointer data)
5231 {
5232         MainWindow *mainwin = (MainWindow *)data;
5233         gchar *str;
5234
5235         if (item->path)
5236                 str = g_strdup_printf(_("Scanning folder %s%c%s..."),
5237                                       LOCAL_FOLDER(folder)->rootpath,
5238                                       G_DIR_SEPARATOR,
5239                                       item->path);
5240         else
5241                 str = g_strdup_printf(_("Scanning folder %s..."),
5242                                       LOCAL_FOLDER(folder)->rootpath);
5243
5244         STATUSBAR_PUSH(mainwin, str);
5245         STATUSBAR_POP(mainwin);
5246         g_free(str);
5247 }
5248
5249 static gboolean mainwindow_focus_in_event(GtkWidget *widget, GdkEventFocus *focus,
5250                                           gpointer data)
5251 {
5252         SummaryView *summary;
5253
5254         cm_return_val_if_fail(data, FALSE);
5255         if (!g_list_find(mainwin_list, data))
5256                 return TRUE;
5257         summary = ((MainWindow *)data)->summaryview;
5258         cm_return_val_if_fail(summary, FALSE);
5259
5260         if (GTK_CMCLIST(summary->ctree)->selection && 
5261             g_list_length(GTK_CMCLIST(summary->ctree)->selection) > 1)
5262                 return FALSE;
5263
5264         return FALSE;
5265 }
5266
5267 static gboolean mainwindow_visibility_event_cb(GtkWidget *widget, GdkEventVisibility *event,
5268                                           gpointer data)
5269 {
5270         is_obscured = (event->state == GDK_VISIBILITY_FULLY_OBSCURED);
5271         return FALSE;
5272 }
5273
5274 static gboolean mainwindow_state_event_cb(GtkWidget *widget, GdkEventWindowState *state,
5275                                           gpointer data)
5276 {
5277         if (!claws_is_starting()
5278                 && state->changed_mask&GDK_WINDOW_STATE_ICONIFIED
5279                 && state->new_window_state&GDK_WINDOW_STATE_ICONIFIED) {
5280
5281                 if (iconified_count > 0)
5282                         hooks_invoke(MAIN_WINDOW_GOT_ICONIFIED, NULL);
5283                 iconified_count++;
5284         } else if (!claws_is_starting()) {
5285                 prefs_common.mainwin_maximised = 
5286                         ((state->new_window_state&GDK_WINDOW_STATE_MAXIMIZED) != 0);
5287         }
5288         if (state->new_window_state == 0)
5289                 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(widget), FALSE);
5290         return FALSE;
5291 }
5292
5293 gboolean mainwindow_is_obscured(void)
5294 {
5295         return is_obscured;
5296 }
5297
5298 /*
5299  * Harvest addresses for selected folder.
5300  */
5301 static void addr_harvest_cb( GtkAction *action, gpointer data)
5302 {
5303         MainWindow *mainwin = (MainWindow *)data;
5304
5305         addressbook_harvest( mainwin->summaryview->folder_item, FALSE, NULL );
5306 }
5307
5308 /*
5309  * Harvest addresses for selected messages in summary view.
5310  */
5311 static void addr_harvest_msg_cb( GtkAction *action, gpointer data)
5312 {
5313         MainWindow *mainwin = (MainWindow *)data;
5314         summary_harvest_address( mainwin->summaryview );
5315 }
5316
5317 /*!
5318  *\brief        get a MainWindow
5319  *
5320  *\return       MainWindow * The first mainwindow in the mainwin_list
5321  */
5322 MainWindow *mainwindow_get_mainwindow(void)
5323 {
5324         if (mainwin_list && mainwin_list->data)
5325                 return (MainWindow *)(mainwin_list->data);
5326         else
5327                 return NULL;
5328 }
5329
5330 static gboolean mainwindow_progressindicator_hook(gpointer source, gpointer userdata)
5331 {
5332         ProgressData *data = (ProgressData *) source;
5333         MainWindow *mainwin = (MainWindow *) userdata;
5334
5335         switch (data->cmd) {
5336         case PROGRESS_COMMAND_START:
5337         case PROGRESS_COMMAND_STOP:
5338                 gtk_progress_bar_set_fraction
5339                         (GTK_PROGRESS_BAR(mainwin->progressbar), 0.0);
5340                 break;
5341         case PROGRESS_COMMAND_SET_PERCENTAGE:
5342                 gtk_progress_bar_set_fraction
5343                         (GTK_PROGRESS_BAR(mainwin->progressbar), data->value);
5344                 break;          
5345         }
5346         while (gtk_events_pending()) gtk_main_iteration ();
5347
5348         return FALSE;
5349 }
5350
5351 static void sync_cb(GtkAction *action, gpointer data)
5352 {
5353         MainWindow *mainwin = (MainWindow *)data;
5354         mainwindow_check_synchronise(mainwin, FALSE);
5355 }
5356
5357 static void forget_session_passwords_cb(GtkAction *action, gpointer data)
5358 {
5359         MainWindow *mainwin = (MainWindow *)data;
5360         GList *list = NULL;
5361         gint fgtn = 0;
5362         gint accs = 0;
5363
5364         main_window_lock(mainwin);
5365         for (list = account_get_list(); list != NULL; list = list->next) {
5366                 PrefsAccount *account = list->data;
5367                 if (account->session_passwd) {
5368                         g_free(account->session_passwd);
5369                         account->session_passwd = NULL;
5370                         ++fgtn;
5371                 }
5372                 if (account->session_smtp_passwd) {
5373                         g_free(account->session_smtp_passwd);
5374                         account->session_smtp_passwd = NULL;
5375                         ++fgtn;
5376                 }
5377                 ++accs;
5378         }
5379         main_window_unlock(mainwin);
5380         alertpanel_notice(ngettext("Forgotten %d password in %d accounts.\n",
5381                                    "Forgotten %d passwords in %d accounts.\n",
5382                                    fgtn), fgtn, accs);  
5383 }
5384
5385 #ifndef PASSWORD_CRYPTO_OLD
5386 static void forget_master_passphrase_cb(GtkAction *action, gpointer data)
5387 {
5388         MainWindow *mainwin = (MainWindow *)data;
5389
5390         main_window_lock(mainwin);
5391         master_passphrase_forget();
5392         main_window_unlock(mainwin);
5393 }
5394 #endif
5395
5396 void mainwindow_learn (MainWindow *mainwin, gboolean is_spam)
5397 {
5398         summary_mark_as_spam(mainwin->summaryview, is_spam, NULL);
5399 }
5400
5401 void mainwindow_jump_to(const gchar *target, gboolean popup)
5402 {
5403         gchar *tmp = NULL;
5404         gchar *p = NULL;
5405         FolderItem *item = NULL;
5406         gchar *msg = NULL;
5407         MainWindow *mainwin = mainwindow_get_mainwindow();
5408         gchar *from_uri = NULL;
5409         if (!target)
5410                 return;
5411                 
5412         if (!mainwin) {
5413                 g_print("not initialized\n");
5414                 return;
5415         }
5416
5417         if ((from_uri = g_filename_from_uri(target, NULL, NULL)) != NULL)
5418                 tmp = from_uri;
5419         else
5420                 tmp = g_strdup(target);
5421         
5422         if ((p = strstr(tmp, "\r")) != NULL)
5423                 *p = '\0';
5424         if ((p = strstr(tmp, "\n")) != NULL)
5425                 *p = '\0';
5426
5427         if ((item = folder_find_item_from_identifier(tmp))) {
5428                 g_print("selecting folder '%s'\n", tmp);
5429                 folderview_select(mainwin->folderview, item);
5430                 if (popup)
5431                         main_window_popup(mainwin);
5432                 g_free(tmp);
5433                 return;
5434         }
5435         
5436         msg = strrchr(tmp, '/');
5437         if (msg) {
5438                 *msg++ = '\0';
5439                 if ((item = folder_find_item_from_identifier(tmp))) {
5440                         g_print("selecting folder '%s'\n", tmp);
5441                         folderview_select(mainwin->folderview, item);
5442                 } else if ((item = folder_find_item_from_real_path(tmp))) {
5443                         g_print("selecting folder '%s'\n", tmp);
5444                         folderview_select(mainwin->folderview, item);
5445                 } else {
5446                         g_print("'%s' not found\n", tmp);
5447                 }
5448                 if (item && msg && atoi(msg)) {
5449                         g_print("selecting message %d\n", atoi(msg));
5450                         summary_select_by_msgnum(mainwin->summaryview, atoi(msg), TRUE);
5451                         if (popup)
5452                                 main_window_popup(mainwin);
5453                         g_free(tmp);
5454                         return;
5455                 } else if (item && msg[0] == '<' && msg[strlen(msg)-1] == '>') {
5456                         MsgInfo *msginfo = NULL;
5457                         msg++;
5458                         msg[strlen(msg)-1] = '\0';
5459                         msginfo = folder_item_get_msginfo_by_msgid(item, msg);
5460                         if (msginfo) {
5461                                 g_print("selecting message %s\n", msg);
5462                                 summary_select_by_msgnum(mainwin->summaryview, msginfo->msgnum, TRUE);
5463                                 if (popup)
5464                                         main_window_popup(mainwin);
5465                                 g_free(tmp);
5466                                 procmsg_msginfo_free(&msginfo);
5467                                 return;
5468                         } else {
5469                                 g_print("'%s' not found\n", msg);
5470                         }
5471                 } else {
5472                         g_print("'%s' not found\n", msg);
5473                 }
5474         } else {
5475                 g_print("'%s' not found\n", tmp);
5476         }
5477         
5478         g_free(tmp);
5479 }
5480
5481 void mainwindow_exit_folder(MainWindow *mainwin) {
5482         if (prefs_common.layout_mode == SMALL_LAYOUT) {
5483                 folderview_close_opened(mainwin->folderview, FALSE);
5484                 mainwin_paned_show_first(GTK_PANED(mainwin->hpaned));
5485                 folderview_grab_focus(mainwin->folderview);
5486         }
5487         mainwin->in_folder = FALSE;
5488         main_window_set_menu_sensitive(mainwin);
5489 }
5490
5491 void mainwindow_enter_folder(MainWindow *mainwin) {
5492         if (prefs_common.layout_mode == SMALL_LAYOUT) {
5493                 mainwin_paned_show_last(GTK_PANED(mainwin->hpaned));
5494         }
5495         mainwin->in_folder = TRUE;
5496         main_window_set_menu_sensitive(mainwin);
5497 }
5498
5499 static void save_part_as_cb(GtkAction *action, gpointer data)
5500 {
5501         MainWindow *mainwin = (MainWindow *)data;
5502
5503         if (mainwin->messageview 
5504         &&  mainwin->messageview->mimeview)
5505                 mimeview_save_as(mainwin->messageview->mimeview);
5506 }
5507
5508 static void view_part_as_text_cb(GtkAction *action, gpointer data)
5509 {
5510         MainWindow *mainwin = (MainWindow *)data;
5511
5512         if (mainwin->messageview 
5513         &&  mainwin->messageview->mimeview)
5514                 mimeview_display_as_text(mainwin->messageview->mimeview);
5515 }
5516
5517 static void open_part_cb(GtkAction *action, gpointer data)
5518 {
5519         MainWindow *mainwin = (MainWindow *)data;
5520
5521         if (mainwin->messageview 
5522         &&  mainwin->messageview->mimeview)
5523                 mimeview_launch(mainwin->messageview->mimeview, NULL);
5524 }
5525 #ifndef G_OS_WIN32
5526 static void open_part_with_cb(GtkAction *action, gpointer data)
5527 {
5528         MainWindow *mainwin = (MainWindow *)data;
5529
5530         if (mainwin->messageview 
5531         &&  mainwin->messageview->mimeview)
5532                 mimeview_open_with(mainwin->messageview->mimeview);
5533 }
5534 #endif
5535 static void check_signature_cb(GtkAction *action, gpointer data)
5536 {
5537         MainWindow *mainwin = (MainWindow *)data;
5538
5539         if (mainwin->messageview 
5540         &&  mainwin->messageview->mimeview)
5541                 mimeview_check_signature(mainwin->messageview->mimeview);
5542 }
5543
5544 static void goto_next_part_cb(GtkAction *action, gpointer data)
5545 {
5546         MainWindow *mainwin = (MainWindow *)data;
5547
5548         if (mainwin->messageview 
5549         &&  mainwin->messageview->mimeview)
5550                 mimeview_select_next_part(mainwin->messageview->mimeview);
5551 }
5552
5553 static void goto_prev_part_cb(GtkAction *action, gpointer data)
5554 {
5555         MainWindow *mainwin = (MainWindow *)data;
5556
5557         if (mainwin->messageview 
5558         &&  mainwin->messageview->mimeview)
5559                 mimeview_select_prev_part(mainwin->messageview->mimeview);
5560 }