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