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