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