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