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