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