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