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