48e31bba9c9e66abc8fcf102aef125ad5d38da39
[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/TLS 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 (mainwin->summaryview->folder_item
3019             && mainwin->summaryview->folder_item->stype != F_DRAFT)
3020                 UPDATE_STATE(M_NOT_DRAFT);
3021
3022         if (prefs_common.actions_list && g_slist_length(prefs_common.actions_list))
3023                 UPDATE_STATE(M_ACTIONS_EXIST);
3024
3025         tmp = tags_get_list();
3026         if (tmp && g_slist_length(tmp))
3027                 UPDATE_STATE(M_TAGS_EXIST);
3028         g_slist_free(tmp);
3029
3030         if (procmsg_have_queued_mails_fast() && !procmsg_is_sending())
3031                 UPDATE_STATE(M_HAVE_QUEUED_MAILS);
3032
3033         if (selection == SUMMARY_SELECTED_SINGLE &&
3034             (item &&
3035              (folder_has_parent_of_type(item, F_DRAFT) ||
3036               folder_has_parent_of_type(item, F_OUTBOX) ||
3037               folder_has_parent_of_type(item, F_QUEUE))))
3038                 UPDATE_STATE(M_ALLOW_REEDIT);
3039         if (cur_account)
3040                 UPDATE_STATE(M_HAVE_ACCOUNT);
3041         
3042         if (cur_account && cur_account->protocol != A_NONE)
3043                 UPDATE_STATE(M_HAVE_RETRIEVABLE_ACCOUNT);
3044
3045         if (any_folder_want_synchronise())
3046                 UPDATE_STATE(M_WANT_SYNC);
3047
3048         if (item && item->prefs->processing && selection != SUMMARY_NONE)
3049                 UPDATE_STATE(M_HAVE_PROCESSING);
3050
3051         if (g_list_length(account_list) > 1)
3052                 UPDATE_STATE(M_HAVE_MULTI_ACCOUNT);
3053
3054         for (account_list = account_get_list(); account_list != NULL; account_list = account_list->next) {
3055                 if (((PrefsAccount*)account_list->data)->protocol != A_NONE) {
3056                         UPDATE_STATE(M_HAVE_ANY_RETRIEVABLE_ACCOUNT);
3057                         break;
3058                 }
3059         }
3060
3061         for (account_list = account_get_list(); account_list != NULL; account_list = account_list->next) {
3062                 if (((PrefsAccount*)account_list->data)->protocol == A_NNTP) {
3063                         UPDATE_STATE(M_HAVE_NEWS_ACCOUNT);
3064                         break;
3065                 }
3066         }
3067         
3068         if (procmsg_spam_can_learn() &&
3069             (mainwin->summaryview->folder_item &&
3070              mainwin->summaryview->folder_item->folder->klass->type != F_UNKNOWN &&
3071              mainwin->summaryview->folder_item->folder->klass->type != F_NEWS)) {
3072                 UPDATE_STATE(M_CAN_LEARN_SPAM);
3073         }
3074
3075         if (mainwin->summaryview->folder_item) {
3076                 UPDATE_STATE(M_FOLDER_SELECTED);
3077         }
3078
3079         if (inc_is_active())
3080                 UPDATE_STATE(M_INC_ACTIVE);
3081         if (imap_cancel_all_enabled())
3082                 UPDATE_STATE(M_INC_ACTIVE);
3083
3084         if (send_is_active() | procmsg_is_sending())
3085                 UPDATE_STATE(M_SEND_ACTIVE);
3086
3087         if (mainwin->summaryview->deleted > 0)
3088                 UPDATE_STATE(M_DELETED_EXISTS);
3089
3090         if (mainwin->summaryview->deleted > 0 ||
3091             mainwin->summaryview->moved > 0 ||
3092             mainwin->summaryview->copied > 0)
3093                 UPDATE_STATE(M_DELAY_EXEC);
3094
3095         if (summary_is_list(mainwin->summaryview))
3096                 UPDATE_STATE(M_SUMMARY_ISLIST);
3097
3098         if (prefs_common.layout_mode != SMALL_LAYOUT || mainwin->in_folder)
3099                 UPDATE_STATE(M_IN_MSGLIST);
3100
3101         for (account_list = account_get_list(); account_list != NULL; account_list = account_list->next) {
3102                 PrefsAccount *account = account_list->data;
3103                 if (account->session_passwd || account->session_smtp_passwd) {
3104                         UPDATE_STATE(M_SESSION_PASSWORDS);
3105                         break;
3106                 }
3107         }
3108
3109 #ifndef PASSWORD_CRYPTO_OLD
3110         if (master_passphrase_is_entered()) {
3111                 UPDATE_STATE(M_MASTER_PASSPHRASE);
3112         }
3113 #endif
3114 #undef UPDATE_STATE
3115
3116         return state;
3117 }
3118
3119 SensitiveCondMask main_window_get_mask(SensitiveCond cond, ...)
3120 {
3121         va_list args;
3122         gint i;
3123         SensitiveCondMask value;
3124         static SensitiveCondMask SensitiveCond_table[M_MAX_RESERVED];
3125         static gboolean first_time = TRUE;
3126
3127         if (first_time) {
3128                 for (i = 0; i < M_MAX_RESERVED; i++)
3129                         SensitiveCond_table[i] = (SensitiveCondMask) ((SensitiveCondMask)1 << i);
3130                 first_time = FALSE;
3131         }
3132
3133         value = 0;
3134
3135         va_start(args, cond); 
3136         for (i = (gint) cond; i >= 0; i = va_arg(args, gint))
3137                 value |= SensitiveCond_table[i];
3138         va_end(args);
3139
3140         return value;
3141 }
3142
3143 void main_window_set_menu_sensitive(MainWindow *mainwin)
3144 {
3145         SensitiveCondMask state;
3146         gboolean sensitive;
3147         SummaryView *summaryview;
3148         gchar *menu_path;
3149         GtkWidget *menu;
3150         GList *children, *cur_item;
3151         gint i;
3152         gboolean mimepart_selected = FALSE;
3153
3154 #define N_ENTRIES 85
3155         static struct {
3156                 const gchar *entry;
3157                 SensitiveCondMask cond;
3158         } entry[N_ENTRIES];
3159
3160         i = 0;
3161 #define FILL_TABLE(entry_str, ...) \
3162 do { \
3163         entry[i].entry = (const gchar *) entry_str; entry[i++].cond = main_window_get_mask(__VA_ARGS__, -1); \
3164 } while (0)
3165
3166         FILL_TABLE("Menu/File/SaveAs", M_TARGET_EXIST);
3167         FILL_TABLE("Menu/File/SavePartAs", M_SINGLE_TARGET_EXIST);
3168         FILL_TABLE("Menu/File/Print", M_TARGET_EXIST);
3169         FILL_TABLE("Menu/File/SynchroniseFolders", M_WANT_SYNC);
3170         FILL_TABLE("Menu/File/Exit", M_UNLOCKED);
3171
3172         FILL_TABLE("Menu/Edit/SelectThread", M_TARGET_EXIST, M_SUMMARY_ISLIST);
3173         FILL_TABLE("Menu/Edit/Find", M_SINGLE_TARGET_EXIST);
3174         FILL_TABLE("Menu/Edit/QuickSearch", M_IN_MSGLIST);
3175         FILL_TABLE("Menu/Edit/SearchFolder", M_TARGET_EXIST, M_SUMMARY_ISLIST);
3176
3177         FILL_TABLE("Menu/View/SetColumns/Folderlist", M_UNLOCKED, M_SUMMARY_ISLIST);
3178         FILL_TABLE("Menu/View/Sort", M_EXEC, M_SUMMARY_ISLIST);
3179         FILL_TABLE("Menu/View/ThreadView", M_EXEC, M_SUMMARY_ISLIST);
3180         FILL_TABLE("Menu/View/ExpandThreads", M_MSG_EXIST, M_SUMMARY_ISLIST);
3181         FILL_TABLE("Menu/View/CollapseThreads", M_MSG_EXIST, M_SUMMARY_ISLIST);
3182         FILL_TABLE("Menu/View/HideReadThreads", M_HIDE_READ_THREADS, M_SUMMARY_ISLIST, M_NOT_DRAFT);
3183         FILL_TABLE("Menu/View/HideReadMessages", M_HIDE_READ_MSG, M_SUMMARY_ISLIST, M_NOT_DRAFT);
3184         FILL_TABLE("Menu/View/HideDelMessages", M_SUMMARY_ISLIST, M_NOT_DRAFT);
3185         FILL_TABLE("Menu/View/Goto/Prev", M_MSG_EXIST);
3186         FILL_TABLE("Menu/View/Goto/Next", M_MSG_EXIST);
3187         FILL_TABLE("Menu/View/Goto/PrevUnread", M_MSG_EXIST);
3188         FILL_TABLE("Menu/View/Goto/PrevNew", M_MSG_EXIST);
3189         FILL_TABLE("Menu/View/Goto/PrevMarked", M_MSG_EXIST);
3190         FILL_TABLE("Menu/View/Goto/PrevLabeled", M_MSG_EXIST);
3191         FILL_TABLE("Menu/View/Goto/NextLabeled", M_MSG_EXIST);
3192         FILL_TABLE("Menu/View/Goto/ParentMessage", M_SINGLE_TARGET_EXIST);
3193         FILL_TABLE("Menu/View/Goto/NextPart", M_SINGLE_TARGET_EXIST);
3194         FILL_TABLE("Menu/View/Goto/PrevPart", M_SINGLE_TARGET_EXIST);
3195         FILL_TABLE("Menu/View/OpenNewWindow", M_SINGLE_TARGET_EXIST);
3196         FILL_TABLE("Menu/View/MessageSource", M_SINGLE_TARGET_EXIST);
3197         FILL_TABLE("Menu/View/Part", M_SINGLE_TARGET_EXIST);
3198         FILL_TABLE("Menu/View/AllHeaders", M_SINGLE_TARGET_EXIST);
3199         FILL_TABLE("Menu/View/Quotes", M_SINGLE_TARGET_EXIST);
3200
3201         FILL_TABLE("Menu/Message/Receive/CurrentAccount", M_HAVE_ACCOUNT, M_UNLOCKED, M_HAVE_RETRIEVABLE_ACCOUNT);
3202         FILL_TABLE("Menu/Message/Receive/AllAccounts", M_HAVE_ACCOUNT, M_UNLOCKED, M_HAVE_ANY_RETRIEVABLE_ACCOUNT);
3203         FILL_TABLE("Menu/Message/Receive/CancelReceiving", M_INC_ACTIVE);
3204         FILL_TABLE("Menu/Message/SendQueue", M_HAVE_ACCOUNT, M_HAVE_QUEUED_MAILS);
3205         FILL_TABLE("Menu/Message/CancelSending", M_SEND_ACTIVE);
3206         FILL_TABLE("Menu/Message/ComposeEmail", M_HAVE_ACCOUNT);
3207         FILL_TABLE("Menu/Message/ComposeNews", M_HAVE_NEWS_ACCOUNT);
3208         FILL_TABLE("Menu/Message/Reply", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_SUMMARY_ISLIST);
3209         FILL_TABLE("Menu/Message/ReplyTo", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_SUMMARY_ISLIST);
3210         FILL_TABLE("Menu/Message/FollowupReply", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_NEWS, M_SUMMARY_ISLIST);
3211         FILL_TABLE("Menu/Message/Forward", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_SUMMARY_ISLIST);
3212         FILL_TABLE("Menu/Message/ForwardAtt", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_SUMMARY_ISLIST);
3213         FILL_TABLE("Menu/Message/Redirect", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_SUMMARY_ISLIST);
3214         FILL_TABLE("Menu/Message/Move", M_TARGET_EXIST, M_ALLOW_DELETE, M_NOT_NEWS);
3215         FILL_TABLE("Menu/Message/Copy", M_TARGET_EXIST, M_EXEC);
3216         FILL_TABLE("Menu/Message/Trash", M_TARGET_EXIST, M_ALLOW_DELETE, M_NOT_NEWS, M_NOT_TRASH);
3217         FILL_TABLE("Menu/Message/Delete", M_TARGET_EXIST, M_ALLOW_DELETE);
3218         FILL_TABLE("Menu/Message/TrashThread", M_TARGET_EXIST, M_SUMMARY_ISLIST);
3219         FILL_TABLE("Menu/Message/DeleteThread", M_TARGET_EXIST, M_SUMMARY_ISLIST);
3220         FILL_TABLE("Menu/Message/CancelNews", M_TARGET_EXIST, M_ALLOW_DELETE, M_NEWS);
3221         FILL_TABLE("Menu/Message/Mark", M_TARGET_EXIST, M_SUMMARY_ISLIST);
3222         FILL_TABLE("Menu/Message/Mark/MarkSpam", M_TARGET_EXIST, M_CAN_LEARN_SPAM);
3223         FILL_TABLE("Menu/Message/Mark/MarkHam", M_TARGET_EXIST, M_CAN_LEARN_SPAM);
3224         FILL_TABLE("Menu/Message/Mark/IgnoreThread", M_TARGET_EXIST);
3225         FILL_TABLE("Menu/Message/Mark/UnignoreThread", M_TARGET_EXIST);
3226         FILL_TABLE("Menu/Message/Mark/Lock", M_TARGET_EXIST);
3227         FILL_TABLE("Menu/Message/Mark/Unlock", M_TARGET_EXIST);
3228         FILL_TABLE("Menu/Message/ColorLabel", M_TARGET_EXIST);
3229         FILL_TABLE("Menu/Message/Tags", M_TARGET_EXIST);
3230         FILL_TABLE("Menu/Message/Reedit", M_HAVE_ACCOUNT, M_ALLOW_REEDIT);
3231         FILL_TABLE("Menu/Message/CheckSignature", M_SINGLE_TARGET_EXIST);
3232
3233         FILL_TABLE("Menu/Tools/AddSenderToAB", M_SINGLE_TARGET_EXIST);
3234         FILL_TABLE("Menu/Tools/CollectAddresses", M_FOLDER_SELECTED);
3235         FILL_TABLE("Menu/Tools/CollectAddresses/FromFolder", M_FOLDER_SELECTED);
3236         FILL_TABLE("Menu/Tools/CollectAddresses/FromSelected", M_TARGET_EXIST);
3237         FILL_TABLE("Menu/Tools/FilterFolder", M_MSG_EXIST, M_EXEC);
3238         FILL_TABLE("Menu/Tools/FilterSelected", M_TARGET_EXIST, M_EXEC);
3239         FILL_TABLE("Menu/Tools/RunProcessing", M_HAVE_PROCESSING);
3240         FILL_TABLE("Menu/Tools/CreateFilterRule", M_SINGLE_TARGET_EXIST, M_UNLOCKED);
3241         FILL_TABLE("Menu/Tools/CreateProcessingRule", M_SINGLE_TARGET_EXIST, M_UNLOCKED);
3242         FILL_TABLE("Menu/Tools/ListUrls", M_TARGET_EXIST);
3243         FILL_TABLE("Menu/Tools/Actions", M_TARGET_EXIST, M_ACTIONS_EXIST);
3244         FILL_TABLE("Menu/Tools/Execute", M_DELAY_EXEC);
3245         FILL_TABLE("Menu/Tools/Expunge", M_DELETED_EXISTS);
3246         FILL_TABLE("Menu/Tools/ForgetSessionPasswords", M_SESSION_PASSWORDS);
3247 #ifndef PASSWORD_CRYPTO_OLD
3248         FILL_TABLE("Menu/Tools/ForgetMasterPassphrase", M_MASTER_PASSPHRASE);
3249 #endif
3250         FILL_TABLE("Menu/Tools/DeleteDuplicates/SelFolder", M_MSG_EXIST, M_ALLOW_DELETE);
3251
3252         FILL_TABLE("Menu/Configuration", M_UNLOCKED);
3253         FILL_TABLE("Menu/Configuration/ChangeAccount", M_HAVE_MULTI_ACCOUNT);
3254         FILL_TABLE("Menu/Configuration/AccountPrefs", M_UNLOCKED);
3255         FILL_TABLE("Menu/Configuration/CreateAccount", M_UNLOCKED);
3256         FILL_TABLE("Menu/Configuration/EditAccounts", M_UNLOCKED);
3257         FILL_TABLE(NULL, -1);
3258 #undef FILL_TABLE
3259         if (i > N_ENTRIES)
3260                 g_error("main window menu entry table overrun (%d/%d)", i, N_ENTRIES);
3261 #undef ENTRIES
3262
3263         state = main_window_get_current_state(mainwin);
3264
3265         for (i = 0; entry[i].entry != NULL; i++) {
3266                 sensitive = ((entry[i].cond & state) == entry[i].cond);
3267                 cm_menu_set_sensitive_full(mainwin->ui_manager, entry[i].entry, sensitive);
3268         }
3269
3270         menu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(
3271                 gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/Receive")));
3272
3273         children = gtk_container_get_children(GTK_CONTAINER(menu));
3274         for (cur_item = children; cur_item != NULL; cur_item = cur_item->next) {
3275                 if (cur_item->data == gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/Receive/Separator1")) {
3276                         cur_item = cur_item->next;
3277                         break;
3278                 }
3279         }
3280
3281         for (; cur_item != NULL; cur_item = cur_item->next) {
3282                 gtk_widget_set_sensitive(GTK_WIDGET(cur_item->data),
3283                                          (main_window_get_mask(M_UNLOCKED, -1) & state) != 0);
3284         }
3285
3286         g_list_free(children);
3287
3288         main_window_menu_callback_block(mainwin);
3289
3290         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/ShowHide/MessageView",
3291                               messageview_is_visible(mainwin->messageview));
3292
3293         summaryview = mainwin->summaryview;
3294
3295         switch (summaryview->sort_key) {
3296         case SORT_BY_NUMBER:
3297                 menu_path = "Menu/View/Sort/Number"; break;
3298         case SORT_BY_SIZE:
3299                 menu_path = "Menu/View/Sort/Size"; break;
3300         case SORT_BY_DATE:
3301                 menu_path = "Menu/View/Sort/Date"; break;
3302         case SORT_BY_THREAD_DATE:
3303                 menu_path = "Menu/View/Sort/ThreadDate"; break;
3304         case SORT_BY_FROM:
3305                 menu_path = "Menu/View/Sort/From"; break;
3306         case SORT_BY_TO:
3307                 menu_path = "Menu/View/Sort/To"; break;
3308         case SORT_BY_SUBJECT:
3309                 menu_path = "Menu/View/Sort/Subject"; break;
3310         case SORT_BY_LABEL:
3311                 menu_path = "Menu/View/Sort/Color"; break;
3312         case SORT_BY_MARK:
3313                 menu_path = "Menu/View/Sort/Mark"; break;
3314         case SORT_BY_STATUS:
3315                 menu_path = "Menu/View/Sort/Status"; break;
3316         case SORT_BY_MIME:
3317                 menu_path = "Menu/View/Sort/Attachment"; break;
3318         case SORT_BY_SCORE:
3319                 menu_path = "Menu/View/Sort/Score"; break;
3320         case SORT_BY_LOCKED:
3321                 menu_path = "Menu/View/Sort/Locked"; break;
3322         case SORT_BY_TAGS:
3323                 menu_path = "Menu/View/Sort/Tag"; break;
3324         case SORT_BY_NONE:
3325         default:
3326                 menu_path = "Menu/View/Sort/DontSort"; break;
3327         }
3328         cm_toggle_menu_set_active_full(mainwin->ui_manager, menu_path, TRUE);
3329
3330         if (summaryview->sort_type == SORT_ASCENDING) {
3331                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Sort/Ascending", TRUE);
3332         } else {
3333                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Sort/Descending", TRUE);
3334         }
3335
3336         if (summaryview->sort_key != SORT_BY_NONE) {
3337                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Sort/Ascending", TRUE);
3338                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Sort/Descending", TRUE);
3339         } else {
3340                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Sort/Ascending", FALSE);
3341                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Sort/Descending", FALSE);
3342         }
3343
3344         if (mainwin->messageview
3345         &&  mainwin->messageview->mimeview
3346         &&  mainwin->messageview->mimeview->textview)
3347                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/AllHeaders",
3348                                                 prefs_common.show_all_headers);
3349         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/ThreadView", (state & main_window_get_mask(M_THREADED, -1)) != 0);
3350         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/ExpandThreads", (state & main_window_get_mask(M_THREADED, -1)) != 0);
3351         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/CollapseThreads", (state & main_window_get_mask(M_THREADED, -1)) != 0);
3352         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/HideReadThreads", (state & main_window_get_mask(M_THREADED, -1)) != 0 && (state & main_window_get_mask(M_NOT_DRAFT, -1)) != 0);
3353         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/CollapseAll", (prefs_common.hide_quotes == 1));
3354         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/Collapse2", (prefs_common.hide_quotes == 2));
3355         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/Collapse3", (prefs_common.hide_quotes == 3));
3356
3357         if (mainwin->summaryview->folder_item && !mainwin->summaryview->folder_item->threaded)
3358                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/HideReadThreads", FALSE);
3359         if ((mainwin->summaryview->folder_item && mainwin->summaryview->folder_item->hide_read_msgs) ||
3360             quicksearch_has_sat_predicate(mainwin->summaryview->quicksearch))
3361                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/HideReadThreads", FALSE);
3362         if ((mainwin->summaryview->folder_item && mainwin->summaryview->folder_item->hide_read_threads) ||
3363             quicksearch_has_sat_predicate(mainwin->summaryview->quicksearch))
3364                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/HideReadMessages", FALSE);
3365         if (quicksearch_has_sat_predicate(mainwin->summaryview->quicksearch))
3366                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/HideDelMessages", FALSE);
3367
3368         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Goto/PrevHistory",
3369                 messageview_nav_has_prev(mainwin->messageview));
3370         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Goto/NextHistory",
3371                 messageview_nav_has_next(mainwin->messageview));
3372
3373         if (mainwin->messageview 
3374         &&  mainwin->messageview->mimeview)
3375                 mimepart_selected = !mimeview_tree_is_empty(mainwin->messageview->mimeview);
3376
3377         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/File/SavePartAs", mimepart_selected);
3378         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Goto/NextPart", mimepart_selected);
3379         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Goto/PrevPart", mimepart_selected);
3380         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Part", mimepart_selected);
3381         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/CheckSignature", 
3382                                    mimepart_selected && mainwin->messageview->mimeview->signed_part);
3383
3384         main_window_menu_callback_unblock(mainwin);
3385 }
3386
3387 void main_create_mailing_list_menu (MainWindow *mainwin, MsgInfo *msginfo)
3388 {
3389         gint is_menu = 0;
3390         
3391         if (msginfo) 
3392                 is_menu = mailing_list_create_submenu (mainwin, msginfo);
3393         if (is_menu)
3394                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList", TRUE);
3395         else
3396                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList", FALSE);
3397 }
3398
3399 static gint mailing_list_create_submenu (MainWindow *mainwin, MsgInfo *msginfo)
3400 {
3401         gint menu_nb = 0;
3402         GtkWidget *menuitem;
3403         
3404         if (!msginfo || !msginfo->extradata) {
3405                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/Post", FALSE);
3406                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/Help", FALSE);
3407                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/Subscribe", FALSE);
3408                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/Unsubscribe", FALSE);
3409                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/ViewArchive", FALSE);
3410                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/ContactOwner", FALSE);
3411                 return 0;
3412         }
3413                 
3414         /* Mailing list post */
3415         if (!strcmp2 (msginfo->extradata->list_post, "NO")) {
3416                 g_free(msginfo->extradata->list_post);
3417                 msginfo->extradata->list_post = g_strdup (_("No posting allowed"));
3418         }
3419         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/Post");
3420                 
3421         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_post);
3422  
3423         /* Mailing list help */
3424         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/Help");
3425         
3426         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_help);
3427
3428         /* Mailing list subscribe */
3429         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/Subscribe");
3430         
3431         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_subscribe);
3432                 
3433         /* Mailing list unsubscribe */
3434         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/Unsubscribe");
3435         
3436         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_unsubscribe);
3437         
3438         /* Mailing list view archive */
3439         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/ViewArchive");
3440         
3441         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_archive);
3442         
3443         /* Mailing list contact owner */
3444         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/ContactOwner");
3445         
3446         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_owner);
3447         
3448         return menu_nb;
3449 }
3450
3451 static gint mailing_list_populate_submenu (GtkWidget *menuitem, const gchar * list_header)
3452 {
3453         GtkWidget *item, *menu;
3454         const gchar *url_pt ;
3455         gchar url_decoded[BUFFSIZE];
3456         GList *children, *amenu;
3457         gint menu_nb = 0;
3458         
3459         menu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(menuitem));
3460         
3461         /* First delete old submenu */
3462         /* FIXME: we can optimize this, and only change/add/delete necessary items */
3463         children = gtk_container_get_children(GTK_CONTAINER(menu));
3464         for (amenu = children; amenu; amenu = amenu->next) {
3465                 item = GTK_WIDGET (amenu->data);
3466                 gtk_widget_destroy (item);
3467         }
3468         g_list_free(children);
3469         if (list_header) {
3470                 for (url_pt = list_header; url_pt && *url_pt;) {
3471                         get_url_part (&url_pt, url_decoded);
3472                         item = NULL;
3473                         if (!g_ascii_strncasecmp(url_decoded, "mailto:", 7)) {
3474                                 item = cm_menu_item_new_label_from_url ((url_decoded));
3475                                 g_signal_connect(G_OBJECT(item), "activate",
3476                                                  G_CALLBACK(mailing_list_compose),
3477                                                  NULL);
3478                         }
3479                         else if (!g_ascii_strncasecmp(url_decoded, "http:", 5) ||
3480                                  !g_ascii_strncasecmp(url_decoded, "https:",6)) {
3481
3482                                 item = cm_menu_item_new_label_from_url ((url_decoded));
3483                                 g_signal_connect(G_OBJECT(item), "activate",
3484                                                  G_CALLBACK(mailing_list_open_uri),
3485                                                  NULL);
3486                         } 
3487                         if (item) {
3488                                 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
3489                                 gtk_widget_show (item);
3490                                 menu_nb++;
3491                         }
3492                 }
3493         }
3494         if (menu_nb)
3495                 gtk_widget_set_sensitive (menuitem, TRUE);
3496         else
3497                 gtk_widget_set_sensitive (menuitem, FALSE);
3498                 
3499
3500         return menu_nb;
3501 }
3502
3503 static void get_url_part (const gchar **buffer, gchar *url_decoded)
3504 {
3505         gchar tmp[BUFFSIZE];
3506         const gchar *buf;
3507         gint i = 0;
3508         buf = *buffer;
3509         gboolean with_plus = TRUE;
3510
3511         if (buf == 0x00) {
3512                 *url_decoded = '\0';
3513                 *buffer = NULL;
3514                 return;
3515         }
3516         /* Ignore spaces, comments  and tabs () */
3517         for (;*buf == ' ' || *buf == '(' || *buf == '\t'; buf++)
3518                 if (*buf == '(')
3519                         for (;*buf != ')' && *buf != 0x00; buf++);
3520         
3521         /* First non space and non comment must be a < */
3522         if (*buf =='<' ) {
3523                 buf++;
3524                 if (!strncmp(buf, "mailto:", strlen("mailto:")))
3525                         with_plus = FALSE;
3526                 for (i = 0;
3527                      *buf != '>' && *buf != 0x00 && i < BUFFSIZE;
3528                         tmp[i++] = *(buf++));
3529                 if (*buf == 0) {
3530                         *buffer = NULL;
3531                         *url_decoded = '\0';
3532                         return;
3533                 }
3534                 buf++;
3535         }
3536         else  {
3537                 *buffer = NULL;
3538                 *url_decoded = '\0';
3539                 return;
3540         }
3541         
3542         *url_decoded = '\0';
3543         *buffer = NULL;
3544         
3545         if (i == BUFFSIZE) {
3546                 return;
3547         }
3548         tmp[i] = 0x00;
3549         decode_uri_with_plus (url_decoded, (const gchar *)tmp, with_plus);
3550
3551         /* Prepare the work for the next url in the list */
3552         /* after the closing bracket >, ignore space, comments and tabs */
3553         for (;buf && *buf && (*buf == ' ' || *buf == '(' || *buf == '\t'); buf++)
3554                 if (*buf == '(')
3555                         for (;*buf != ')' && *buf != 0x00; buf++);
3556                         
3557         if (!buf || !*buf) {
3558                 *buffer = NULL;
3559                 return;
3560         }
3561
3562         /* now first non space, non comment must be a comma */
3563         if (*buf != ',')
3564                 for (;*buf != 0x00; buf++);
3565         else
3566                 buf++;
3567         *buffer = buf;
3568 }
3569         
3570 static void mailing_list_compose (GtkWidget *w, gpointer *data)
3571 {
3572         const gchar *mailto;
3573         PrefsAccount *account = NULL;
3574         FolderItem   *folder_item = NULL;
3575
3576         mailto = gtk_label_get_text(GTK_LABEL (gtk_bin_get_child(GTK_BIN((w)))));
3577         if (mainwindow_get_mainwindow()) {
3578                 folder_item = mainwindow_get_mainwindow()->summaryview->folder_item;
3579                 if (folder_item && folder_item->prefs && folder_item->prefs->enable_default_account)
3580                         account = account_find_from_id(folder_item->prefs->default_account);
3581                 if (folder_item && !account)
3582                         account = account_find_from_item(folder_item);
3583         }
3584         if (mailto)
3585                 compose_new_with_folderitem(account, folder_item, mailto+7);
3586 }
3587  
3588  static void mailing_list_open_uri (GtkWidget *w, gpointer *data)
3589 {
3590  
3591         const gchar *mailto;
3592  
3593         mailto = gtk_label_get_text(GTK_LABEL (gtk_bin_get_child(GTK_BIN((w)))));
3594         if (mailto)
3595                 open_uri (mailto, prefs_common_get_uri_cmd());
3596
3597         
3598 static void fix_folderview_scroll(MainWindow *mainwin)
3599 {
3600         static gboolean fix_done = FALSE;
3601
3602         if (fix_done)
3603                 return;
3604
3605         gtk_widget_queue_resize(mainwin->folderview->ctree);
3606
3607         fix_done = TRUE;
3608 }
3609
3610 void main_window_popup(MainWindow *mainwin)
3611 {
3612         static gboolean first_start = TRUE;
3613
3614         if (!gtk_widget_get_visible(GTK_WIDGET(mainwin->window)))
3615                 main_window_show(mainwin);
3616
3617         if (prefs_common.mainwin_maximised)
3618                 gtk_window_maximize(GTK_WINDOW(mainwin->window));
3619
3620         if (first_start) {
3621                 first_start = FALSE;
3622         } else {
3623                 gtkut_window_popup(mainwin->window);
3624         }
3625
3626         if (prefs_common.layout_mode == SMALL_LAYOUT) {
3627                 if (mainwin->in_folder) {
3628                         mainwindow_enter_folder(mainwin);
3629                 } else {
3630                         mainwindow_exit_folder(mainwin);
3631                 }
3632         }
3633         fix_folderview_scroll(mainwin);
3634 }
3635
3636 void main_window_show(MainWindow *mainwin)
3637 {
3638         gtk_widget_show(mainwin->window);
3639         gtk_widget_show(mainwin->vbox_body);
3640 #ifndef GENERIC_UMPC
3641         gtk_window_move(GTK_WINDOW(mainwin->window),
3642                                  prefs_common.mainwin_x,
3643                                  prefs_common.mainwin_y);
3644         
3645         gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->folderview),
3646                              prefs_common.folderview_width,
3647                              prefs_common.folderview_height);
3648         gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->summaryview),
3649                              prefs_common.summaryview_width,
3650                              prefs_common.summaryview_height);
3651         gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->messageview),
3652                              prefs_common.msgview_width,
3653                              prefs_common.msgview_height);
3654 #endif
3655 }
3656
3657 void main_window_hide(MainWindow *mainwin)
3658 {
3659         main_window_get_size(mainwin);
3660         main_window_get_position(mainwin);
3661
3662         gtk_widget_hide(mainwin->window);
3663         gtk_widget_hide(mainwin->vbox_body);
3664 }
3665
3666 static void main_window_set_widgets(MainWindow *mainwin, LayoutType layout_mode)
3667 {
3668         GtkWidget *folderwin = NULL;
3669         GtkWidget *messagewin = NULL;
3670         GtkWidget *hpaned;
3671         GtkWidget *vpaned;
3672         GtkWidget *vbox_body = mainwin->vbox_body;
3673         gboolean first_set = (mainwin->hpaned == NULL);
3674         debug_print("Setting widgets...\n");
3675
3676 #ifndef GENERIC_UMPC
3677         mainwin->messageview->statusbar = mainwin->statusbar;
3678         mainwin->messageview->statusbar_cid = mainwin->messageview_cid;
3679 #endif
3680         /* clean top-most container */
3681         if (mainwin->hpaned) {
3682                 if (gtk_widget_get_parent(mainwin->hpaned) == mainwin->vpaned)
3683                         gtk_widget_destroy(mainwin->vpaned);
3684                 else
3685                         gtk_widget_destroy(mainwin->hpaned);
3686         }
3687
3688         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/ShowHide/MessageView", 
3689                 (layout_mode != WIDE_MSGLIST_LAYOUT && layout_mode != SMALL_LAYOUT));
3690         switch (layout_mode) {
3691         case VERTICAL_LAYOUT:
3692         case NORMAL_LAYOUT:
3693         case SMALL_LAYOUT:
3694                 hpaned = gtk_hpaned_new();
3695                 if (layout_mode == VERTICAL_LAYOUT)
3696                         vpaned = gtk_hpaned_new();
3697                 else
3698                         vpaned = gtk_vpaned_new();
3699                 gtk_box_pack_start(GTK_BOX(vbox_body), hpaned, TRUE, TRUE, 0);
3700                 gtk_paned_add1(GTK_PANED(hpaned),
3701                                GTK_WIDGET_PTR(mainwin->folderview));
3702                 gtk_widget_show(hpaned);
3703                 gtk_widget_queue_resize(hpaned);
3704
3705                 if (messageview_is_visible(mainwin->messageview)) {
3706                         gtk_paned_add2(GTK_PANED(hpaned), vpaned);
3707                         gtk_paned_pack1(GTK_PANED(vpaned),
3708                                        GTK_WIDGET_PTR(mainwin->summaryview), TRUE, TRUE);
3709                 } else {
3710                         gtk_paned_add2(GTK_PANED(hpaned),
3711                                        GTK_WIDGET_PTR(mainwin->summaryview));
3712                         g_object_ref(vpaned);
3713                 }
3714                 gtk_paned_add2(GTK_PANED(vpaned),
3715                                GTK_WIDGET_PTR(mainwin->messageview));
3716                 gtk_widget_show(vpaned);
3717                 if (layout_mode == SMALL_LAYOUT && first_set) {
3718                         mainwin_paned_show_first(GTK_PANED(hpaned));
3719                 }
3720                 gtk_widget_queue_resize(vpaned);
3721                 break;
3722         case WIDE_LAYOUT:
3723                 vpaned = gtk_vpaned_new();
3724                 hpaned = gtk_hpaned_new();
3725                 gtk_box_pack_start(GTK_BOX(vbox_body), vpaned, TRUE, TRUE, 0);
3726                 gtk_paned_add1(GTK_PANED(vpaned), hpaned);
3727
3728                 gtk_paned_add1(GTK_PANED(hpaned),
3729                                GTK_WIDGET_PTR(mainwin->folderview));
3730                 gtk_paned_add2(GTK_PANED(hpaned),
3731                                GTK_WIDGET_PTR(mainwin->summaryview));
3732
3733                 gtk_widget_show(hpaned);
3734                 gtk_widget_queue_resize(hpaned);
3735
3736                 if (messageview_is_visible(mainwin->messageview)) {
3737                         gtk_paned_add2(GTK_PANED(vpaned),
3738                                GTK_WIDGET_PTR(mainwin->messageview));   
3739                 } else {
3740                         g_object_ref(GTK_WIDGET_PTR(mainwin->messageview));
3741                 }
3742                 gtk_widget_show(vpaned);
3743                 gtk_widget_queue_resize(vpaned);
3744                 break;
3745         case WIDE_MSGLIST_LAYOUT:
3746                 vpaned = gtk_vpaned_new();
3747                 hpaned = gtk_hpaned_new();
3748                 gtk_box_pack_start(GTK_BOX(vbox_body), vpaned, TRUE, TRUE, 0);
3749
3750                 gtk_paned_add1(GTK_PANED(vpaned),
3751                                GTK_WIDGET_PTR(mainwin->summaryview));
3752                 gtk_paned_add1(GTK_PANED(hpaned),
3753                                GTK_WIDGET_PTR(mainwin->folderview));
3754
3755                 gtk_widget_show(hpaned);
3756                 gtk_widget_queue_resize(hpaned);
3757
3758                 if (messageview_is_visible(mainwin->messageview)) {
3759                         gtk_paned_add2(GTK_PANED(hpaned),
3760                                GTK_WIDGET_PTR(mainwin->messageview));   
3761                 } else {
3762                         g_object_ref(GTK_WIDGET_PTR(mainwin->messageview));
3763                 }
3764                 gtk_paned_add2(GTK_PANED(vpaned), hpaned);
3765
3766                 gtk_widget_show(vpaned);
3767                 gtk_widget_queue_resize(vpaned);
3768                 break;
3769         default:
3770                 g_warning("Unknown layout");
3771                 return;
3772         }
3773
3774         mainwin->hpaned = hpaned;
3775         mainwin->vpaned = vpaned;
3776
3777         if (layout_mode == SMALL_LAYOUT) {
3778                 if (mainwin->messageview->visible)
3779                         main_window_toggle_message_view(mainwin);
3780         } 
3781
3782         if (layout_mode == SMALL_LAYOUT && first_set) {
3783                 gtk_widget_realize(mainwin->window);
3784                 gtk_widget_realize(mainwin->folderview->ctree);
3785                 gtk_widget_realize(mainwin->summaryview->hbox);
3786                 gtk_widget_realize(mainwin->summaryview->hbox_l);
3787                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->folderview),
3788                                     prefs_common.folderview_width,
3789                                     prefs_common.folderview_height);
3790                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->summaryview),
3791                                     0,0);
3792                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->messageview),
3793                                     0,0);
3794                 gtk_widget_set_size_request(GTK_WIDGET(mainwin->window),
3795                                 prefs_common.mainwin_width,
3796                                 prefs_common.mainwin_height);
3797                 gtk_paned_set_position(GTK_PANED(mainwin->hpaned), 800);
3798         } else {
3799                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->folderview),
3800                                     prefs_common.folderview_width,
3801                                     prefs_common.folderview_height);
3802                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->summaryview),
3803                                     prefs_common.summaryview_width,
3804                                     prefs_common.summaryview_height);
3805                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->messageview),
3806                                     prefs_common.msgview_width,
3807                                     prefs_common.msgview_height);
3808                 gtk_widget_set_size_request(GTK_WIDGET(mainwin->window),
3809                                     prefs_common.mainwin_width,
3810                                     prefs_common.mainwin_height);
3811         } 
3812         /* remove headerview if not in prefs */
3813         headerview_set_visibility(mainwin->messageview->headerview,
3814                                   prefs_common.display_header_pane);
3815
3816         if (messageview_is_visible(mainwin->messageview))
3817                 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
3818                               GTK_ARROW_DOWN, GTK_SHADOW_OUT);
3819         else
3820                 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
3821                               GTK_ARROW_UP, GTK_SHADOW_OUT);
3822
3823         gtk_window_move(GTK_WINDOW(mainwin->window),
3824                         prefs_common.mainwin_x,
3825                         prefs_common.mainwin_y);
3826
3827         gtk_widget_queue_resize(vbox_body);
3828         gtk_widget_queue_resize(mainwin->vbox);
3829         gtk_widget_queue_resize(mainwin->window);
3830         /* CLAWS: previous "gtk_widget_show_all" makes noticeview
3831          * and mimeview icon list/ctree lose track of their visibility states */
3832         if (!noticeview_is_visible(mainwin->messageview->noticeview)) 
3833                 gtk_widget_hide(GTK_WIDGET_PTR(mainwin->messageview->noticeview));
3834         if (!noticeview_is_visible(mainwin->messageview->mimeview->siginfoview)) 
3835                 gtk_widget_hide(GTK_WIDGET_PTR(mainwin->messageview->mimeview->siginfoview));
3836         if (mainwin->messageview->mimeview->ctree_mode)
3837                 gtk_widget_hide(mainwin->messageview->mimeview->icon_mainbox);
3838         else 
3839                 gtk_widget_hide(mainwin->messageview->mimeview->ctree_mainbox);
3840
3841         prefs_common.layout_mode = layout_mode;
3842
3843         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/ShowHide/MessageView", 
3844                  messageview_is_visible(mainwin->messageview));
3845
3846 #ifndef GENERIC_UMPC
3847         switch (prefs_common.layout_mode) {
3848         case NORMAL_LAYOUT:
3849                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/Standard", TRUE);
3850                 break;
3851         case VERTICAL_LAYOUT:
3852                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/ThreeColumns", TRUE);
3853                 break;
3854         case WIDE_LAYOUT:
3855                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/WideMessage", TRUE);
3856                 break;
3857         case WIDE_MSGLIST_LAYOUT:
3858                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/WideMessageList", TRUE);
3859                 break;
3860         case SMALL_LAYOUT:
3861                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/SmallScreen", TRUE);
3862                 break;
3863         }
3864 #endif
3865
3866         if (folderwin) {
3867                 g_signal_connect
3868                         (G_OBJECT(folderwin), "size_allocate",
3869                          G_CALLBACK(folder_window_size_allocate_cb),
3870                          mainwin);
3871         }
3872         if (messagewin) {
3873                 g_signal_connect
3874                         (G_OBJECT(messagewin), "size_allocate",
3875                          G_CALLBACK(message_window_size_allocate_cb),
3876                          mainwin);
3877         }
3878
3879         debug_print("Setting widgets done.\n");
3880 }
3881
3882 void main_window_destroy_all(void)
3883 {
3884         while (mainwin_list != NULL) {
3885                 MainWindow *mainwin = (MainWindow*)mainwin_list->data;
3886
3887                 /* free toolbar stuff */
3888                 toolbar_clear_list(TOOLBAR_MAIN);
3889                 TOOLBAR_DESTROY_ACTIONS(mainwin->toolbar->action_list);
3890                 TOOLBAR_DESTROY_ITEMS(mainwin->toolbar->item_list);
3891
3892                 summaryview_destroy(mainwin->summaryview);
3893                 mainwin->folderview->mainwin = NULL;
3894                 mainwin->summaryview->mainwin = NULL;
3895                 mainwin->messageview->mainwin = NULL;
3896
3897                 g_free(mainwin->toolbar);
3898                 g_free(mainwin);
3899                 
3900                 mainwin_list = g_list_remove(mainwin_list, mainwin);
3901         }
3902         g_list_free(mainwin_list);
3903         mainwin_list = NULL;
3904 }
3905
3906 static void toolbar_child_attached(GtkWidget *widget, GtkWidget *child,
3907                                    gpointer data)
3908 {
3909         gtk_widget_set_size_request(child, 1, -1);
3910 }
3911
3912 static void toolbar_child_detached(GtkWidget *widget, GtkWidget *child,
3913                                    gpointer data)
3914 {
3915         gtk_widget_set_size_request(child, -1, -1);
3916 }
3917 #ifndef GENERIC_UMPC
3918 static gboolean ac_label_button_pressed(GtkWidget *widget, GdkEventButton *event,
3919                                     gpointer data)
3920 {
3921         MainWindow *mainwin = (MainWindow *)data;
3922         GtkWidget *menu = NULL;
3923         
3924         if (!event) return FALSE;
3925
3926         gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
3927         
3928         menu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(mainwin->ac_menu));
3929
3930         gtk_menu_popup(GTK_MENU(menu), NULL, NULL,
3931                        menu_button_position, widget,
3932                        event->button, event->time);
3933
3934         return TRUE;
3935 }
3936 #endif
3937 static gint main_window_close_cb(GtkWidget *widget, GdkEventAny *event,
3938                                  gpointer data)
3939 {
3940         MainWindow *mainwin = (MainWindow *)data;
3941         gboolean close_allowed = TRUE;
3942
3943         hooks_invoke(MAIN_WINDOW_CLOSE, &close_allowed);
3944
3945         if (close_allowed && mainwin->lock_count == 0)
3946                 app_exit_cb(NULL, data);
3947
3948         return TRUE;
3949 }
3950
3951 static void main_window_size_allocate_cb(GtkWidget *widget,
3952                                          GtkAllocation *allocation,
3953                                          gpointer data)
3954 {
3955         MainWindow *mainwin = (MainWindow *)data;
3956         main_window_get_size(mainwin);
3957 }
3958
3959 static void folder_window_size_allocate_cb(GtkWidget *widget,
3960                                            GtkAllocation *allocation,
3961                                            gpointer data)
3962 {
3963         MainWindow *mainwin = (MainWindow *)data;
3964
3965         main_window_get_size(mainwin);
3966 }
3967
3968 static void message_window_size_allocate_cb(GtkWidget *widget,
3969                                             GtkAllocation *allocation,
3970                                             gpointer data)
3971 {
3972         MainWindow *mainwin = (MainWindow *)data;
3973
3974         main_window_get_size(mainwin);
3975 }
3976
3977 static void add_mailbox_cb(GtkAction *action, gpointer data)
3978 {
3979         MainWindow *mainwin = (MainWindow *)data;
3980         main_window_add_mailbox(mainwin);
3981 }
3982
3983 static void update_folderview_cb(GtkAction *action, gpointer data)
3984 {
3985         MainWindow *mainwin = (MainWindow *)data;
3986         summary_show(mainwin->summaryview, NULL);
3987         folderview_check_new_all();
3988 }
3989
3990 static void foldersort_cb(GtkAction *action, gpointer data)
3991 {
3992         foldersort_open();
3993 }
3994
3995 static void import_mbox_cb(GtkAction *action, gpointer data)
3996 {
3997         MainWindow *mainwin = (MainWindow *)data;
3998         /* only notify if import has failed */
3999         if (import_mbox(mainwin->summaryview->folder_item) == -1) {
4000                 alertpanel_error(_("Mbox import has failed."));
4001         }
4002 }
4003
4004 static void export_mbox_cb(GtkAction *action, gpointer data)
4005 {
4006         MainWindow *mainwin = (MainWindow *)data;
4007         /* only notify if export has failed */
4008         if (export_mbox(mainwin->summaryview->folder_item) == -1) {
4009                 alertpanel_error(_("Export to mbox has failed."));
4010         }
4011 }
4012
4013 static void export_list_mbox_cb(GtkAction *action, gpointer data)
4014 {
4015         MainWindow *mainwin = (MainWindow *)data;
4016         /* only notify if export has failed */
4017         if (summaryview_export_mbox_list(mainwin->summaryview) == -1) {
4018                 alertpanel_error(_("Export to mbox has failed."));
4019         }
4020 }
4021
4022 static void empty_trash_cb(GtkAction *action, gpointer data)
4023 {
4024         MainWindow *mainwin = (MainWindow *)data;
4025         main_window_empty_trash(mainwin, TRUE, FALSE);
4026 }
4027
4028 static void save_as_cb(GtkAction *action, gpointer data)
4029 {
4030         MainWindow *mainwin = (MainWindow *)data;
4031         summary_save_as(mainwin->summaryview);
4032 }
4033
4034 static void print_cb(GtkAction *action, gpointer data)
4035 {
4036         MainWindow *mainwin = (MainWindow *)data;
4037         summary_print(mainwin->summaryview);
4038 }
4039
4040 static void page_setup_cb(GtkAction *action, gpointer data)
4041 {
4042         MainWindow *mainwin = (MainWindow *)data;
4043         GtkWindow *win;
4044
4045         win = (mainwin ? GTK_WINDOW(mainwin->window) : NULL);
4046
4047         printing_page_setup(win);
4048 }
4049
4050 static void app_exit_cb(GtkAction *action, gpointer data)
4051 {
4052         MainWindow *mainwin = (MainWindow *)data;
4053         if (prefs_common.clean_on_exit) {
4054                 if (!main_window_empty_trash(mainwin, prefs_common.ask_on_clean, TRUE))
4055                         return;
4056         }
4057
4058         if (prefs_common.confirm_on_exit) {
4059                 if (alertpanel(_("Exit"), _("Exit Claws Mail?"),
4060                                GTK_STOCK_CANCEL, GTK_STOCK_QUIT,  NULL)
4061                     != G_ALERTALTERNATE)
4062                         return;
4063                 manage_window_focus_in(mainwin->window, NULL, NULL);
4064         }
4065
4066         app_will_exit(NULL, mainwin);
4067 }
4068
4069 static void search_cb(GtkAction *action, gpointer data)
4070 {
4071         MainWindow *mainwin = (MainWindow *)data;
4072         message_search(mainwin->messageview);
4073 }
4074
4075 static void search_folder_cb(GtkAction *action, gpointer data)
4076 {
4077         MainWindow *mainwin = (MainWindow *)data;
4078         FolderItem *item = mainwin->summaryview->folder_item;
4079         cm_return_if_fail(item != NULL);
4080         summary_search(mainwin->summaryview);
4081 }
4082
4083 static void mainwindow_quicksearch(GtkAction *action, gpointer data)
4084 {
4085         MainWindow *mainwin = (MainWindow *)data;
4086         summaryview_activate_quicksearch(mainwin->summaryview, TRUE);
4087 }
4088
4089 static void toggle_message_cb(GtkAction *action, gpointer data)
4090 {
4091         MainWindow *mainwin = (MainWindow *)data;
4092         gboolean active;
4093
4094         active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
4095
4096         if (active != messageview_is_visible(mainwin->messageview))
4097                 summary_toggle_view(mainwin->summaryview);
4098 }
4099
4100 static void toggle_toolbar_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4101 {
4102         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4103         MainWindow *mainwin = (MainWindow *)data;
4104         toolbar_toggle(value, mainwin);
4105 }
4106
4107 static void main_window_reply_cb(GtkAction *gaction, gpointer data)
4108 {
4109         MainWindow *mainwin = (MainWindow *)data;
4110         MessageView *msgview = (MessageView*)mainwin->messageview;
4111         GSList *msginfo_list = NULL;
4112         gint action = COMPOSE_REPLY;
4113         const gchar *a_name = gtk_action_get_name(gaction);
4114
4115         DO_ACTION("Message/Reply", COMPOSE_REPLY);
4116         DO_ACTION("Message/ReplyTo/All", COMPOSE_REPLY_TO_ALL);
4117         DO_ACTION("Message/ReplyTo/Sender", COMPOSE_REPLY_TO_SENDER);
4118         DO_ACTION("Message/ReplyTo/List", COMPOSE_REPLY_TO_LIST);
4119         DO_ACTION("Message/Forward", COMPOSE_FORWARD_INLINE);
4120         DO_ACTION("Message/ForwardAtt", COMPOSE_FORWARD_AS_ATTACH);
4121         DO_ACTION("Message/Redirect", COMPOSE_REDIRECT);
4122         DO_ACTION("Message/FollowupReply", COMPOSE_FOLLOWUP_AND_REPLY_TO);
4123
4124         cm_return_if_fail(msgview != NULL);
4125
4126         msginfo_list = summary_get_selection(mainwin->summaryview);
4127         cm_return_if_fail(msginfo_list != NULL);
4128         compose_reply_from_messageview(msgview, msginfo_list, action);
4129         g_slist_free(msginfo_list);
4130 }
4131
4132 static void toggle_col_headers_cb(GtkAction *gaction, gpointer data)
4133 {
4134         MainWindow *mainwin = (MainWindow *)data;
4135         FolderView *folderview = mainwin->folderview;
4136         SummaryView *summaryview = mainwin->summaryview;
4137         MimeView *mimeview = mainwin->messageview->mimeview;
4138
4139         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (gaction))) {
4140                 gtk_cmclist_column_titles_show(GTK_CMCLIST(folderview->ctree));
4141                 gtk_cmclist_column_titles_show(GTK_CMCLIST(summaryview->ctree));
4142                 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(mimeview->ctree), TRUE);
4143                 prefs_common.show_col_headers = TRUE;
4144         } else {
4145                 gtk_cmclist_column_titles_hide(GTK_CMCLIST(folderview->ctree));
4146                 gtk_cmclist_column_titles_hide(GTK_CMCLIST(summaryview->ctree));
4147                 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(mimeview->ctree), FALSE);               
4148                 prefs_common.show_col_headers = FALSE;
4149         }
4150 }
4151
4152 #ifndef GENERIC_UMPC
4153 static void toggle_statusbar_cb(GtkAction *gaction, gpointer data)
4154 {
4155         MainWindow *mainwin = (MainWindow *)data;
4156         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (gaction))) {
4157                 gtk_widget_show(mainwin->hbox_stat);
4158                 prefs_common.show_statusbar = TRUE;
4159         } else {
4160                 gtk_widget_hide(mainwin->hbox_stat);
4161                 prefs_common.show_statusbar = FALSE;
4162         }
4163 }
4164
4165 static void set_layout_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4166 {
4167         MainWindow *mainwin = (MainWindow *)data;
4168         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4169         LayoutType layout_mode = value;
4170         LayoutType old_layout_mode = prefs_common.layout_mode;
4171         if (mainwin->menu_lock_count) {
4172                 return;
4173         }
4174         if (!gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current))) {
4175                 return;
4176         }
4177         
4178         if (layout_mode == prefs_common.layout_mode) {
4179                 return;
4180         }
4181         
4182         if (!mainwin->messageview->visible && layout_mode != SMALL_LAYOUT)
4183                 main_window_toggle_message_view(mainwin);
4184         else if (mainwin->messageview->visible && layout_mode == SMALL_LAYOUT)
4185                 main_window_toggle_message_view(mainwin);
4186
4187         main_window_separation_change(mainwin, layout_mode);
4188         mainwindow_reset_paned(GTK_PANED(mainwin->vpaned));
4189         if (old_layout_mode == SMALL_LAYOUT && layout_mode != SMALL_LAYOUT) {
4190                 mainwindow_reset_paned(GTK_PANED(mainwin->hpaned));
4191                 if (layout_mode == VERTICAL_LAYOUT)
4192                         mainwindow_reset_paned(GTK_PANED(mainwin->vpaned));
4193         }
4194         if (old_layout_mode != SMALL_LAYOUT && layout_mode == SMALL_LAYOUT) {
4195                 mainwin_paned_show_first(GTK_PANED(mainwin->hpaned));
4196                 mainwindow_exit_folder(mainwin);
4197         }
4198         summary_relayout(mainwin->summaryview); 
4199         summary_update_unread(mainwin->summaryview, NULL);
4200 }
4201 #endif
4202
4203 void main_window_toggle_work_offline (MainWindow *mainwin, gboolean offline,
4204                                         gboolean ask_sync)
4205 {
4206         static gboolean switching = FALSE;
4207
4208         if (switching)
4209                 return;
4210
4211         switching = TRUE;
4212
4213         offline_ask_sync = ask_sync;
4214         if (offline)
4215                 online_switch_clicked (GTK_BUTTON(mainwin->online_switch), mainwin);
4216         else
4217                 online_switch_clicked (GTK_BUTTON(mainwin->offline_switch), mainwin);
4218         offline_ask_sync = TRUE;
4219
4220         switching = FALSE;
4221 }
4222
4223 static void toggle_work_offline_cb (GtkAction *action, gpointer data)
4224 {
4225         MainWindow *mainwin = (MainWindow *)data;
4226         main_window_toggle_work_offline(mainwin, gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)), TRUE);
4227 }
4228
4229 static gboolean any_folder_want_synchronise(void)
4230 {
4231         GList *folderlist = folder_get_list();
4232
4233         /* see if there are synchronised folders */
4234         for (; folderlist; folderlist = folderlist->next) {
4235                 Folder *folder = (Folder *)folderlist->data;
4236                 if (folder_want_synchronise(folder)) {
4237                         return TRUE;
4238                 }
4239         }
4240         
4241         return FALSE;
4242 }
4243
4244 static void mainwindow_check_synchronise(MainWindow *mainwin, gboolean ask)
4245 {
4246         
4247         if (!any_folder_want_synchronise())
4248                 return;
4249
4250         if (offline_ask_sync && ask && alertpanel(_("Folder synchronisation"),
4251                         _("Do you want to synchronise your folders now?"),
4252                         GTK_STOCK_CANCEL, g_strconcat("+", _("_Synchronise"), NULL), NULL) != G_ALERTALTERNATE)
4253                 return;
4254         
4255         if (offline_ask_sync)
4256                 folder_synchronise(NULL);
4257 }
4258
4259 static void online_switch_clicked (GtkButton *btn, gpointer data) 
4260 {
4261         MainWindow *mainwin;
4262         gboolean have_connectivity;
4263
4264 #ifdef HAVE_NETWORKMANAGER_SUPPORT
4265         have_connectivity = networkmanager_is_online(NULL); 
4266 #else
4267         have_connectivity = TRUE;
4268 #endif
4269
4270         mainwin = (MainWindow *) data;
4271         
4272         cm_return_if_fail(mainwin != NULL);
4273         
4274         if (btn == GTK_BUTTON(mainwin->online_switch)) {
4275 #ifndef GENERIC_UMPC
4276                 gtk_widget_hide (mainwin->online_switch);
4277                 gtk_widget_show (mainwin->offline_switch);
4278 #endif
4279                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/File/OfflineMode", TRUE);
4280
4281                 inc_autocheck_timer_remove();
4282                         
4283                 /* go offline */
4284                 if (prefs_common.work_offline)
4285                         return;
4286
4287                 if(have_connectivity)
4288                         mainwindow_check_synchronise(mainwin, TRUE);
4289                 prefs_common.work_offline = TRUE;
4290                 imap_disconnect_all(have_connectivity);
4291                 nntp_disconnect_all(have_connectivity);
4292                 hooks_invoke(OFFLINE_SWITCH_HOOKLIST, NULL);
4293         } else {
4294                 /*go online */
4295                 if (!prefs_common.work_offline)
4296                         return;
4297 #ifndef GENERIC_UMPC
4298                 gtk_widget_hide (mainwin->offline_switch);
4299                 gtk_widget_show (mainwin->online_switch);
4300 #endif
4301                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/File/OfflineMode", FALSE);
4302                 prefs_common.work_offline = FALSE;
4303                 inc_autocheck_timer_set();
4304                 refresh_resolvers();
4305                 hooks_invoke(OFFLINE_SWITCH_HOOKLIST, NULL);
4306         }
4307 }
4308
4309 static void addressbook_open_cb(GtkAction *action, gpointer data)
4310 {
4311 #ifndef USE_ALT_ADDRBOOK
4312         addressbook_open(NULL);
4313 #else
4314         GError* error = NULL;
4315         
4316         addressbook_dbus_open(FALSE, &error);
4317         if (error) {
4318                 g_warning("Failed to open address book: %s", error->message);
4319                 g_error_free(error);
4320         }
4321 #endif
4322 }
4323
4324 static void log_window_show_cb(GtkAction *action, gpointer data)
4325 {
4326         MainWindow *mainwin = (MainWindow *)data;
4327         log_window_show(mainwin->logwin);
4328 }
4329
4330 static void filtering_debug_window_show_cb(GtkAction *action, gpointer data)
4331 {
4332         MainWindow *mainwin = (MainWindow *)data;
4333         log_window_show(mainwin->filtering_debugwin);
4334 }
4335
4336 static void inc_cancel_cb(GtkAction *action, gpointer data)
4337 {
4338         inc_cancel_all();
4339         imap_cancel_all();
4340 }
4341
4342 static void send_cancel_cb(GtkAction *action, gpointer data)
4343 {
4344         send_cancel();
4345 }
4346
4347 static void move_to_cb(GtkAction *action, gpointer data)
4348 {
4349         MainWindow *mainwin = (MainWindow *)data;
4350         summary_move_to(mainwin->summaryview);
4351 }
4352
4353 static void copy_to_cb(GtkAction *action, gpointer data)
4354 {
4355         MainWindow *mainwin = (MainWindow *)data;
4356         summary_copy_to(mainwin->summaryview);
4357 }
4358
4359 static void delete_cb(GtkAction *action, gpointer data)
4360 {
4361         MainWindow *mainwin = (MainWindow *)data;
4362         summary_delete(mainwin->summaryview);
4363 }
4364
4365 static void delete_trash_cb(GtkAction *action, gpointer data)
4366 {
4367         MainWindow *mainwin = (MainWindow *)data;
4368         summary_delete_trash(mainwin->summaryview);
4369 }
4370
4371 static void cancel_cb(GtkAction *action, gpointer data)
4372 {
4373         MainWindow *mainwin = (MainWindow *)data;
4374         summary_cancel(mainwin->summaryview);
4375 }
4376
4377 static void open_msg_cb(GtkAction *action, gpointer data)
4378 {
4379         MainWindow *mainwin = (MainWindow *)data;
4380         summary_open_msg(mainwin->summaryview);
4381 }
4382
4383 static void view_source_cb(GtkAction *action, gpointer data)
4384 {
4385         MainWindow *mainwin = (MainWindow *)data;
4386         summary_view_source(mainwin->summaryview);
4387 }
4388
4389 static void show_all_header_cb(GtkAction *action, gpointer data)
4390 {
4391         MainWindow *mainwin = (MainWindow *)data;
4392         if (mainwin->menu_lock_count) return;
4393         prefs_common.show_all_headers = 
4394                         gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
4395         summary_display_msg_selected(mainwin->summaryview,
4396                                      gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)));
4397 }
4398
4399 static void toggle_fullscreen_cb(GtkAction *action, gpointer data)
4400 {
4401         MainWindow *mainwin = (MainWindow *)data;
4402         if (mainwin->menu_lock_count) return;
4403         if (!gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action))) {
4404                 gtk_window_unfullscreen(GTK_WINDOW(mainwin->window));
4405                 prefs_common.mainwin_fullscreen = FALSE;
4406         }
4407         else {
4408                 prefs_common.mainwin_fullscreen = TRUE;
4409                 gtk_window_fullscreen(GTK_WINDOW(mainwin->window));
4410         }
4411 }
4412
4413 static void toggle_menubar_cb(GtkAction *action, gpointer data)
4414 {
4415         MainWindow *mainwin = (MainWindow *)data;
4416         if (mainwin->menu_lock_count) return;
4417         if (!gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action))) {
4418                 gtk_widget_hide(GTK_WIDGET(mainwin->menubar));
4419                 prefs_common.mainwin_menubar = FALSE;
4420         } else {
4421                 gtk_widget_show(GTK_WIDGET(mainwin->menubar));
4422                 prefs_common.mainwin_menubar = TRUE;
4423         }
4424 }
4425
4426 static void hide_quotes_cb(GtkAction *action, gpointer data)
4427 {
4428         MainWindow *mainwin = (MainWindow *)data;
4429
4430         if (mainwin->menu_lock_count) return;
4431
4432         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action))) {
4433                 const gchar *a_name = gtk_action_get_name(GTK_ACTION(action));
4434                 if (!strcmp(a_name, "View/Quotes/CollapseAll")) prefs_common.hide_quotes = 1;
4435                 else if (!strcmp(a_name, "View/Quotes/Collapse2")) prefs_common.hide_quotes = 2;
4436                 else if (!strcmp(a_name, "View/Quotes/Collapse3")) prefs_common.hide_quotes = 3;
4437         } else
4438                 prefs_common.hide_quotes = 0;
4439
4440         mainwin->menu_lock_count++;
4441         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/CollapseAll", (prefs_common.hide_quotes == 1));
4442         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/Collapse2", (prefs_common.hide_quotes == 2));
4443         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/Collapse3", (prefs_common.hide_quotes == 3));
4444         mainwin->menu_lock_count--;
4445
4446         summary_redisplay_msg(mainwin->summaryview);
4447 }
4448
4449 static void mark_cb(GtkAction *action, gpointer data)
4450 {
4451         MainWindow *mainwin = (MainWindow *)data;
4452         summary_mark(mainwin->summaryview);
4453 }
4454
4455 static void unmark_cb(GtkAction *action, gpointer data)
4456 {
4457         MainWindow *mainwin = (MainWindow *)data;
4458         summary_unmark(mainwin->summaryview);
4459 }
4460
4461 static void mark_as_unread_cb(GtkAction *action, gpointer data)
4462 {
4463         MainWindow *mainwin = (MainWindow *)data;
4464         summary_mark_as_unread(mainwin->summaryview);
4465 }
4466
4467 static void mark_as_read_cb(GtkAction *action, gpointer data)
4468 {
4469         MainWindow *mainwin = (MainWindow *)data;
4470         summary_mark_as_read(mainwin->summaryview);
4471 }
4472
4473 static void mark_all_read_cb(GtkAction *action, gpointer data)
4474 {
4475         MainWindow *mainwin = (MainWindow *)data;
4476         summary_mark_all_read(mainwin->summaryview);
4477 }
4478
4479 static void mark_as_spam_cb(GtkAction *action, gpointer data)
4480 {
4481         MainWindow *mainwin = (MainWindow *)data;
4482         summary_mark_as_spam(mainwin->summaryview, TRUE, NULL);
4483 }
4484
4485 static void mark_as_ham_cb(GtkAction *action, gpointer data)
4486 {
4487         MainWindow *mainwin = (MainWindow *)data;
4488         summary_mark_as_spam(mainwin->summaryview, FALSE, NULL);
4489 }
4490
4491 static void ignore_thread_cb(GtkAction *action, gpointer data)
4492 {
4493         MainWindow *mainwin = (MainWindow *)data;
4494         summary_ignore_thread(mainwin->summaryview);
4495 }
4496
4497 static void unignore_thread_cb(GtkAction *action, gpointer data)
4498 {
4499         MainWindow *mainwin = (MainWindow *)data;
4500         summary_unignore_thread(mainwin->summaryview);
4501 }
4502
4503 static void watch_thread_cb(GtkAction *action, gpointer data)
4504 {
4505         MainWindow *mainwin = (MainWindow *)data;
4506         summary_watch_thread(mainwin->summaryview);
4507 }
4508
4509 static void unwatch_thread_cb(GtkAction *action, gpointer data)
4510 {
4511         MainWindow *mainwin = (MainWindow *)data;
4512         summary_unwatch_thread(mainwin->summaryview);
4513 }
4514
4515 static void lock_msgs_cb(GtkAction *action, gpointer data)
4516 {
4517         MainWindow *mainwin = (MainWindow *)data;
4518         summary_msgs_lock(mainwin->summaryview);
4519 }
4520
4521 static void unlock_msgs_cb(GtkAction *action, gpointer data)
4522 {
4523         MainWindow *mainwin = (MainWindow *)data;
4524         summary_msgs_unlock(mainwin->summaryview);
4525 }
4526
4527
4528 static void reedit_cb(GtkAction *action, gpointer data)
4529 {
4530         MainWindow *mainwin = (MainWindow *)data;
4531         summary_reedit(mainwin->summaryview);
4532 }
4533
4534 static void open_urls_cb(GtkAction *action, gpointer data)
4535 {
4536         MainWindow *mainwin = (MainWindow *)data;
4537         if (!mainwin->summaryview->displayed && mainwin->summaryview->selected) {
4538                 summary_display_msg_selected(mainwin->summaryview, 
4539                                              prefs_common.show_all_headers);
4540         }
4541         messageview_list_urls(mainwin->messageview);
4542 }
4543
4544 static void add_address_cb(GtkAction *action, gpointer data)
4545 {
4546         MainWindow *mainwin = (MainWindow *)data;
4547         summary_add_address(mainwin->summaryview);
4548 }
4549
4550 static void set_charset_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4551 {
4552         MainWindow *mainwin = (MainWindow *)data;
4553         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4554         const gchar *str;
4555
4556         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current))) {
4557                 str = conv_get_charset_str((CharSet)value);
4558                 
4559                 g_free(mainwin->messageview->forced_charset);
4560                 mainwin->messageview->forced_charset = str ? g_strdup(str) : NULL;
4561                 procmime_force_charset(str);
4562                 
4563                 summary_redisplay_msg(mainwin->summaryview);
4564                 
4565                 debug_print("forced charset: %s\n", str ? str : "Auto-Detect");
4566         }
4567 }
4568
4569 static void set_decode_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4570 {
4571         MainWindow *mainwin = (MainWindow *)data;
4572         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4573         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current))) {
4574                 mainwin->messageview->forced_encoding = (EncodingType)value;
4575                 
4576                 summary_redisplay_msg(mainwin->summaryview);
4577                 
4578                 debug_print("forced encoding: %d\n", value);
4579         }
4580 }
4581
4582 static void hide_read_messages (GtkAction *action, gpointer data)
4583 {
4584         MainWindow *mainwin = (MainWindow *)data;
4585         GtkWidget *menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/HideReadMessages");
4586         if (!mainwin->summaryview->folder_item
4587             || g_object_get_data(G_OBJECT(menuitem), "dont_toggle"))
4588                 return;
4589         summary_toggle_show_read_messages(mainwin->summaryview);
4590 }
4591
4592 static void hide_del_messages (GtkAction *action, gpointer data)
4593 {
4594         MainWindow *mainwin = (MainWindow *)data;
4595         GtkWidget *menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/HideDelMessages");
4596         if (!mainwin->summaryview->folder_item
4597             || g_object_get_data(G_OBJECT(menuitem), "dont_toggle"))
4598                 return;
4599         summary_toggle_show_del_messages(mainwin->summaryview);
4600 }
4601
4602 static void hide_read_threads (GtkAction *action, gpointer data)
4603 {
4604         MainWindow *mainwin = (MainWindow *)data;
4605         GtkWidget *menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/HideReadThreads");
4606         if (!mainwin->summaryview->folder_item
4607             || g_object_get_data(G_OBJECT(menuitem), "dont_toggle"))
4608                 return;
4609         summary_toggle_show_read_threads(mainwin->summaryview);
4610 }
4611
4612 static void thread_cb(GtkAction *action, gpointer data)
4613 {
4614         MainWindow *mainwin = (MainWindow *)data;
4615         gboolean threaded = FALSE;
4616         if (mainwin->menu_lock_count) return;
4617         if (!mainwin->summaryview->folder_item) return;
4618
4619         threaded = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
4620
4621         mainwin->summaryview->folder_item->threaded = threaded; 
4622
4623         mainwin->summaryview->threaded = threaded;
4624
4625         summary_show(mainwin->summaryview, 
4626                         mainwin->summaryview->folder_item);
4627 }
4628
4629 static void expand_threads_cb(GtkAction *action, gpointer data)
4630 {
4631         MainWindow *mainwin = (MainWindow *)data;
4632         summary_expand_threads(mainwin->summaryview);
4633 }
4634
4635 static void collapse_threads_cb(GtkAction *action, gpointer data)
4636 {
4637         MainWindow *mainwin = (MainWindow *)data;
4638         summary_collapse_threads(mainwin->summaryview);
4639 }
4640
4641 static void set_summary_display_item_cb(GtkAction *action, gpointer data)
4642 {
4643         prefs_summary_column_open();
4644 }
4645
4646 static void set_folder_display_item_cb(GtkAction *action, gpointer data)
4647 {
4648         prefs_folder_column_open();
4649 }
4650
4651 static void sort_summary_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4652 {
4653         MainWindow *mainwin = (MainWindow *)data;
4654         FolderItem *item = mainwin->summaryview->folder_item;
4655         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4656
4657         if (mainwin->menu_lock_count) return;
4658
4659         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current)) && item) {
4660                 summary_sort(mainwin->summaryview, (FolderSortKey)value,
4661                              item->sort_type);
4662                 item->sort_key = value;
4663         }
4664 }
4665
4666 static void sort_summary_type_cb(GtkAction *gaction, GtkRadioAction *current, gpointer data)
4667 {
4668         MainWindow *mainwin = (MainWindow *)data;
4669         FolderItem *item = mainwin->summaryview->folder_item;
4670         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4671
4672         if (mainwin->menu_lock_count) return;
4673
4674         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current)) && item)
4675                 summary_sort(mainwin->summaryview,
4676                              item->sort_key, (FolderSortType)value);
4677 }
4678
4679 static void attract_by_subject_cb(GtkAction *action, gpointer data)
4680 {
4681         MainWindow *mainwin = (MainWindow *)data;
4682         summary_attract_by_subject(mainwin->summaryview);
4683 }
4684
4685 static void delete_duplicated_cb(GtkAction *action, gpointer data)
4686 {
4687         MainWindow *mainwin = (MainWindow *)data;
4688         FolderItem *item;
4689
4690         item = folderview_get_selected_item(mainwin->folderview);
4691         if (item) {
4692                 main_window_cursor_wait(mainwin);
4693                 STATUSBAR_PUSH(mainwin, _("Deleting duplicated messages..."));
4694
4695                 folderutils_delete_duplicates(item, prefs_common.immediate_exec ?
4696                                               DELETE_DUPLICATES_REMOVE : DELETE_DUPLICATES_SETFLAG);
4697
4698                 STATUSBAR_POP(mainwin);
4699                 main_window_cursor_normal(mainwin);
4700         }
4701 }
4702
4703 struct DelDupsData
4704 {
4705         guint   dups;
4706         guint   folders;
4707 };
4708
4709 static void deldup_all(FolderItem *item, gpointer _data)
4710 {
4711         struct DelDupsData *data = _data;
4712         gint result;
4713         
4714         result = folderutils_delete_duplicates(item, DELETE_DUPLICATES_REMOVE);
4715         if (result >= 0) {
4716                 data->dups += result;
4717                 data->folders += 1;
4718         }
4719 }
4720
4721 static void delete_duplicated_all_cb(GtkAction *action, gpointer mw)
4722 {
4723         MainWindow *mainwin = (MainWindow *)mw;
4724         struct DelDupsData data = {0, 0};
4725
4726         main_window_cursor_wait(mainwin);
4727         folder_func_to_all_folders(deldup_all, &data);
4728         main_window_cursor_normal(mainwin);
4729         
4730         alertpanel_notice(ngettext("Deleted %d duplicate message in %d folders.\n",
4731                                    "Deleted %d duplicate messages in %d folders.\n",
4732                                    data.dups),
4733                           data.dups, data.folders);
4734 }
4735
4736 static void filter_cb(GtkAction *action, gpointer data)
4737 {
4738         MainWindow *mainwin = (MainWindow *)data;
4739         summary_filter(mainwin->summaryview, FALSE);
4740 }
4741
4742 static void filter_list_cb(GtkAction *action, gpointer data)
4743 {
4744         MainWindow *mainwin = (MainWindow *)data;
4745         summary_filter(mainwin->summaryview, TRUE);
4746 }
4747
4748 static void process_cb(GtkAction *action, gpointer data)
4749 {
4750         MainWindow *mainwin = (MainWindow *)data;
4751         FolderItem *item = mainwin->summaryview->folder_item;   
4752         cm_return_if_fail(item != NULL);
4753
4754         item->processing_pending = TRUE;
4755         folder_item_apply_processing(item);     
4756         item->processing_pending = FALSE;
4757 }
4758
4759 static void execute_summary_cb(GtkAction *action, gpointer data)
4760 {
4761         MainWindow *mainwin = (MainWindow *)data;
4762         summary_execute(mainwin->summaryview);
4763 }
4764
4765 static void expunge_summary_cb(GtkAction *action, gpointer data)
4766 {
4767         MainWindow *mainwin = (MainWindow *)data;
4768         summary_expunge(mainwin->summaryview);
4769 }
4770
4771 static void update_summary_cb(GtkAction *action, gpointer data)
4772 {
4773         MainWindow *mainwin = (MainWindow *)data;
4774         FolderItem *fitem;
4775         FolderView *folderview = mainwin->folderview;
4776
4777         if (!mainwin->summaryview->folder_item) return;
4778         if ((fitem = folderview_get_opened_item(folderview)) == NULL) return;
4779
4780         folder_update_op_count();
4781         folder_item_scan(fitem);
4782         summary_show(mainwin->summaryview, fitem);
4783 }
4784
4785 static void prev_cb(GtkAction *action, gpointer data)
4786 {
4787         MainWindow *mainwin = (MainWindow *)data;
4788         summary_step(mainwin->summaryview, GTK_SCROLL_STEP_BACKWARD);
4789 }
4790
4791 static void next_cb(GtkAction *action, gpointer data)
4792 {
4793         MainWindow *mainwin = (MainWindow *)data;
4794         summary_step(mainwin->summaryview, GTK_SCROLL_STEP_FORWARD);
4795 }
4796
4797 static void prev_unread_cb(GtkAction *action, gpointer data)
4798 {
4799         MainWindow *mainwin = (MainWindow *)data;
4800         summary_select_prev_unread(mainwin->summaryview);
4801 }
4802
4803 static void next_unread_cb(GtkAction *action, gpointer data)
4804 {
4805         MainWindow *mainwin = (MainWindow *)data;
4806         summary_select_next_unread(mainwin->summaryview);
4807 }
4808
4809 static void prev_new_cb(GtkAction *action, gpointer data)
4810 {
4811         MainWindow *mainwin = (MainWindow *)data;
4812         summary_select_prev_new(mainwin->summaryview);
4813 }
4814
4815 static void next_new_cb(GtkAction *action, gpointer data)
4816 {
4817         MainWindow *mainwin = (MainWindow *)data;
4818         summary_select_next_new(mainwin->summaryview);
4819 }
4820
4821 static void prev_marked_cb(GtkAction *action, gpointer data)
4822 {
4823         MainWindow *mainwin = (MainWindow *)data;
4824         summary_select_prev_marked(mainwin->summaryview);
4825 }
4826
4827 static void next_marked_cb(GtkAction *action, gpointer data)
4828 {
4829         MainWindow *mainwin = (MainWindow *)data;
4830         summary_select_next_marked(mainwin->summaryview);
4831 }
4832
4833 static void prev_labeled_cb(GtkAction *action, gpointer data)
4834 {
4835         MainWindow *mainwin = (MainWindow *)data;
4836         summary_select_prev_labeled(mainwin->summaryview);
4837 }
4838
4839 static void next_labeled_cb(GtkAction *action, gpointer data)
4840 {
4841         MainWindow *mainwin = (MainWindow *)data;
4842         summary_select_next_labeled(mainwin->summaryview);
4843 }
4844
4845 static void prev_history_cb(GtkAction *action, gpointer data)
4846 {
4847         MainWindow *mainwin = (MainWindow *)data;
4848         MsgInfo *info = messageview_nav_get_prev(mainwin->messageview);
4849         if (info) {
4850                 if (info->folder != mainwin->summaryview->folder_item)
4851                         folderview_select(mainwin->folderview, info->folder);
4852                 summary_display_by_msgnum(mainwin->summaryview, info->msgnum);
4853                 summary_display_msg_selected(mainwin->summaryview, FALSE);
4854                 procmsg_msginfo_free(&info);
4855                 main_window_set_menu_sensitive(mainwindow_get_mainwindow());
4856                 toolbar_main_set_sensitive(mainwindow_get_mainwindow());
4857         }
4858 }
4859
4860 static void next_history_cb(GtkAction *action, gpointer data)
4861 {
4862         MainWindow *mainwin = (MainWindow *)data;
4863         MsgInfo *info = messageview_nav_get_next(mainwin->messageview);
4864         if (info) {
4865                 if (info->folder != mainwin->summaryview->folder_item)
4866                         folderview_select(mainwin->folderview, info->folder);
4867                 summary_display_by_msgnum(mainwin->summaryview, info->msgnum);
4868                 procmsg_msginfo_free(&info);
4869                 main_window_set_menu_sensitive(mainwindow_get_mainwindow());
4870                 toolbar_main_set_sensitive(mainwindow_get_mainwindow());
4871         }
4872 }
4873
4874 static void parent_cb(GtkAction *action, gpointer data)
4875 {
4876         MainWindow *mainwin = (MainWindow *)data;
4877         summary_select_parent(mainwin->summaryview);
4878 }
4879
4880 static void goto_folder_cb(GtkAction *action, gpointer data)
4881 {
4882         MainWindow *mainwin = (MainWindow *)data;
4883         FolderItem *to_folder;
4884
4885         to_folder = foldersel_folder_sel(NULL, FOLDER_SEL_ALL, NULL, FALSE);
4886
4887         if (to_folder)
4888                 folderview_select(mainwin->folderview, to_folder);
4889 }
4890
4891 static void goto_unread_folder_cb(GtkAction *action, gpointer data)
4892 {
4893         MainWindow *mainwin = (MainWindow *)data;
4894         folderview_select_next_with_flag(mainwin->folderview, MSG_UNREAD, FALSE);
4895 }
4896
4897 static void scroll_prev_line_cb(GtkAction *action, gpointer data)
4898 {
4899         MainWindow *mainwin = (MainWindow *)data;
4900         mimeview_scroll_one_line(mainwin->messageview->mimeview,TRUE);
4901 }
4902
4903 static void scroll_next_line_cb(GtkAction *action, gpointer data)
4904 {
4905         MainWindow *mainwin = (MainWindow *)data;
4906         mimeview_scroll_one_line(mainwin->messageview->mimeview,FALSE);
4907 }
4908
4909 static void scroll_prev_page_cb(GtkAction *action, gpointer data)
4910 {
4911         MainWindow *mainwin = (MainWindow *)data;
4912         mimeview_scroll_page(mainwin->messageview->mimeview,TRUE);
4913 }
4914
4915 static void scroll_next_page_cb(GtkAction *action, gpointer data)
4916 {
4917         MainWindow *mainwin = (MainWindow *)data;
4918         mimeview_scroll_page(mainwin->messageview->mimeview,FALSE);
4919 }
4920
4921 static void copy_cb(GtkAction *action, gpointer data)
4922 {
4923         MainWindow *mainwin = (MainWindow *)data;
4924         messageview_copy_clipboard(mainwin->messageview);
4925 }
4926
4927 static void allsel_cb(GtkAction *action, gpointer data)
4928 {
4929         MainWindow *mainwin = (MainWindow *)data;
4930         MessageView *msgview = mainwin->messageview;
4931
4932         if (messageview_is_visible(msgview) &&
4933                  (gtk_widget_has_focus(msgview->mimeview->textview->text)))
4934                 messageview_select_all(mainwin->messageview);
4935         else
4936                 summary_select_all(mainwin->summaryview);
4937 }
4938
4939 static void select_thread_cb(GtkAction *action, gpointer data)
4940 {
4941         MainWindow *mainwin = (MainWindow *)data;
4942         summary_select_thread(mainwin->summaryview, FALSE, FALSE);
4943 }
4944
4945 static void trash_thread_cb(GtkAction *action, gpointer data)
4946 {
4947         MainWindow *mainwin = (MainWindow *)data;
4948         summary_select_thread(mainwin->summaryview, FALSE, TRUE);
4949 }
4950
4951 static void delete_thread_cb(GtkAction *action, gpointer data)
4952 {
4953         MainWindow *mainwin = (MainWindow *)data;
4954         summary_select_thread(mainwin->summaryview, TRUE, FALSE);
4955 }
4956
4957 static void create_filter_cb(GtkAction *gaction, gpointer data)
4958 {
4959         MainWindow *mainwin = (MainWindow *)data;
4960         const gchar *a_name = gtk_action_get_name(gaction);
4961         gint action = -1;
4962
4963         DO_ACTION("Tools/CreateFilterRule/Automatically", FILTER_BY_AUTO);
4964         DO_ACTION("Tools/CreateFilterRule/ByFrom", FILTER_BY_FROM);
4965         DO_ACTION("Tools/CreateFilterRule/ByTo", FILTER_BY_TO);
4966         DO_ACTION("Tools/CreateFilterRule/BySubject", FILTER_BY_SUBJECT);
4967         summary_filter_open(mainwin->summaryview, (PrefsFilterType)action, 0);
4968 }
4969
4970 static void create_processing_cb(GtkAction *gaction, gpointer data)
4971 {
4972         MainWindow *mainwin = (MainWindow *)data;
4973         const gchar *a_name = gtk_action_get_name(gaction);
4974         gint action = -1;
4975
4976         DO_ACTION("Tools/CreateProcessingRule/Automatically", FILTER_BY_AUTO);
4977         DO_ACTION("Tools/CreateProcessingRule/ByFrom", FILTER_BY_FROM);
4978         DO_ACTION("Tools/CreateProcessingRule/ByTo", FILTER_BY_TO);
4979         DO_ACTION("Tools/CreateProcessingRule/BySubject", FILTER_BY_SUBJECT);
4980         summary_filter_open(mainwin->summaryview, (PrefsFilterType)action, 1);
4981 }
4982
4983 static void prefs_pre_processing_open_cb(GtkAction *action, gpointer data)
4984 {
4985         prefs_filtering_open(&pre_global_processing,
4986                              _("Processing rules to apply before folder rules"),
4987                              MANUAL_ANCHOR_PROCESSING,
4988                              NULL, NULL, FALSE);
4989 }
4990
4991 static void prefs_post_processing_open_cb(GtkAction *action, gpointer data)
4992 {
4993         prefs_filtering_open(&post_global_processing,
4994                              _("Processing rules to apply after folder rules"),
4995                              MANUAL_ANCHOR_PROCESSING,
4996                              NULL, NULL, FALSE);
4997 }
4998
4999 static void prefs_filtering_open_cb(GtkAction *action, gpointer data)
5000 {
5001         prefs_filtering_open(&filtering_rules,
5002                              _("Filtering configuration"),
5003                              MANUAL_ANCHOR_FILTERING,
5004                              NULL, NULL, TRUE);
5005 }
5006
5007 static void prefs_template_open_cb(GtkAction *action, gpointer data)
5008 {
5009         prefs_template_open();
5010 }
5011
5012 static void prefs_actions_open_cb(GtkAction *action, gpointer data)
5013 {
5014         MainWindow *mainwin = (MainWindow *)data;
5015         prefs_actions_open(mainwin);
5016 }
5017
5018 static void prefs_tags_open_cb(GtkAction *action, gpointer data)
5019 {
5020         MainWindow *mainwin = (MainWindow *)data;
5021         GSList * list = summary_get_selected_msg_list(mainwin->summaryview);
5022         tag_apply_open(list);
5023 }
5024 #ifdef USE_GNUTLS
5025 static void ssl_manager_open_cb(GtkAction *action, gpointer data)
5026 {
5027         MainWindow *mainwin = (MainWindow *)data;
5028         ssl_manager_open(mainwin);
5029 }
5030 #endif
5031 static void prefs_account_open_cb(GtkAction *action, gpointer data)
5032 {
5033         MainWindow *mainwin = (MainWindow *)data;
5034         if (!cur_account) {
5035                 new_account_cb(NULL, mainwin);
5036         } else {
5037                 account_open(cur_account);
5038         }
5039 }
5040
5041 static void new_account_cb(GtkAction *action, gpointer data)
5042 {
5043         account_edit_open(NULL, NULL);
5044         if (!compose_get_compose_list()) account_add();
5045 }
5046
5047 static void account_selector_menu_cb(GtkMenuItem *menuitem, gpointer data)
5048 {
5049         FolderItem *item = NULL;
5050         cur_account = (PrefsAccount *)data;
5051         
5052         if (!mainwindow_get_mainwindow())
5053                 return;
5054         main_window_show_cur_account(mainwindow_get_mainwindow());
5055         toolbar_update(TOOLBAR_MAIN, mainwindow_get_mainwindow());
5056         main_window_set_menu_sensitive(mainwindow_get_mainwindow());
5057         toolbar_main_set_sensitive(mainwindow_get_mainwindow());
5058         item = folderview_get_selected_item(
5059                         mainwindow_get_mainwindow()->folderview);
5060         if (item) {
5061                 toolbar_set_compose_button
5062                         (mainwindow_get_mainwindow()->toolbar,
5063                          FOLDER_TYPE(item->folder) == F_NEWS ? 
5064                          COMPOSEBUTTON_NEWS : COMPOSEBUTTON_MAIL);
5065         }
5066 }
5067
5068 static void account_receive_menu_cb(GtkMenuItem *menuitem, gpointer data)
5069 {
5070         MainWindow *mainwin = (MainWindow *)mainwin_list->data;
5071         PrefsAccount *account = (PrefsAccount *)data;
5072
5073         inc_account_mail(mainwin, account);
5074 }
5075 #ifndef GENERIC_UMPC
5076 static void account_compose_menu_cb(GtkMenuItem *menuitem, gpointer data)
5077 {
5078         PrefsAccount *account = (PrefsAccount *)data;
5079
5080         compose_new_with_folderitem(account, NULL, NULL);
5081 }
5082 #endif
5083 static void prefs_open_cb(GtkAction *action, gpointer data)
5084 {
5085         prefs_gtk_open();
5086 }
5087
5088 static void plugins_open_cb(GtkAction *action, gpointer data)
5089 {
5090         pluginwindow_create();
5091 }
5092
5093 static void manual_open_cb(GtkAction *action, gpointer data)
5094 {
5095         manual_open(MANUAL_MANUAL_CLAWS, NULL);
5096 }
5097
5098 static void manual_faq_open_cb(GtkAction *action, gpointer data)
5099 {
5100         manual_open(MANUAL_FAQ_CLAWS, NULL);
5101 }
5102
5103 static void legend_open_cb(GtkAction *action, gpointer data)
5104 {
5105         legend_show();
5106 }
5107
5108 #ifdef G_OS_WIN32
5109 static void set_default_client_cb(GtkAction *action, gpointer data)
5110 {
5111         char exename[MAX_PATH];
5112         gchar *binary_icon = NULL;
5113         gchar *binary_compose = NULL;
5114         gchar *binary_run = NULL;
5115         int r = 0;
5116         if ( !GetModuleFileNameA (0, exename, sizeof (exename)) ) {
5117                 alertpanel_error(_("Can not register as default client: impossible to get executable path."));
5118                 return;
5119         }
5120         binary_icon = g_strconcat(exename, ",0", NULL);
5121         binary_compose = g_strconcat(exename, " --compose %1", NULL);
5122         binary_run = g_strconcat(exename, NULL);
5123
5124         /* Try to set the Mail Start menu item to Claws. It may fail if we're not root; we don't care */
5125         r = write_w32_registry_string("HKLM", "Software\\Clients\\Mail", 
5126                         "", "Claws Mail");
5127         
5128         r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail", 
5129                                 "", "Claws Mail");
5130         if (!r)
5131                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail", 
5132                                 "DLLPath", "");
5133         if (!r)
5134                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto", 
5135                                 "", "URL:MailTo-Protocol");
5136         if (!r)
5137                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto", 
5138                                 "URL Protocol", "");
5139         if (!r)
5140                 r = write_w32_registry_dword ("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto", 
5141                                 "EditFlags", 2);
5142         if (!r)
5143                 r = write_w32_registry_string ("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto", 
5144                                 "FriendlyTypeName", "Claws-Mail URL");
5145         if (!r)
5146                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto\\DefaultIcon", 
5147                                 "", binary_icon);
5148         if (!r)
5149                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto\\shell\\open\\command", 
5150                                 "", binary_compose);
5151         if (!r)
5152                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\shell\\open\\command", 
5153                                 "", binary_run);
5154         
5155         if (!r)
5156                 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto", 
5157                                 "", "URL:MailTo-Protocol");
5158         if (!r)
5159                 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto", 
5160                                 "URL Protocol", "");
5161         if (!r)
5162                 r = write_w32_registry_dword ("HKCU", "Software\\Classes\\mailto", 
5163                                 "EditFlags", 2);
5164         if (!r)
5165                 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto", 
5166                                 "FriendlyTypeName", "Claws-Mail URL");
5167         if (!r)
5168                 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto\\DefaultIcon", 
5169                                 "", binary_icon);
5170         if (!r)
5171                 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto\\shell\\open\\command", 
5172                                 "", binary_compose);
5173         
5174         if (!r) {
5175                 SendMessage(HWND_BROADCAST, WM_SETTINGCHANGE, 0, (LPARAM)"Software\\Clients\\Mail");
5176                 alertpanel_notice(_("Claws Mail has been registered as default client."));
5177         } else {
5178                 alertpanel_error(_("Can not register as default client: impossible to write to the registry."));
5179         }
5180         g_free(binary_icon);
5181         g_free(binary_compose);
5182         g_free(binary_run);
5183 }
5184 #endif
5185
5186 static void scan_tree_func(Folder *folder, FolderItem *item, gpointer data)
5187 {
5188         MainWindow *mainwin = (MainWindow *)data;
5189         gchar *str;
5190
5191         if (item->path)
5192                 str = g_strdup_printf(_("Scanning folder %s%c%s..."),
5193                                       LOCAL_FOLDER(folder)->rootpath,
5194                                       G_DIR_SEPARATOR,
5195                                       item->path);
5196         else
5197                 str = g_strdup_printf(_("Scanning folder %s..."),
5198                                       LOCAL_FOLDER(folder)->rootpath);
5199
5200         STATUSBAR_PUSH(mainwin, str);
5201         STATUSBAR_POP(mainwin);
5202         g_free(str);
5203 }
5204
5205 static gboolean mainwindow_focus_in_event(GtkWidget *widget, GdkEventFocus *focus,
5206                                           gpointer data)
5207 {
5208         SummaryView *summary;
5209
5210         cm_return_val_if_fail(data, FALSE);
5211         if (!g_list_find(mainwin_list, data))
5212                 return TRUE;
5213         summary = ((MainWindow *)data)->summaryview;
5214         cm_return_val_if_fail(summary, FALSE);
5215
5216         if (GTK_CMCLIST(summary->ctree)->selection && 
5217             g_list_length(GTK_CMCLIST(summary->ctree)->selection) > 1)
5218                 return FALSE;
5219
5220         return FALSE;
5221 }
5222
5223 static gboolean mainwindow_visibility_event_cb(GtkWidget *widget, GdkEventVisibility *event,
5224                                           gpointer data)
5225 {
5226         is_obscured = (event->state == GDK_VISIBILITY_FULLY_OBSCURED);
5227         return FALSE;
5228 }
5229
5230 static gboolean mainwindow_state_event_cb(GtkWidget *widget, GdkEventWindowState *state,
5231                                           gpointer data)
5232 {
5233         if (!claws_is_starting()
5234                 && state->changed_mask&GDK_WINDOW_STATE_ICONIFIED
5235                 && state->new_window_state&GDK_WINDOW_STATE_ICONIFIED) {
5236
5237                 if (iconified_count > 0)
5238                         hooks_invoke(MAIN_WINDOW_GOT_ICONIFIED, NULL);
5239                 iconified_count++;
5240         } else if (!claws_is_starting()) {
5241                 prefs_common.mainwin_maximised = 
5242                         ((state->new_window_state&GDK_WINDOW_STATE_MAXIMIZED) != 0);
5243         }
5244         if (state->new_window_state == 0)
5245                 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(widget), FALSE);
5246         return FALSE;
5247 }
5248
5249 gboolean mainwindow_is_obscured(void)
5250 {
5251         return is_obscured;
5252 }
5253
5254 /*
5255  * Harvest addresses for selected folder.
5256  */
5257 static void addr_harvest_cb( GtkAction *action, gpointer data)
5258 {
5259         MainWindow *mainwin = (MainWindow *)data;
5260
5261         addressbook_harvest( mainwin->summaryview->folder_item, FALSE, NULL );
5262 }
5263
5264 /*
5265  * Harvest addresses for selected messages in summary view.
5266  */
5267 static void addr_harvest_msg_cb( GtkAction *action, gpointer data)
5268 {
5269         MainWindow *mainwin = (MainWindow *)data;
5270         summary_harvest_address( mainwin->summaryview );
5271 }
5272
5273 /*!
5274  *\brief        get a MainWindow
5275  *
5276  *\return       MainWindow * The first mainwindow in the mainwin_list
5277  */
5278 MainWindow *mainwindow_get_mainwindow(void)
5279 {
5280         if (mainwin_list && mainwin_list->data)
5281                 return (MainWindow *)(mainwin_list->data);
5282         else
5283                 return NULL;
5284 }
5285
5286 static gboolean mainwindow_progressindicator_hook(gpointer source, gpointer userdata)
5287 {
5288         ProgressData *data = (ProgressData *) source;
5289         MainWindow *mainwin = (MainWindow *) userdata;
5290
5291         switch (data->cmd) {
5292         case PROGRESS_COMMAND_START:
5293         case PROGRESS_COMMAND_STOP:
5294                 gtk_progress_bar_set_fraction
5295                         (GTK_PROGRESS_BAR(mainwin->progressbar), 0.0);
5296                 break;
5297         case PROGRESS_COMMAND_SET_PERCENTAGE:
5298                 gtk_progress_bar_set_fraction
5299                         (GTK_PROGRESS_BAR(mainwin->progressbar), data->value);
5300                 break;          
5301         }
5302         while (gtk_events_pending()) gtk_main_iteration ();
5303
5304         return FALSE;
5305 }
5306
5307 static void sync_cb(GtkAction *action, gpointer data)
5308 {
5309         MainWindow *mainwin = (MainWindow *)data;
5310         mainwindow_check_synchronise(mainwin, FALSE);
5311 }
5312
5313 static void forget_session_passwords_cb(GtkAction *action, gpointer data)
5314 {
5315         MainWindow *mainwin = (MainWindow *)data;
5316         GList *list = NULL;
5317         gint fgtn = 0;
5318         gint accs = 0;
5319
5320         main_window_lock(mainwin);
5321         for (list = account_get_list(); list != NULL; list = list->next) {
5322                 PrefsAccount *account = list->data;
5323                 if (account->session_passwd) {
5324                         g_free(account->session_passwd);
5325                         account->session_passwd = NULL;
5326                         ++fgtn;
5327                 }
5328                 if (account->session_smtp_passwd) {
5329                         g_free(account->session_smtp_passwd);
5330                         account->session_smtp_passwd = NULL;
5331                         ++fgtn;
5332                 }
5333                 ++accs;
5334         }
5335         main_window_unlock(mainwin);
5336         alertpanel_notice(ngettext("Forgotten %d password in %d accounts.\n",
5337                                    "Forgotten %d passwords in %d accounts.\n",
5338                                    fgtn), fgtn, accs);  
5339 }
5340
5341 #ifndef PASSWORD_CRYPTO_OLD
5342 static void forget_master_passphrase_cb(GtkAction *action, gpointer data)
5343 {
5344         MainWindow *mainwin = (MainWindow *)data;
5345
5346         main_window_lock(mainwin);
5347         master_passphrase_forget();
5348         main_window_unlock(mainwin);
5349 }
5350 #endif
5351
5352 void mainwindow_learn (MainWindow *mainwin, gboolean is_spam)
5353 {
5354         summary_mark_as_spam(mainwin->summaryview, is_spam, NULL);
5355 }
5356
5357 void mainwindow_jump_to(const gchar *target, gboolean popup)
5358 {
5359         gchar *tmp = NULL;
5360         gchar *p = NULL;
5361         FolderItem *item = NULL;
5362         gchar *msg = NULL;
5363         MainWindow *mainwin = mainwindow_get_mainwindow();
5364         gchar *from_uri = NULL;
5365         if (!target)
5366                 return;
5367                 
5368         if (!mainwin) {
5369                 g_print("not initialized\n");
5370                 return;
5371         }
5372
5373         if ((from_uri = g_filename_from_uri(target, NULL, NULL)) != NULL)
5374                 tmp = from_uri;
5375         else
5376                 tmp = g_strdup(target);
5377         
5378         if ((p = strstr(tmp, "\r")) != NULL)
5379                 *p = '\0';
5380         if ((p = strstr(tmp, "\n")) != NULL)
5381                 *p = '\0';
5382
5383         if ((item = folder_find_item_from_identifier(tmp))) {
5384                 g_print("selecting folder '%s'\n", tmp);
5385                 folderview_select(mainwin->folderview, item);
5386                 if (popup)
5387                         main_window_popup(mainwin);
5388                 g_free(tmp);
5389                 return;
5390         }
5391         
5392         msg = strrchr(tmp, '/');
5393         if (msg) {
5394                 *msg++ = '\0';
5395                 if ((item = folder_find_item_from_identifier(tmp))) {
5396                         g_print("selecting folder '%s'\n", tmp);
5397                         folderview_select(mainwin->folderview, item);
5398                 } else if ((item = folder_find_item_from_real_path(tmp))) {
5399                         g_print("selecting folder '%s'\n", tmp);
5400                         folderview_select(mainwin->folderview, item);
5401                 } else {
5402                         g_print("'%s' not found\n", tmp);
5403                 }
5404                 if (item && msg && atoi(msg)) {
5405                         g_print("selecting message %d\n", atoi(msg));
5406                         summary_select_by_msgnum(mainwin->summaryview, atoi(msg));
5407                         summary_display_msg_selected(mainwin->summaryview, FALSE);
5408                         if (popup)
5409                                 main_window_popup(mainwin);
5410                         g_free(tmp);
5411                         return;
5412                 } else if (item && msg[0] == '<' && msg[strlen(msg)-1] == '>') {
5413                         MsgInfo *msginfo = NULL;
5414                         msg++;
5415                         msg[strlen(msg)-1] = '\0';
5416                         msginfo = folder_item_get_msginfo_by_msgid(item, msg);
5417                         if (msginfo) {
5418                                 g_print("selecting message %s\n", msg);
5419                                 summary_select_by_msgnum(mainwin->summaryview, msginfo->msgnum);
5420                                 summary_display_msg_selected(mainwin->summaryview, FALSE);
5421                                 if (popup)
5422                                         main_window_popup(mainwin);
5423                                 g_free(tmp);
5424                                 procmsg_msginfo_free(&msginfo);
5425                                 return;
5426                         } else {
5427                                 g_print("'%s' not found\n", msg);
5428                         }
5429                 } else {
5430                         g_print("'%s' not found\n", msg);
5431                 }
5432         } else {
5433                 g_print("'%s' not found\n", tmp);
5434         }
5435         
5436         g_free(tmp);
5437 }
5438
5439 void mainwindow_exit_folder(MainWindow *mainwin) {
5440         if (prefs_common.layout_mode == SMALL_LAYOUT) {
5441                 folderview_close_opened(mainwin->folderview, FALSE);
5442                 mainwin_paned_show_first(GTK_PANED(mainwin->hpaned));
5443                 folderview_grab_focus(mainwin->folderview);
5444         }
5445         mainwin->in_folder = FALSE;
5446         main_window_set_menu_sensitive(mainwin);
5447 }
5448
5449 void mainwindow_enter_folder(MainWindow *mainwin) {
5450         if (prefs_common.layout_mode == SMALL_LAYOUT) {
5451                 mainwin_paned_show_last(GTK_PANED(mainwin->hpaned));
5452         }
5453         mainwin->in_folder = TRUE;
5454         main_window_set_menu_sensitive(mainwin);
5455 }
5456
5457 static void save_part_as_cb(GtkAction *action, gpointer data)
5458 {
5459         MainWindow *mainwin = (MainWindow *)data;
5460
5461         if (mainwin->messageview 
5462         &&  mainwin->messageview->mimeview)
5463                 mimeview_save_as(mainwin->messageview->mimeview);
5464 }
5465
5466 static void view_part_as_text_cb(GtkAction *action, gpointer data)
5467 {
5468         MainWindow *mainwin = (MainWindow *)data;
5469
5470         if (mainwin->messageview 
5471         &&  mainwin->messageview->mimeview)
5472                 mimeview_display_as_text(mainwin->messageview->mimeview);
5473 }
5474
5475 static void open_part_cb(GtkAction *action, gpointer data)
5476 {
5477         MainWindow *mainwin = (MainWindow *)data;
5478
5479         if (mainwin->messageview 
5480         &&  mainwin->messageview->mimeview)
5481                 mimeview_launch(mainwin->messageview->mimeview, NULL);
5482 }
5483 #ifndef G_OS_WIN32
5484 static void open_part_with_cb(GtkAction *action, gpointer data)
5485 {
5486         MainWindow *mainwin = (MainWindow *)data;
5487
5488         if (mainwin->messageview 
5489         &&  mainwin->messageview->mimeview)
5490                 mimeview_open_with(mainwin->messageview->mimeview);
5491 }
5492 #endif
5493 static void check_signature_cb(GtkAction *action, gpointer data)
5494 {
5495         MainWindow *mainwin = (MainWindow *)data;
5496
5497         if (mainwin->messageview 
5498         &&  mainwin->messageview->mimeview)
5499                 mimeview_check_signature(mainwin->messageview->mimeview);
5500 }
5501
5502 static void goto_next_part_cb(GtkAction *action, gpointer data)
5503 {
5504         MainWindow *mainwin = (MainWindow *)data;
5505
5506         if (mainwin->messageview 
5507         &&  mainwin->messageview->mimeview)
5508                 mimeview_select_next_part(mainwin->messageview->mimeview);
5509 }
5510
5511 static void goto_prev_part_cb(GtkAction *action, gpointer data)
5512 {
5513         MainWindow *mainwin = (MainWindow *)data;
5514
5515         if (mainwin->messageview 
5516         &&  mainwin->messageview->mimeview)
5517                 mimeview_select_prev_part(mainwin->messageview->mimeview);
5518 }