Don't go up in subject if we're selecting
[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         g_list_free(closures);
1149 }
1150
1151 static void mainwindow_colorlabel_menu_create(MainWindow *mainwin, gboolean refresh)
1152 {
1153         GtkWidget *label_menuitem;
1154         GtkWidget *menu;
1155         GtkWidget *item;
1156         gint i;
1157         gchar *accel_path = NULL;
1158
1159         label_menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/ColorLabel");
1160         g_signal_connect(G_OBJECT(label_menuitem), "activate",
1161                          G_CALLBACK(mainwindow_colorlabel_menu_item_activate_item_cb),
1162                            mainwin);
1163         gtk_widget_show(label_menuitem);
1164
1165         menu = gtk_menu_new();
1166         gtk_menu_set_accel_group (GTK_MENU (menu), 
1167                 gtk_ui_manager_get_accel_group(mainwin->ui_manager));
1168
1169         /* create sub items. for the menu item activation callback we pass the
1170          * index of label_colors[] as data parameter. for the None color we
1171          * pass an invalid (high) value. also we attach a data pointer so we
1172          * can always get back the Mainwindow pointer. */
1173
1174         item = gtk_check_menu_item_new_with_label(_("None"));
1175         gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1176         g_signal_connect(G_OBJECT(item), "activate",
1177                          G_CALLBACK(mainwindow_colorlabel_menu_item_activate_cb),
1178                            GUINT_TO_POINTER(0));
1179         g_object_set_data(G_OBJECT(item), "mainwin", mainwin);
1180         gtk_widget_show(item);
1181
1182         accel_path = g_strdup_printf("<ClawsColorLabels>/None");
1183         gtk_menu_item_set_accel_path(GTK_MENU_ITEM(item), accel_path);
1184         g_free(accel_path);
1185         gtk_accel_map_add_entry("<ClawsColorLabels>/None", GDK_KEY_0, GDK_CONTROL_MASK);
1186         item = gtk_menu_item_new();
1187         gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1188         gtk_widget_show(item);
1189
1190         /* create pixmap/label menu items */
1191         for (i = 0; i < N_COLOR_LABELS; i++) {
1192                 item = colorlabel_create_check_color_menu_item(
1193                         i, refresh, MAINWIN_COLORMENU);
1194                 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1195                 g_signal_connect(G_OBJECT(item), "activate",
1196                                  G_CALLBACK(mainwindow_colorlabel_menu_item_activate_cb),
1197                                  GUINT_TO_POINTER(i + 1));
1198                 g_object_set_data(G_OBJECT(item), "mainwin",
1199                                   mainwin);
1200                 gtk_widget_show(item);
1201                 accel_path = g_strdup_printf("<ClawsColorLabels>/%d", i+1);
1202                 gtk_menu_item_set_accel_path(GTK_MENU_ITEM(item), accel_path);
1203                 if (i < 9)
1204                         gtk_accel_map_add_entry(accel_path, GDK_KEY_1+i, GDK_CONTROL_MASK);
1205                 g_free(accel_path);
1206                 g_signal_connect (gtk_ui_manager_get_accel_group(mainwin->ui_manager), 
1207                         "accel-changed", G_CALLBACK (mainwin_accel_changed_cb), item);
1208
1209
1210         }
1211         gtk_widget_show(menu);
1212         gtk_menu_item_set_submenu(GTK_MENU_ITEM(label_menuitem), menu);
1213         mainwin->colorlabel_menu = menu;
1214 }
1215
1216 static void mainwindow_tags_menu_item_apply_tags_activate_cb(GtkWidget *widget,
1217                                                      gpointer data)
1218 {
1219         MainWindow *mainwin;
1220
1221         mainwin = g_object_get_data(G_OBJECT(widget), "mainwin");
1222         cm_return_if_fail(mainwin != NULL);
1223
1224         /* "dont_toggle" state set? */
1225         if (g_object_get_data(G_OBJECT(mainwin->tags_menu),
1226                                 "dont_toggle"))
1227                 return;
1228         
1229         tag_apply_open(summary_get_selection(mainwin->summaryview));    
1230 }
1231
1232 static gint mainwin_tag_cmp_list(gconstpointer a, gconstpointer b)
1233 {
1234         gint id_a = GPOINTER_TO_INT(a);
1235         gint id_b = GPOINTER_TO_INT(b);
1236         const gchar *tag_a = tags_get_tag(id_a);
1237         const gchar *tag_b = tags_get_tag(id_b);
1238         
1239                 
1240         if (tag_a == NULL)
1241                 return tag_b == NULL ? 0:1;
1242         
1243         if (tag_b == NULL)
1244                 return tag_a == NULL ? 0:1;
1245  
1246         return g_utf8_collate(tag_a, tag_b);
1247 }
1248
1249 static void mainwindow_tags_menu_create(MainWindow *mainwin, gboolean refresh)
1250 {
1251         GtkWidget *label_menuitem;
1252         GtkWidget *menu;
1253         GtkWidget *item;
1254         GSList *cur = tags_get_list();
1255         GSList *orig = NULL;
1256         gboolean existing_tags = FALSE;
1257         gchar *accel_path;
1258         cur = orig = g_slist_sort(cur, mainwin_tag_cmp_list);
1259
1260         label_menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/Tags");
1261         g_signal_connect(G_OBJECT(label_menuitem), "activate",
1262                          G_CALLBACK(mainwindow_tags_menu_item_activate_item_cb),
1263                            mainwin);
1264
1265         gtk_widget_show(label_menuitem);
1266
1267         menu = gtk_menu_new();
1268         gtk_menu_set_accel_group (GTK_MENU (menu), 
1269                 gtk_ui_manager_get_accel_group(mainwin->ui_manager));
1270
1271         /* create tags menu items */
1272         for (; cur; cur = cur->next) {
1273                 gint id = GPOINTER_TO_INT(cur->data);
1274                 const gchar *tag = tags_get_tag(id);
1275
1276                 item = gtk_check_menu_item_new_with_label(tag);
1277                 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1278                 g_signal_connect(G_OBJECT(item), "activate",
1279                                  G_CALLBACK(mainwindow_tags_menu_item_activate_cb),
1280                                  GINT_TO_POINTER(id));
1281                 g_object_set_data(G_OBJECT(item), "mainwin",
1282                                   mainwin);
1283                 g_object_set_data(G_OBJECT(item), "tag_id",
1284                                   GINT_TO_POINTER(id));
1285                 gtk_widget_show(item);
1286                 accel_path = g_strconcat("<ClawsTags>/",tag, NULL);
1287                 gtk_menu_item_set_accel_path(GTK_MENU_ITEM(item), accel_path);
1288                 g_free(accel_path);
1289                 existing_tags = TRUE;
1290         }
1291         if (existing_tags) {
1292                 /* separator */
1293                 item = gtk_menu_item_new();
1294                 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1295                 gtk_widget_show(item);
1296         }
1297
1298         item = gtk_menu_item_new_with_label(_("Apply tags..."));
1299         gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1300         g_signal_connect(G_OBJECT(item), "activate",
1301                          G_CALLBACK(mainwindow_tags_menu_item_apply_tags_activate_cb),
1302                          NULL);
1303         g_object_set_data(G_OBJECT(item), "mainwin",
1304                           mainwin);
1305         gtk_widget_show(item);
1306         accel_path = g_strdup_printf("<ClawsTags>/ApplyTags");
1307         gtk_menu_item_set_accel_path(GTK_MENU_ITEM(item), accel_path);
1308         g_free(accel_path);
1309         gtk_accel_map_add_entry("<ClawsTags>/ApplyTags", GDK_KEY_T, GDK_CONTROL_MASK|GDK_SHIFT_MASK);
1310         g_slist_free(orig);
1311         gtk_widget_show(menu);
1312         gtk_menu_item_set_submenu(GTK_MENU_ITEM(label_menuitem), menu);
1313         mainwin->tags_menu = menu;
1314 }
1315 #ifndef GENERIC_UMPC
1316 static gboolean warning_icon_pressed(GtkWidget *widget, GdkEventButton *evt,
1317                                     MainWindow *mainwindow)
1318 {
1319         if (evt && evt->button == 1) {
1320                 log_window_show_error(mainwindow->logwin);
1321                 gtk_widget_hide(mainwindow->warning_btn);
1322         }
1323         return FALSE;
1324 }
1325
1326 static gboolean warning_visi_notify(GtkWidget *widget,
1327                                        GdkEventVisibility *event,
1328                                        MainWindow *mainwindow)
1329 {
1330         gdk_window_set_cursor(gtk_widget_get_window(mainwindow->warning_btn), hand_cursor);
1331         return FALSE;
1332 }
1333
1334 static gboolean warning_leave_notify(GtkWidget *widget,
1335                                       GdkEventCrossing *event,
1336                                       MainWindow *mainwindow)
1337 {
1338         gdk_window_set_cursor(gtk_widget_get_window(mainwindow->warning_btn), NULL);
1339         return FALSE;
1340 }
1341
1342 static gboolean warning_enter_notify(GtkWidget *widget,
1343                                       GdkEventCrossing *event,
1344                                       MainWindow *mainwindow)
1345 {
1346         gdk_window_set_cursor(gtk_widget_get_window(mainwindow->warning_btn), hand_cursor);
1347         return FALSE;
1348 }
1349 #endif
1350 void mainwindow_show_error(void)
1351 {
1352         MainWindow *mainwin = mainwindow_get_mainwindow();
1353         gtk_widget_show(mainwin->warning_btn);
1354 }
1355
1356 void mainwindow_clear_error(MainWindow *mainwin)
1357 {
1358         gtk_widget_hide(mainwin->warning_btn);
1359 }
1360
1361 #define BREAK_ON_MODIFIER_KEY() \
1362         if ((event->state & (GDK_MOD1_MASK|GDK_CONTROL_MASK)) != 0) break
1363
1364 static gboolean mainwindow_key_pressed (GtkWidget *widget, GdkEventKey *event,
1365                                     gpointer data)
1366 {
1367         MainWindow *mainwin = (MainWindow*) data;
1368         
1369         if (!mainwin || !event) 
1370                 return FALSE;
1371
1372         if (quicksearch_has_focus(mainwin->summaryview->quicksearch))
1373         {
1374                 lastkey = event->keyval;
1375                 return FALSE;
1376         }
1377
1378         switch (event->keyval) {
1379         case GDK_KEY_Q:             /* Quit */
1380                 BREAK_ON_MODIFIER_KEY();
1381
1382                 if (gtk_window_is_active(GTK_WINDOW(mainwin->window))) {
1383                         app_exit_cb(NULL, mainwin);
1384                 }
1385                 return FALSE;
1386         case GDK_KEY_space:
1387                 BREAK_ON_MODIFIER_KEY();
1388                 if (gtk_window_is_active(GTK_WINDOW(mainwin->window))) {
1389                         if (mainwin->folderview != NULL && mainwin->summaryview != NULL
1390                             && ((!mainwin->summaryview->displayed
1391                                 && !mainwin->summaryview->selected) 
1392                                 || (mainwin->summaryview->folder_item
1393                                     && mainwin->summaryview->folder_item->total_msgs == 0))) {
1394                                 g_signal_stop_emission_by_name(G_OBJECT(widget), 
1395                                                "key_press_event");
1396                                 folderview_select_next_unread(mainwin->folderview, TRUE);
1397                         }
1398                 }
1399                 break;
1400         default:
1401                 break;
1402         }
1403         return FALSE;
1404 }
1405
1406 #undef BREAK_ON_MODIFIER_KEY
1407
1408 MainWindow *main_window_create()
1409 {
1410         MainWindow *mainwin;
1411         GtkWidget *window;
1412         GtkWidget *vbox;
1413         GtkWidget *menubar;
1414         GtkWidget *handlebox;
1415         GtkWidget *vbox_body;
1416         GtkWidget *menuitem;
1417 #ifndef GENERIC_UMPC
1418         GtkWidget *hbox_stat;
1419         GtkWidget *statusbar;
1420         GtkWidget *progressbar;
1421         GtkWidget *statuslabel;
1422         GtkWidget *ac_button;
1423         GtkWidget *ac_label;
1424         GtkWidget *online_pixmap;
1425         GtkWidget *offline_pixmap;
1426         GtkWidget *warning_icon;
1427         GtkWidget *warning_btn;
1428 #endif
1429         GtkWidget *online_switch;
1430         GtkWidget *offline_switch;
1431         FolderView *folderview;
1432         SummaryView *summaryview;
1433         MessageView *messageview;
1434 #if !GTK_CHECK_VERSION(3, 0, 0)
1435         GdkColormap *colormap;
1436         gboolean success[4];
1437 #endif
1438         GdkColor color[4];
1439         GtkWidget *ac_menu;
1440         gint i;
1441
1442         static GdkGeometry geometry;
1443
1444         debug_print("Creating main window...\n");
1445         mainwin = g_new0(MainWindow, 1);
1446
1447         /* main window */
1448         window = GTK_WIDGET(gtkut_window_new(GTK_WINDOW_TOPLEVEL, "mainwindow"));
1449         gtk_window_set_title(GTK_WINDOW(window), PROG_VERSION_FRIENDLY);
1450         gtk_window_set_resizable(GTK_WINDOW(window), TRUE);
1451 #ifdef GENERIC_UMPC
1452         prefs_common.layout_mode = SMALL_LAYOUT;
1453 #endif
1454         if (!geometry.min_height) {
1455                 geometry.min_width = 320;
1456                 geometry.min_height = 200;
1457         }
1458         gtk_window_set_geometry_hints(GTK_WINDOW(window), NULL, &geometry,
1459                                       GDK_HINT_MIN_SIZE);
1460
1461         g_signal_connect(G_OBJECT(window), "delete_event",
1462                          G_CALLBACK(main_window_close_cb), mainwin);
1463         MANAGE_WINDOW_SIGNALS_CONNECT(window);
1464         g_signal_connect(G_OBJECT(window), "focus_in_event",
1465                          G_CALLBACK(mainwindow_focus_in_event),
1466                          mainwin);
1467         g_signal_connect(G_OBJECT(window), "key_press_event",
1468                          G_CALLBACK(mainwindow_key_pressed), mainwin);
1469
1470         gtk_widget_realize(window);
1471         gtk_widget_add_events(window, GDK_KEY_PRESS_MASK|GDK_KEY_RELEASE_MASK);
1472         
1473
1474         gtkut_widget_set_app_icon(window);
1475
1476         vbox = gtk_vbox_new(FALSE, 0);
1477         gtk_widget_show(vbox);
1478         gtk_container_add(GTK_CONTAINER(window), vbox);
1479
1480         /* menu bar */
1481
1482         mainwin->ui_manager = gtk_ui_manager_new();
1483         mainwin->action_group = cm_menu_create_action_group_full(mainwin->ui_manager,"Menu", mainwin_entries,
1484                         G_N_ELEMENTS(mainwin_entries), (gpointer)mainwin);
1485         gtk_action_group_add_toggle_actions(mainwin->action_group, mainwin_toggle_entries,
1486                         G_N_ELEMENTS(mainwin_toggle_entries), (gpointer)mainwin);
1487         gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_showhide_radio_entries,
1488                         G_N_ELEMENTS(mainwin_showhide_radio_entries), C_AUTO, G_CALLBACK(toggle_toolbar_cb), (gpointer)mainwin);
1489 #ifndef GENERIC_UMPC
1490         gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_layout_radio_entries,
1491                         G_N_ELEMENTS(mainwin_layout_radio_entries), C_AUTO, G_CALLBACK(set_layout_cb), (gpointer)mainwin);
1492 #endif
1493         gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_sort_radio_entries,
1494                         G_N_ELEMENTS(mainwin_sort_radio_entries), C_AUTO, G_CALLBACK(sort_summary_cb), (gpointer)mainwin);
1495         gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_sorttype_radio_entries,
1496                         G_N_ELEMENTS(mainwin_sorttype_radio_entries), C_AUTO, G_CALLBACK(sort_summary_type_cb), (gpointer)mainwin);
1497         gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_radio_enc_entries,
1498                         G_N_ELEMENTS(mainwin_radio_enc_entries), C_AUTO, G_CALLBACK(set_charset_cb), (gpointer)mainwin);
1499         gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_radio_dec_entries,
1500                         G_N_ELEMENTS(mainwin_radio_dec_entries), C_AUTO, G_CALLBACK(set_decode_cb), (gpointer)mainwin);
1501
1502         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/", "Menu", NULL, GTK_UI_MANAGER_MENUBAR)
1503         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "File", "File", GTK_UI_MANAGER_MENU)
1504         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Edit", "Edit", GTK_UI_MANAGER_MENU)
1505         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "View", "View", GTK_UI_MANAGER_MENU)
1506         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Message", "Message", GTK_UI_MANAGER_MENU)
1507         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Tools", "Tools", GTK_UI_MANAGER_MENU)
1508         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Configuration", "Configuration", GTK_UI_MANAGER_MENU)
1509         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Help", "Help", GTK_UI_MANAGER_MENU)
1510
1511 /* File menu */
1512         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "AddMailbox", "File/AddMailbox", GTK_UI_MANAGER_MENU)
1513         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File/AddMailbox", "MH", "File/AddMailbox/MH", GTK_UI_MANAGER_MENUITEM)
1514         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator1", "File/---", GTK_UI_MANAGER_SEPARATOR)
1515         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "SortMailboxes", "File/SortMailboxes", GTK_UI_MANAGER_MENUITEM)
1516         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator2", "File/---", GTK_UI_MANAGER_SEPARATOR)
1517         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "ImportMbox", "File/ImportMbox", GTK_UI_MANAGER_MENUITEM)
1518         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "ExportMbox", "File/ExportMbox", GTK_UI_MANAGER_MENUITEM)
1519         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "ExportSelMbox", "File/ExportSelMbox", GTK_UI_MANAGER_MENUITEM)
1520         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator3", "File/---", GTK_UI_MANAGER_SEPARATOR)
1521         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "EmptyTrashes", "File/EmptyTrashes", GTK_UI_MANAGER_MENUITEM)
1522         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator4", "File/---", GTK_UI_MANAGER_SEPARATOR)
1523         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "SaveAs", "File/SaveAs", GTK_UI_MANAGER_MENUITEM)
1524         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "SavePartAs", "File/SavePartAs", GTK_UI_MANAGER_MENUITEM)
1525         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator5", "File/---", GTK_UI_MANAGER_SEPARATOR)
1526         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "PageSetup", "File/PageSetup", GTK_UI_MANAGER_MENUITEM)
1527         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Print", "File/Print", GTK_UI_MANAGER_MENUITEM)
1528         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator6", "File/---", GTK_UI_MANAGER_SEPARATOR)
1529         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "OfflineMode", "File/OfflineMode", GTK_UI_MANAGER_MENUITEM)
1530         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "SynchroniseFolders", "File/SynchroniseFolders", GTK_UI_MANAGER_MENUITEM)
1531         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator7", "File/---", GTK_UI_MANAGER_SEPARATOR)
1532         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Exit", "File/Exit", GTK_UI_MANAGER_MENUITEM)
1533
1534 /* Edit menu */
1535         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "Copy", "Edit/Copy", GTK_UI_MANAGER_MENUITEM)
1536         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "SelectAll", "Edit/SelectAll", GTK_UI_MANAGER_MENUITEM)
1537         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "SelectThread", "Edit/SelectThread", GTK_UI_MANAGER_MENUITEM)
1538         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "DeleteThread", "Edit/DeleteThread", GTK_UI_MANAGER_MENUITEM)
1539         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "Separator1", "Edit/---", GTK_UI_MANAGER_SEPARATOR)
1540         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "Find", "Edit/Find", GTK_UI_MANAGER_MENUITEM)
1541         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "SearchFolder", "Edit/SearchFolder", GTK_UI_MANAGER_MENUITEM)
1542         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "QuickSearch", "Edit/QuickSearch", GTK_UI_MANAGER_MENUITEM)
1543
1544 /* View menu */
1545         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "ShowHide", "View/ShowHide", GTK_UI_MANAGER_MENU)
1546         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "Toolbar", "View/ShowHide/Toolbar", GTK_UI_MANAGER_MENU)
1547         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "TextBelowIcon", "View/ShowHide/Toolbar/TextBelowIcon", GTK_UI_MANAGER_MENUITEM)
1548         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "TextBesideIcon", "View/ShowHide/Toolbar/TextBesideIcon", GTK_UI_MANAGER_MENUITEM)
1549         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "IconOnly", "View/ShowHide/Toolbar/IconOnly", GTK_UI_MANAGER_MENUITEM)
1550         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "TextOnly", "View/ShowHide/Toolbar/TextOnly", GTK_UI_MANAGER_MENUITEM)
1551 #ifndef GENERIC_UMPC
1552         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "Hide", "View/ShowHide/Toolbar/Hide", GTK_UI_MANAGER_MENUITEM)
1553 #endif
1554         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "MessageView", "View/ShowHide/MessageView", GTK_UI_MANAGER_MENUITEM)
1555 #ifndef GENERIC_UMPC
1556         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "StatusBar", "View/ShowHide/StatusBar", GTK_UI_MANAGER_MENUITEM)
1557 #endif
1558         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "ColumnHeaders", "View/ShowHide/ColumnHeaders", GTK_UI_MANAGER_MENUITEM)
1559         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "SetColumns", "View/SetColumns", GTK_UI_MANAGER_MENU)
1560         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/SetColumns", "Folderlist", "View/SetColumns/Folderlist", GTK_UI_MANAGER_MENUITEM)
1561         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/SetColumns", "Messagelist", "View/SetColumns/Messagelist", GTK_UI_MANAGER_MENUITEM)
1562         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator1", "View/---", GTK_UI_MANAGER_SEPARATOR)
1563
1564         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "FullScreen", "View/FullScreen", GTK_UI_MANAGER_MENUITEM)
1565 #ifndef GENERIC_UMPC
1566         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Layout", "View/Layout", GTK_UI_MANAGER_MENU)
1567         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "Standard", "View/Layout/Standard", GTK_UI_MANAGER_MENUITEM)
1568         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "ThreeColumns", "View/Layout/ThreeColumns", GTK_UI_MANAGER_MENUITEM)
1569         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "WideMessage", "View/Layout/WideMessage", GTK_UI_MANAGER_MENUITEM)
1570         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "WideMessageList", "View/Layout/WideMessageList", GTK_UI_MANAGER_MENUITEM)
1571         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "SmallScreen", "View/Layout/SmallScreen", GTK_UI_MANAGER_MENUITEM)
1572         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator2", "View/---", GTK_UI_MANAGER_SEPARATOR)
1573 #endif
1574
1575         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Sort", "View/Sort", GTK_UI_MANAGER_MENU)
1576         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Number", "View/Sort/Number", GTK_UI_MANAGER_MENUITEM)
1577         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Size", "View/Sort/Size", GTK_UI_MANAGER_MENUITEM)
1578         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Date", "View/Sort/Date", GTK_UI_MANAGER_MENUITEM)
1579         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "ThreadDate", "View/Sort/ThreadDate", GTK_UI_MANAGER_MENUITEM)
1580         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "From", "View/Sort/From", GTK_UI_MANAGER_MENUITEM)
1581         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "To", "View/Sort/To", GTK_UI_MANAGER_MENUITEM)
1582         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Subject", "View/Sort/Subject", GTK_UI_MANAGER_MENUITEM)
1583         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Color", "View/Sort/Color", GTK_UI_MANAGER_MENUITEM)
1584         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Tag", "View/Sort/Tag", GTK_UI_MANAGER_MENUITEM)
1585         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Mark", "View/Sort/Mark", GTK_UI_MANAGER_MENUITEM)
1586         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Status", "View/Sort/Status", GTK_UI_MANAGER_MENUITEM)
1587         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Attachment", "View/Sort/Attachment", GTK_UI_MANAGER_MENUITEM)
1588         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Score", "View/Sort/Score", GTK_UI_MANAGER_MENUITEM)
1589         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Locked", "View/Sort/Locked", GTK_UI_MANAGER_MENUITEM)
1590         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "DontSort", "View/Sort/DontSort", GTK_UI_MANAGER_MENUITEM)
1591         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Separator1", "View/Sort/---", GTK_UI_MANAGER_SEPARATOR)
1592         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Ascending", "View/Sort/Ascending", GTK_UI_MANAGER_MENUITEM)
1593         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Descending", "View/Sort/Descending", GTK_UI_MANAGER_MENUITEM)
1594         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Separator2", "View/Sort/---", GTK_UI_MANAGER_SEPARATOR)
1595         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "AttractSubj", "View/Sort/AttractSubj", GTK_UI_MANAGER_MENUITEM)
1596
1597         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "ThreadView", "View/ThreadView", GTK_UI_MANAGER_MENUITEM)
1598         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "ExpandThreads", "View/ExpandThreads", GTK_UI_MANAGER_MENUITEM)
1599         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "CollapseThreads", "View/CollapseThreads", GTK_UI_MANAGER_MENUITEM)
1600         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "HideReadThreads", "View/HideReadThreads", GTK_UI_MANAGER_MENUITEM)
1601         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "HideReadMessages", "View/HideReadMessages", GTK_UI_MANAGER_MENUITEM)
1602         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "HideDelMessages", "View/HideDelMessages", GTK_UI_MANAGER_MENUITEM)
1603         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator3", "View/---", GTK_UI_MANAGER_SEPARATOR)
1604
1605         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Goto", "View/Goto", GTK_UI_MANAGER_MENU)
1606         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Prev", "View/Goto/Prev", GTK_UI_MANAGER_MENUITEM)
1607         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Next", "View/Goto/Next", GTK_UI_MANAGER_MENUITEM)
1608         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator1", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1609         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevUnread", "View/Goto/PrevUnread", GTK_UI_MANAGER_MENUITEM)
1610         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextUnread", "View/Goto/NextUnread", GTK_UI_MANAGER_MENUITEM)
1611         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator2", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1612         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevNew", "View/Goto/PrevNew", GTK_UI_MANAGER_MENUITEM)
1613         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextNew", "View/Goto/NextNew", GTK_UI_MANAGER_MENUITEM)
1614         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator3", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1615         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevMarked", "View/Goto/PrevMarked", GTK_UI_MANAGER_MENUITEM)
1616         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextMarked", "View/Goto/NextMarked", GTK_UI_MANAGER_MENUITEM)
1617         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator4", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1618         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevLabeled", "View/Goto/PrevLabeled", GTK_UI_MANAGER_MENUITEM)
1619         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextLabeled", "View/Goto/NextLabeled", GTK_UI_MANAGER_MENUITEM)
1620         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator5", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1621         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevHistory", "View/Goto/PrevHistory", GTK_UI_MANAGER_MENUITEM)
1622         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextHistory", "View/Goto/NextHistory", GTK_UI_MANAGER_MENUITEM)
1623         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator6", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1624         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "ParentMessage", "View/Goto/ParentMessage", GTK_UI_MANAGER_MENUITEM)
1625         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator7", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1626         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextUnreadFolder", "View/Goto/NextUnreadFolder", GTK_UI_MANAGER_MENUITEM)
1627         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "OtherFolder", "View/Goto/OtherFolder", GTK_UI_MANAGER_MENUITEM)
1628         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator8", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1629         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextPart", "View/Goto/NextPart", GTK_UI_MANAGER_MENUITEM)
1630         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevPart", "View/Goto/PrevPart", GTK_UI_MANAGER_MENUITEM)
1631         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Scroll", "View/Scroll", GTK_UI_MANAGER_MENU)
1632         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Scroll", "PrevLine", "View/Scroll/PrevLine", GTK_UI_MANAGER_MENUITEM)
1633         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Scroll", "NextLine", "View/Scroll/NextLine", GTK_UI_MANAGER_MENUITEM)
1634         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Scroll", "PrevPage", "View/Scroll/PrevPage", GTK_UI_MANAGER_MENUITEM)
1635         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Scroll", "NextPage", "View/Scroll/NextPage", GTK_UI_MANAGER_MENUITEM)
1636         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator4", "View/---", GTK_UI_MANAGER_SEPARATOR)
1637
1638         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Encoding", "View/Encoding", GTK_UI_MANAGER_MENU)
1639         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_AUTO, "View/Encoding/"CS_AUTO, GTK_UI_MANAGER_MENUITEM)
1640         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Separator1", "View/Encoding/---", GTK_UI_MANAGER_SEPARATOR)
1641         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_US_ASCII, "View/Encoding/"CS_US_ASCII, GTK_UI_MANAGER_MENUITEM)
1642         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_UTF_8, "View/Encoding/"CS_UTF_8, GTK_UI_MANAGER_MENUITEM)
1643         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Separator2", "View/Encoding/---", GTK_UI_MANAGER_SEPARATOR)
1644
1645         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Western", "View/Encoding/Western", GTK_UI_MANAGER_MENU)
1646         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)
1647         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)
1648         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Western", CS_WINDOWS_1252, "View/Encoding/Western/"CS_WINDOWS_1252, GTK_UI_MANAGER_MENUITEM)
1649
1650         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_ISO_8859_2, "View/Encoding/"CS_ISO_8859_2, GTK_UI_MANAGER_MENUITEM)
1651
1652         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Baltic", "View/Encoding/Baltic", GTK_UI_MANAGER_MENU)
1653         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)
1654         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)
1655
1656         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_ISO_8859_7, "View/Encoding/"CS_ISO_8859_7, GTK_UI_MANAGER_MENUITEM)
1657
1658         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Hebrew", "View/Encoding/Hebrew", GTK_UI_MANAGER_MENU)
1659         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)
1660         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Hebrew", CS_WINDOWS_1255, "View/Encoding/Hebrew/"CS_WINDOWS_1255, GTK_UI_MANAGER_MENUITEM)
1661
1662         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Arabic", "View/Encoding/Arabic", GTK_UI_MANAGER_MENU)
1663         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)
1664         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Arabic", CS_WINDOWS_1256, "View/Encoding/Arabic/"CS_WINDOWS_1256, GTK_UI_MANAGER_MENUITEM)
1665
1666         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_ISO_8859_9, "View/Encoding/"CS_ISO_8859_9, GTK_UI_MANAGER_MENUITEM)
1667
1668         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Cyrillic", "View/Encoding/Cyrillic", GTK_UI_MANAGER_MENU)
1669         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)
1670         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_KOI8_R, "View/Encoding/Cyrillic/"CS_KOI8_R, GTK_UI_MANAGER_MENUITEM)
1671         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_KOI8_U, "View/Encoding/Cyrillic/"CS_KOI8_U, GTK_UI_MANAGER_MENUITEM)
1672         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_WINDOWS_1251, "View/Encoding/Cyrillic/"CS_WINDOWS_1251, GTK_UI_MANAGER_MENUITEM)
1673
1674         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Japanese", "View/Encoding/Japanese", GTK_UI_MANAGER_MENU)
1675         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)
1676         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)
1677         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Japanese", CS_EUC_JP, "View/Encoding/Japanese/"CS_EUC_JP, GTK_UI_MANAGER_MENUITEM)
1678         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Japanese", CS_SHIFT_JIS, "View/Encoding/Japanese/"CS_SHIFT_JIS, GTK_UI_MANAGER_MENUITEM)
1679
1680         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Chinese", "View/Encoding/Chinese", GTK_UI_MANAGER_MENU)
1681         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_GB18030, "View/Encoding/Chinese/"CS_GB18030, GTK_UI_MANAGER_MENUITEM)
1682         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_GB2312, "View/Encoding/Chinese/"CS_GB2312, GTK_UI_MANAGER_MENUITEM)
1683         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_GBK, "View/Encoding/Chinese/"CS_GBK, GTK_UI_MANAGER_MENUITEM)
1684         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_BIG5, "View/Encoding/Chinese/"CS_BIG5, GTK_UI_MANAGER_MENUITEM)
1685         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_EUC_TW, "View/Encoding/Chinese/"CS_EUC_TW, GTK_UI_MANAGER_MENUITEM)
1686
1687         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Korean", "View/Encoding/Korean", GTK_UI_MANAGER_MENU)
1688         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Korean", CS_EUC_KR, "View/Encoding/Korean/"CS_EUC_KR, GTK_UI_MANAGER_MENUITEM)
1689         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)
1690
1691         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Thai", "View/Encoding/Thai", GTK_UI_MANAGER_MENU)
1692         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Thai", CS_TIS_620, "View/Encoding/Thai/"CS_TIS_620, GTK_UI_MANAGER_MENUITEM)
1693         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Thai", CS_WINDOWS_874, "View/Encoding/Thai/"CS_WINDOWS_874, GTK_UI_MANAGER_MENUITEM)
1694
1695         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Decode", "View/Decode", GTK_UI_MANAGER_MENU)
1696         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "AutoDetect", "View/Decode/AutoDetect", GTK_UI_MANAGER_MENUITEM)
1697         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "Separator1", "View/Decode/---", GTK_UI_MANAGER_SEPARATOR)
1698         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "8bit", "View/Decode/8bit", GTK_UI_MANAGER_MENUITEM)
1699         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "QP", "View/Decode/QP", GTK_UI_MANAGER_MENUITEM)
1700         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "B64", "View/Decode/B64", GTK_UI_MANAGER_MENUITEM)
1701         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "Uuencode", "View/Decode/Uuencode", GTK_UI_MANAGER_MENUITEM)
1702         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator5", "View/---", GTK_UI_MANAGER_SEPARATOR)
1703
1704         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "OpenNewWindow", "View/OpenNewWindow", GTK_UI_MANAGER_MENUITEM)
1705         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "MessageSource", "View/MessageSource", GTK_UI_MANAGER_MENUITEM)
1706         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "AllHeaders", "View/AllHeaders", GTK_UI_MANAGER_MENUITEM)
1707         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Quotes", "View/Quotes", GTK_UI_MANAGER_MENU)
1708         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Quotes", "CollapseAll", "View/Quotes/CollapseAll", GTK_UI_MANAGER_MENUITEM)
1709         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Quotes", "Collapse2", "View/Quotes/Collapse2", GTK_UI_MANAGER_MENUITEM)
1710         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Quotes", "Collapse3", "View/Quotes/Collapse3", GTK_UI_MANAGER_MENUITEM)
1711         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Part", "View/Part", GTK_UI_MANAGER_MENU)
1712         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Part", "AsText", "View/Part/AsText", GTK_UI_MANAGER_MENUITEM)
1713         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Part", "Open", "View/Part/Open", GTK_UI_MANAGER_MENUITEM)
1714 #ifndef G_OS_WIN32
1715         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Part", "OpenWith", "View/Part/OpenWith", GTK_UI_MANAGER_MENUITEM)
1716 #endif
1717         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator8", "View/---", GTK_UI_MANAGER_SEPARATOR)
1718         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "UpdateSummary", "View/UpdateSummary", GTK_UI_MANAGER_MENUITEM)
1719
1720 /* Message menu */
1721         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Receive", "Message/Receive", GTK_UI_MANAGER_MENU)
1722         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "CurrentAccount", "Message/Receive/CurrentAccount", GTK_UI_MANAGER_MENUITEM)
1723         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "AllAccounts", "Message/Receive/AllAccounts", GTK_UI_MANAGER_MENUITEM)
1724         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "CancelReceiving", "Message/Receive/CancelReceiving", GTK_UI_MANAGER_MENUITEM)
1725         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "Separator1", "Message/Receive/---", GTK_UI_MANAGER_SEPARATOR)
1726         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "PlaceHolder", "Message/Receive/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1727         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "SendQueue", "Message/SendQueue", GTK_UI_MANAGER_MENUITEM)
1728         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "CancelSending", "Message/CancelSending", GTK_UI_MANAGER_MENUITEM)
1729         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator1", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1730
1731         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ComposeEmail", "Message/ComposeEmail", GTK_UI_MANAGER_MENUITEM)
1732         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ComposeNews", "Message/ComposeNews", GTK_UI_MANAGER_MENUITEM)
1733         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Reply", "Message/Reply", GTK_UI_MANAGER_MENUITEM)
1734         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ReplyTo", "Message/ReplyTo", GTK_UI_MANAGER_MENU)
1735         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/ReplyTo", "All", "Message/ReplyTo/All", GTK_UI_MANAGER_MENUITEM)
1736         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/ReplyTo", "Sender", "Message/ReplyTo/Sender", GTK_UI_MANAGER_MENUITEM)
1737         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/ReplyTo", "List", "Message/ReplyTo/List", GTK_UI_MANAGER_MENUITEM)
1738         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "FollowupReply", "Message/FollowupReply", GTK_UI_MANAGER_MENUITEM)
1739         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator2", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1740
1741         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Forward", "Message/Forward", GTK_UI_MANAGER_MENUITEM)
1742         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ForwardAtt", "Message/ForwardAtt", GTK_UI_MANAGER_MENUITEM)
1743         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Redirect", "Message/Redirect", GTK_UI_MANAGER_MENUITEM)
1744         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "MailingList", "Message/MailingList", GTK_UI_MANAGER_MENU)
1745         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "Post", "Message/MailingList/Post", GTK_UI_MANAGER_MENU)
1746         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "Help", "Message/MailingList/Help", GTK_UI_MANAGER_MENU)
1747         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "Subscribe", "Message/MailingList/Subscribe", GTK_UI_MANAGER_MENU)
1748         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "Unsubscribe", "Message/MailingList/Unsubscribe", GTK_UI_MANAGER_MENU)
1749         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "ViewArchive", "Message/MailingList/ViewArchive", GTK_UI_MANAGER_MENU)
1750         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "ContactOwner", "Message/MailingList/ContactOwner", GTK_UI_MANAGER_MENU)
1751         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/Post", "PlaceHolder", "Message/MailingList/Post/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1752         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/Help", "PlaceHolder", "Message/MailingList/Help/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1753         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/Subscribe", "PlaceHolder", "Message/MailingList/Subscribe/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1754         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/Unsubscribe", "PlaceHolder", "Message/MailingList/Unsubscribe/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1755         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/ViewArchive", "PlaceHolder", "Message/MailingList/ViewArchive/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1756         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/ContactOwner", "PlaceHolder", "Message/MailingList/ContactOwner/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1757         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator3", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1758
1759         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Move", "Message/Move", GTK_UI_MANAGER_MENUITEM)
1760         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Copy", "Message/Copy", GTK_UI_MANAGER_MENUITEM)
1761         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Trash", "Message/Trash", GTK_UI_MANAGER_MENUITEM)
1762         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Delete", "Message/Delete", GTK_UI_MANAGER_MENUITEM)
1763         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "CancelNews", "Message/CancelNews", GTK_UI_MANAGER_MENUITEM)
1764         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator4", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1765
1766         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Mark", "Message/Mark", GTK_UI_MANAGER_MENU)
1767         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Mark", "Message/Mark/Mark", GTK_UI_MANAGER_MENUITEM)
1768         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Unmark", "Message/Mark/Unmark", GTK_UI_MANAGER_MENUITEM)
1769         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator1", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1770         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkUnread", "Message/Mark/MarkUnread", GTK_UI_MANAGER_MENUITEM)
1771         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkRead", "Message/Mark/MarkRead", GTK_UI_MANAGER_MENUITEM)
1772         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator2", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1773         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkAllRead", "Message/Mark/MarkAllRead", GTK_UI_MANAGER_MENUITEM)
1774         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator3", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1775         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "IgnoreThread", "Message/Mark/IgnoreThread", GTK_UI_MANAGER_MENUITEM)
1776         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "UnignoreThread", "Message/Mark/UnignoreThread", GTK_UI_MANAGER_MENUITEM)
1777         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "WatchThread", "Message/Mark/WatchThread", GTK_UI_MANAGER_MENUITEM)
1778         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "UnwatchThread", "Message/Mark/UnwatchThread", GTK_UI_MANAGER_MENUITEM)
1779         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator4", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1780         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkSpam", "Message/Mark/MarkSpam", GTK_UI_MANAGER_MENUITEM)
1781         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkHam", "Message/Mark/MarkHam", GTK_UI_MANAGER_MENUITEM)
1782         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator5", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1783         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Lock", "Message/Mark/Lock", GTK_UI_MANAGER_MENUITEM)
1784         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Unlock", "Message/Mark/Unlock", GTK_UI_MANAGER_MENUITEM)
1785         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ColorLabel", "Message/ColorLabel", GTK_UI_MANAGER_MENUITEM)
1786         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Tags", "Message/Tags", GTK_UI_MANAGER_MENUITEM)
1787         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator5", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1788
1789         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Reedit", "Message/Reedit", GTK_UI_MANAGER_MENUITEM)
1790         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator6", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1791         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "CheckSignature", "Message/CheckSignature", GTK_UI_MANAGER_MENUITEM)
1792
1793 /* Tools menu */
1794         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "AddressBook", "Tools/AddressBook", GTK_UI_MANAGER_MENUITEM)
1795         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "AddSenderToAB", "Tools/AddSenderToAB", GTK_UI_MANAGER_MENUITEM)
1796         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "CollectAddresses", "Tools/CollectAddresses", GTK_UI_MANAGER_MENU)
1797         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CollectAddresses", "FromFolder", "Tools/CollectAddresses/FromFolder", GTK_UI_MANAGER_MENUITEM)
1798         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CollectAddresses", "FromSelected", "Tools/CollectAddresses/FromSelected", GTK_UI_MANAGER_MENUITEM)
1799         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator1", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1800
1801         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "FilterFolder", "Tools/FilterFolder", GTK_UI_MANAGER_MENUITEM)
1802         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "FilterSelected", "Tools/FilterSelected", GTK_UI_MANAGER_MENUITEM)
1803         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "RunProcessing", "Tools/RunProcessing", GTK_UI_MANAGER_MENUITEM)
1804         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "CreateFilterRule", "Tools/CreateFilterRule", GTK_UI_MANAGER_MENU)
1805         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateFilterRule", "Automatically", "Tools/CreateFilterRule/Automatically", GTK_UI_MANAGER_MENUITEM)
1806         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateFilterRule", "ByFrom", "Tools/CreateFilterRule/ByFrom", GTK_UI_MANAGER_MENUITEM)
1807         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateFilterRule", "ByTo", "Tools/CreateFilterRule/ByTo", GTK_UI_MANAGER_MENUITEM)
1808         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateFilterRule", "BySubject", "Tools/CreateFilterRule/BySubject", GTK_UI_MANAGER_MENUITEM)
1809
1810         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "CreateProcessingRule", "Tools/CreateProcessingRule", GTK_UI_MANAGER_MENU)
1811         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateProcessingRule", "Automatically", "Tools/CreateProcessingRule/Automatically", GTK_UI_MANAGER_MENUITEM)
1812         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateProcessingRule", "ByFrom", "Tools/CreateProcessingRule/ByFrom", GTK_UI_MANAGER_MENUITEM)
1813         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateProcessingRule", "ByTo", "Tools/CreateProcessingRule/ByTo", GTK_UI_MANAGER_MENUITEM)
1814         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateProcessingRule", "BySubject", "Tools/CreateProcessingRule/BySubject", GTK_UI_MANAGER_MENUITEM)
1815         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator2", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1816         
1817         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "ListUrls", "Tools/ListUrls", GTK_UI_MANAGER_MENUITEM)
1818         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator3", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1819
1820         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Actions", "Tools/Actions", GTK_UI_MANAGER_MENU)
1821         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/Actions", "PlaceHolder", "Tools/Actions/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1822         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator4", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1823
1824         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "CheckNewMessages", "Tools/CheckNewMessages", GTK_UI_MANAGER_MENUITEM)
1825         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "DeleteDuplicates", "Tools/DeleteDuplicates", GTK_UI_MANAGER_MENU)
1826         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/DeleteDuplicates", "SelFolder", "Tools/DeleteDuplicates/SelFolder", GTK_UI_MANAGER_MENUITEM)
1827         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/DeleteDuplicates", "AllFolders", "Tools/DeleteDuplicates/AllFolders", GTK_UI_MANAGER_MENUITEM)
1828         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator5", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1829
1830         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Execute", "Tools/Execute", GTK_UI_MANAGER_MENUITEM)
1831         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Expunge", "Tools/Expunge", GTK_UI_MANAGER_MENUITEM)
1832 #ifdef USE_GNUTLS
1833         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator6", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1834         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "SSLCertificates", "Tools/SSLCertificates", GTK_UI_MANAGER_MENUITEM)
1835 #endif
1836         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator7", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1837 #ifndef G_OS_WIN32
1838         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "FilteringLog", "Tools/FilteringLog", GTK_UI_MANAGER_MENUITEM)
1839 #endif
1840         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "NetworkLog", "Tools/NetworkLog", GTK_UI_MANAGER_MENUITEM)
1841         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator8", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1842         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "ForgetSessionPasswords", "Tools/ForgetSessionPasswords", GTK_UI_MANAGER_MENUITEM)
1843         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator9", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1844
1845 /* Configuration menu */
1846         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "ChangeAccount", "Configuration/ChangeAccount", GTK_UI_MANAGER_MENU)
1847         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration/ChangeAccount", "PlaceHolder", "Configuration/ChangeAccount/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1848         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "AccountPrefs", "Configuration/AccountPrefs", GTK_UI_MANAGER_MENUITEM)
1849         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "CreateAccount", "Configuration/CreateAccount", GTK_UI_MANAGER_MENUITEM)
1850         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "EditAccounts", "Configuration/EditAccounts", GTK_UI_MANAGER_MENUITEM)
1851         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Separator1", "Configuration/---", GTK_UI_MANAGER_SEPARATOR)
1852
1853         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Preferences", "Configuration/Preferences", GTK_UI_MANAGER_MENUITEM)
1854         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "PreProcessing", "Configuration/PreProcessing", GTK_UI_MANAGER_MENUITEM)
1855         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "PostProcessing", "Configuration/PostProcessing", GTK_UI_MANAGER_MENUITEM)
1856         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Filtering", "Configuration/Filtering", GTK_UI_MANAGER_MENUITEM)
1857         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Templates", "Configuration/Templates", GTK_UI_MANAGER_MENUITEM)
1858         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Actions", "Configuration/Actions", GTK_UI_MANAGER_MENUITEM)
1859         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Tags", "Configuration/Tags", GTK_UI_MANAGER_MENUITEM)
1860
1861         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Separator2", "Configuration/---", GTK_UI_MANAGER_SEPARATOR)
1862         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Plugins", "Configuration/Plugins", GTK_UI_MANAGER_MENUITEM)
1863
1864 /* Help menu */
1865         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "Manual", "Help/Manual", GTK_UI_MANAGER_MENUITEM)
1866         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "FAQ", "Help/FAQ", GTK_UI_MANAGER_MENUITEM)
1867         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "IconLegend", "Help/IconLegend", GTK_UI_MANAGER_MENUITEM)
1868 #ifdef G_OS_WIN32
1869         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "Separator1", "Help/---", GTK_UI_MANAGER_SEPARATOR)
1870         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "SetDefault", "Help/SetDefault", GTK_UI_MANAGER_MENUITEM)
1871 #endif
1872         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "Separator2", "Help/---", GTK_UI_MANAGER_SEPARATOR)
1873         MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "About", "Help/About", GTK_UI_MANAGER_MENUITEM)
1874
1875
1876         menubar = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu");
1877         gtk_widget_show_all(menubar);
1878         gtk_window_add_accel_group(GTK_WINDOW(window), gtk_ui_manager_get_accel_group(mainwin->ui_manager));
1879
1880         gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, TRUE, 0);
1881
1882         if (prefs_common.toolbar_detachable) {
1883                 handlebox = gtk_handle_box_new();
1884                 gtk_widget_show(handlebox);
1885                 gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
1886                 g_signal_connect(G_OBJECT(handlebox), "child_attached",
1887                                  G_CALLBACK(toolbar_child_attached), mainwin);
1888                 g_signal_connect(G_OBJECT(handlebox), "child_detached",
1889                                  G_CALLBACK(toolbar_child_detached), mainwin);
1890         } else {
1891                 handlebox = gtk_hbox_new(FALSE, 0);
1892                 gtk_widget_show(handlebox);
1893                 gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
1894         }
1895         /* link window to mainwin->window to avoid gdk warnings */
1896         mainwin->window       = window;
1897         mainwin_list = g_list_append(mainwin_list, mainwin);
1898         
1899         mainwin->toolbar = toolbar_create(TOOLBAR_MAIN, 
1900                                           handlebox, 
1901                                           (gpointer)mainwin);
1902         toolbar_set_learn_button
1903                 (mainwin->toolbar,
1904                  LEARN_SPAM);
1905
1906         /* vbox that contains body */
1907         vbox_body = gtk_vbox_new(FALSE, BORDER_WIDTH);
1908         gtk_widget_show(vbox_body);
1909         gtk_container_set_border_width(GTK_CONTAINER(vbox_body), BORDER_WIDTH);
1910         gtk_box_pack_start(GTK_BOX(vbox), vbox_body, TRUE, TRUE, 0);
1911
1912 #ifndef GENERIC_UMPC
1913         hbox_stat = gtk_hbox_new(FALSE, 2);
1914         gtk_box_pack_end(GTK_BOX(vbox_body), hbox_stat, FALSE, FALSE, 0);
1915
1916         warning_icon = gtk_image_new_from_stock
1917                         (GTK_STOCK_DIALOG_WARNING, GTK_ICON_SIZE_SMALL_TOOLBAR);
1918         warning_btn = gtk_event_box_new();
1919         gtk_event_box_set_visible_window(GTK_EVENT_BOX(warning_btn), FALSE);
1920         
1921         mainwin->warning_btn      = warning_btn;
1922         
1923         g_signal_connect(G_OBJECT(warning_btn), "button-press-event", 
1924                          G_CALLBACK(warning_icon_pressed),
1925                          (gpointer) mainwin);
1926         g_signal_connect(G_OBJECT(warning_btn), "motion-notify-event",
1927                          G_CALLBACK(warning_visi_notify), mainwin);
1928         g_signal_connect(G_OBJECT(warning_btn), "leave-notify-event",
1929                          G_CALLBACK(warning_leave_notify), mainwin);
1930         g_signal_connect(G_OBJECT(warning_btn), "enter-notify-event",
1931                          G_CALLBACK(warning_enter_notify), mainwin);
1932
1933         gtk_container_add (GTK_CONTAINER(warning_btn), warning_icon);
1934
1935         CLAWS_SET_TIP(warning_btn, 
1936                              _("Some error(s) happened. Click here to view log."));
1937         gtk_box_pack_start(GTK_BOX(hbox_stat), warning_btn, FALSE, FALSE, 0);
1938
1939         statusbar = statusbar_create();
1940         gtk_box_pack_start(GTK_BOX(hbox_stat), statusbar, TRUE, TRUE, 0);
1941
1942         progressbar = gtk_progress_bar_new();
1943         gtk_widget_set_size_request(progressbar, 120, 1);
1944         gtk_box_pack_start(GTK_BOX(hbox_stat), progressbar, FALSE, FALSE, 0);
1945
1946         online_pixmap = stock_pixmap_widget(hbox_stat, STOCK_PIXMAP_ONLINE);
1947         offline_pixmap = stock_pixmap_widget(hbox_stat, STOCK_PIXMAP_OFFLINE);
1948         online_switch = gtk_button_new ();
1949         gtkut_widget_set_can_focus(online_switch, FALSE);
1950         CLAWS_SET_TIP(online_switch, 
1951                              _("You are online. Click the icon to go offline"));
1952         offline_switch = gtk_button_new ();
1953         CLAWS_SET_TIP(offline_switch, 
1954                              _("You are offline. Click the icon to go online"));
1955         gtk_container_add (GTK_CONTAINER(online_switch), online_pixmap);
1956         gtk_button_set_relief (GTK_BUTTON(online_switch), GTK_RELIEF_NONE);
1957         g_signal_connect (G_OBJECT(online_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
1958         gtk_box_pack_start (GTK_BOX(hbox_stat), online_switch, FALSE, FALSE, 0);
1959         gtk_container_add (GTK_CONTAINER(offline_switch), offline_pixmap);
1960         gtk_button_set_relief (GTK_BUTTON(offline_switch), GTK_RELIEF_NONE);
1961         g_signal_connect (G_OBJECT(offline_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
1962         gtk_box_pack_start (GTK_BOX(hbox_stat), offline_switch, FALSE, FALSE, 0);
1963         
1964         statuslabel = gtk_label_new("");
1965         gtk_box_pack_start(GTK_BOX(hbox_stat), statuslabel, FALSE, FALSE, 0);
1966
1967         ac_button = gtk_button_new();
1968         CLAWS_SET_TIP(ac_button, _("Select account"));
1969         gtkut_widget_set_can_focus(ac_button, FALSE);
1970         gtk_widget_set_size_request(ac_button, -1, 0);
1971         gtk_box_pack_end(GTK_BOX(hbox_stat), ac_button, FALSE, FALSE, 0);
1972         g_signal_connect(G_OBJECT(ac_button), "button_press_event",
1973                          G_CALLBACK(ac_label_button_pressed), mainwin);
1974
1975         ac_label = gtk_label_new("");
1976         gtk_container_add(GTK_CONTAINER(ac_button), ac_label);
1977
1978         gtk_widget_show_all(hbox_stat);
1979
1980         gtk_widget_hide(offline_switch);
1981         gtk_widget_hide(progressbar);
1982         gtk_widget_hide(warning_btn);
1983 #else
1984         online_switch = gtk_button_new ();
1985         offline_switch = gtk_button_new ();
1986         g_signal_connect (G_OBJECT(online_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
1987         g_signal_connect (G_OBJECT(offline_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
1988 #endif
1989         /* create views */
1990         mainwin->folderview  = folderview  = folderview_create();
1991         mainwin->summaryview = summaryview = summary_create(mainwin);
1992         mainwin->messageview = messageview = messageview_create(mainwin);
1993
1994         /* init log instances data before creating log views */
1995         set_log_title(LOG_PROTOCOL, _("Network log"));
1996         set_log_prefs(LOG_PROTOCOL,
1997                         &prefs_common.logwin_width,
1998                         &prefs_common.logwin_height);
1999         set_log_title(LOG_DEBUG_FILTERING, _("Filtering/Processing debug log"));
2000         set_log_prefs(LOG_DEBUG_FILTERING,
2001                         &prefs_common.filtering_debugwin_width,
2002                         &prefs_common.filtering_debugwin_height);
2003
2004         /* setup log windows */
2005         mainwin->logwin = log_window_create(LOG_PROTOCOL);
2006         log_window_init(mainwin->logwin);
2007
2008         mainwin->filtering_debugwin = log_window_create(LOG_DEBUG_FILTERING);
2009         log_window_set_clipping(mainwin->logwin,
2010                                 prefs_common.cliplog,
2011                                 prefs_common.loglength);
2012
2013         log_window_init(mainwin->filtering_debugwin);
2014         log_window_set_clipping(mainwin->filtering_debugwin,
2015                                 prefs_common.filtering_debug_cliplog,
2016                                 prefs_common.filtering_debug_loglength);
2017         if (prefs_common.enable_filtering_debug)
2018                 log_message(LOG_DEBUG_FILTERING, _("filtering log enabled\n"));
2019         else
2020                 log_message(LOG_DEBUG_FILTERING, _("filtering log disabled\n"));
2021
2022         folderview->mainwin      = mainwin;
2023         folderview->summaryview  = summaryview;
2024
2025         summaryview->mainwin     = mainwin;
2026         summaryview->folderview  = folderview;
2027         summaryview->messageview = messageview;
2028         summaryview->window      = window;
2029
2030         mainwin->vbox           = vbox;
2031         mainwin->menubar        = menubar;
2032         mainwin->handlebox      = handlebox;
2033         mainwin->vbox_body      = vbox_body;
2034         mainwin->online_switch  = online_switch;
2035         mainwin->offline_switch    = offline_switch;
2036 #ifndef GENERIC_UMPC
2037         messageview->statusbar  = statusbar;
2038         mainwin->statusbar      = statusbar;
2039         mainwin->hbox_stat      = hbox_stat;
2040         mainwin->progressbar    = progressbar;
2041         mainwin->statuslabel    = statuslabel;
2042         mainwin->online_pixmap  = online_pixmap;
2043         mainwin->offline_pixmap = offline_pixmap;
2044         mainwin->ac_button      = ac_button;
2045         mainwin->ac_label       = ac_label;
2046         /* set context IDs for status bar */
2047         mainwin->mainwin_cid = gtk_statusbar_get_context_id
2048                 (GTK_STATUSBAR(statusbar), "Main Window");
2049         mainwin->folderview_cid = gtk_statusbar_get_context_id
2050                 (GTK_STATUSBAR(statusbar), "Folder View");
2051         mainwin->summaryview_cid = gtk_statusbar_get_context_id
2052                 (GTK_STATUSBAR(statusbar), "Summary View");
2053         mainwin->messageview_cid = gtk_statusbar_get_context_id
2054                 (GTK_STATUSBAR(statusbar), "Message View");
2055         messageview->statusbar_cid = mainwin->messageview_cid;
2056
2057 #else
2058         messageview->statusbar  = NULL;
2059         mainwin->statusbar      = NULL;
2060         mainwin->hbox_stat      = NULL;
2061         /* mainwin->progressbar is set in toolbar.c */
2062         mainwin->statuslabel    = NULL;
2063         mainwin->online_pixmap  = NULL;
2064         mainwin->offline_pixmap = NULL;
2065         mainwin->ac_button      = NULL;
2066         mainwin->ac_label       = NULL;
2067 #endif
2068         
2069         /* allocate colors for summary view and folder view */
2070         summaryview->color_marked.red = summaryview->color_marked.green = 0;
2071         summaryview->color_marked.blue = (guint16)65535;
2072
2073         summaryview->color_dim.red = summaryview->color_dim.green =
2074                 summaryview->color_dim.blue = COLOR_DIM;
2075
2076         gtkut_convert_int_to_gdk_color(prefs_common.color_new,
2077                                        &folderview->color_new);
2078
2079         gtkut_convert_int_to_gdk_color(prefs_common.tgt_folder_col,
2080                                        &folderview->color_op);
2081
2082         summaryview->color_important.red = 0;
2083         summaryview->color_important.green = 0;
2084         summaryview->color_important.blue = (guint16)65535;
2085
2086         color[0] = summaryview->color_marked;
2087         color[1] = summaryview->color_dim;
2088         color[2] = folderview->color_new;
2089         color[3] = folderview->color_op;
2090
2091 #if !GTK_CHECK_VERSION(3, 0, 0)
2092         colormap = gdk_drawable_get_colormap(gtk_widget_get_window(window));
2093         gdk_colormap_alloc_colors(colormap, color, 4, FALSE, TRUE, success);
2094         for (i = 0; i < 4; i++) {
2095                 if (success[i] == FALSE)
2096                         g_warning("MainWindow: color allocation %d failed\n", i);
2097         }
2098 #endif
2099
2100         debug_print("done.\n");
2101
2102         messageview->visible = prefs_common.msgview_visible;
2103
2104         main_window_set_widgets(mainwin, prefs_common.layout_mode);
2105
2106         g_signal_connect(G_OBJECT(window), "size_allocate",
2107                          G_CALLBACK(main_window_size_allocate_cb),
2108                          mainwin);
2109
2110         /* set menu items */
2111         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Encoding/"CS_AUTO, TRUE);
2112
2113         menuitem = NULL;
2114         switch (prefs_common.toolbar_style) {
2115         case TOOLBAR_NONE:
2116                 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/Hide");
2117                 break;
2118         case TOOLBAR_ICON:
2119                 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/IconOnly");
2120                 break;
2121         case TOOLBAR_TEXT:
2122                 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/TextOnly");
2123                 break;
2124         case TOOLBAR_BOTH:
2125                 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/TextBelowIcon");
2126                 break;
2127         case TOOLBAR_BOTH_HORIZ:
2128                 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/TextBesideIcon");
2129         }
2130         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), TRUE);
2131
2132         toolbar_set_style(mainwin->toolbar->toolbar, 
2133                           mainwin->handlebox, 
2134                           prefs_common.toolbar_style);
2135 #ifndef GENERIC_UMPC
2136         gtk_widget_hide(mainwin->hbox_stat);
2137         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/StatusBar");
2138         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
2139                                        prefs_common.show_statusbar);
2140 #endif  
2141         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/ColumnHeaders");
2142         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
2143                                        prefs_common.show_col_headers);
2144         /* set account selection menu */
2145         ac_menu = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Configuration/ChangeAccount");
2146         mainwin->ac_menu = ac_menu;
2147
2148         toolbar_main_set_sensitive(mainwin);
2149
2150         /* create actions menu */
2151         main_window_update_actions_menu(mainwin);
2152
2153         main_create_mailing_list_menu (mainwin, NULL);
2154
2155         /* attach accel groups to main window */
2156 #define ADD_MENU_ACCEL_GROUP_TO_WINDOW(menu,win)                        \
2157         gtk_window_add_accel_group                                      \
2158                 (GTK_WINDOW(win),                                       \
2159                  gtk_ui_manager_get_accel_group(gtkut_ui_manager()));   \
2160         g_signal_connect(G_OBJECT(gtk_ui_manager_get_accel_group(gtkut_ui_manager())), \
2161                         "accel_activate",                               \
2162                         G_CALLBACK(main_window_accel_activate), mainwin);
2163
2164         ADD_MENU_ACCEL_GROUP_TO_WINDOW(summaryview->popupmenu, mainwin->window);
2165         
2166         g_signal_connect(G_OBJECT(window), "window_state_event",
2167                          G_CALLBACK(mainwindow_state_event_cb), mainwin);
2168         g_signal_connect(G_OBJECT(window), "visibility_notify_event",
2169                          G_CALLBACK(mainwindow_visibility_event_cb), mainwin);
2170         gtk_widget_add_events(GTK_WIDGET(window), GDK_VISIBILITY_NOTIFY_MASK);
2171
2172         if (prefs_common.layout_mode == VERTICAL_LAYOUT ||
2173             prefs_common.layout_mode == SMALL_LAYOUT) {
2174                 summary_relayout(mainwin->summaryview); 
2175         }
2176         summary_update_unread(mainwin->summaryview, NULL);
2177         
2178         /* initialize views */
2179         folderview_init(folderview);
2180         summary_init(summaryview);
2181         messageview_init(messageview);
2182 #ifdef USE_GNUTLS
2183         sslcertwindow_register_hook();
2184 #endif
2185         mainwin->lock_count = 0;
2186         mainwin->menu_lock_count = 0;
2187         mainwin->cursor_count = 0;
2188
2189         mainwin->progressindicator_hook =
2190                 hooks_register_hook(PROGRESSINDICATOR_HOOKLIST, mainwindow_progressindicator_hook, mainwin);
2191
2192         if (!watch_cursor)
2193                 watch_cursor = gdk_cursor_new(GDK_WATCH);
2194         if (!hand_cursor)
2195                 hand_cursor = gdk_cursor_new(GDK_HAND2);
2196
2197         /* init work_offline */
2198         if (prefs_common.work_offline)
2199                 online_switch_clicked (GTK_BUTTON(online_switch), mainwin);
2200
2201         mainwindow_colorlabel_menu_create(mainwin, FALSE);
2202         mainwindow_tags_menu_create(mainwin, FALSE);
2203
2204         if (prefs_common.mainwin_fullscreen) {
2205                 cm_toggle_menu_set_active_full(mainwin->ui_manager, 
2206                         "Menu/View/FullScreen",
2207                         TRUE);
2208         }
2209         return mainwin;
2210 }
2211
2212 void main_window_update_actions_menu(MainWindow *mainwin)
2213 {
2214         action_update_mainwin_menu(mainwin->ui_manager, "/Menu/Tools/Actions", mainwin);
2215 }
2216
2217 void main_window_cursor_wait(MainWindow *mainwin)
2218 {
2219
2220         if (mainwin->cursor_count == 0) {
2221                 gdk_window_set_cursor(gtk_widget_get_window(mainwin->window), watch_cursor);
2222                 textview_cursor_wait(mainwin->messageview->mimeview->textview);
2223         }
2224         
2225         mainwin->cursor_count++;
2226
2227         gdk_flush();
2228 }
2229
2230 void main_window_cursor_normal(MainWindow *mainwin)
2231 {
2232         if (mainwin->cursor_count)
2233                 mainwin->cursor_count--;
2234
2235         if (mainwin->cursor_count == 0) {
2236                 gdk_window_set_cursor(gtk_widget_get_window(mainwin->window), NULL);
2237                 textview_cursor_normal(mainwin->messageview->mimeview->textview);
2238         }
2239         gdk_flush();
2240 }
2241
2242 /* lock / unlock the user-interface */
2243 void main_window_lock(MainWindow *mainwin)
2244 {
2245         if (mainwin->lock_count == 0 && mainwin->ac_button)
2246                 gtk_widget_set_sensitive(mainwin->ac_button, FALSE);
2247
2248         mainwin->lock_count++;
2249
2250         main_window_set_menu_sensitive(mainwin);
2251         toolbar_main_set_sensitive(mainwin);
2252 }
2253
2254 void main_window_unlock(MainWindow *mainwin)
2255 {
2256         if (mainwin->lock_count)
2257                 mainwin->lock_count--;
2258
2259         main_window_set_menu_sensitive(mainwin);
2260         toolbar_main_set_sensitive(mainwin);
2261
2262         if (mainwin->lock_count == 0 && mainwin->ac_button)
2263                 gtk_widget_set_sensitive(mainwin->ac_button, TRUE);
2264 }
2265
2266 static void main_window_menu_callback_block(MainWindow *mainwin)
2267 {
2268         mainwin->menu_lock_count++;
2269 }
2270
2271 static void main_window_menu_callback_unblock(MainWindow *mainwin)
2272 {
2273         if (mainwin->menu_lock_count)
2274                 mainwin->menu_lock_count--;
2275 }
2276
2277 static guint prefs_tag = 0;
2278
2279 void main_window_reflect_prefs_all(void)
2280 {
2281         main_window_reflect_prefs_all_real(FALSE);
2282 }
2283
2284 static gboolean reflect_prefs_timeout_cb(gpointer data) 
2285 {
2286         gboolean pixmap_theme_changed = GPOINTER_TO_INT(data);
2287         GList *cur;
2288         MainWindow *mainwin;
2289 #ifndef GENERIC_UMPC
2290         GtkWidget *pixmap;
2291 #endif
2292         for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2293                 mainwin = (MainWindow *)cur->data;
2294
2295                 main_window_show_cur_account(mainwin);
2296                 main_window_set_menu_sensitive(mainwin);
2297                 toolbar_main_set_sensitive(mainwin);
2298
2299                 /* pixmap themes */
2300                 if (pixmap_theme_changed) {
2301                         toolbar_update(TOOLBAR_MAIN, mainwin);
2302                         messageview_reflect_prefs_pixmap_theme();
2303                         compose_reflect_prefs_pixmap_theme();
2304                         folderview_reinit_fonts(mainwin->folderview);
2305                         summary_reflect_prefs_pixmap_theme(mainwin->summaryview);
2306                         foldersel_reflect_prefs_pixmap_theme();
2307 #ifndef USE_NEW_ADDRBOOK
2308                         addressbook_reflect_prefs_pixmap_theme();
2309 #endif
2310 #ifndef GENERIC_UMPC
2311                         pixmap = stock_pixmap_widget(mainwin->hbox_stat, STOCK_PIXMAP_ONLINE);
2312                         gtk_container_remove(GTK_CONTAINER(mainwin->online_switch), 
2313                                              mainwin->online_pixmap);
2314                         gtk_container_add (GTK_CONTAINER(mainwin->online_switch), pixmap);
2315                         gtk_widget_show(pixmap);
2316                         mainwin->online_pixmap = pixmap;
2317                         pixmap = stock_pixmap_widget(mainwin->hbox_stat, STOCK_PIXMAP_OFFLINE);
2318                         gtk_container_remove(GTK_CONTAINER(mainwin->offline_switch), 
2319                                              mainwin->offline_pixmap);
2320                         gtk_container_add (GTK_CONTAINER(mainwin->offline_switch), pixmap);
2321                         gtk_widget_show(pixmap);
2322                         mainwin->offline_pixmap = pixmap;
2323 #endif
2324                         hooks_invoke(THEME_CHANGED_HOOKLIST, NULL);
2325                 }
2326                 
2327                 headerview_set_font(mainwin->messageview->headerview);
2328                 headerview_set_visibility(mainwin->messageview->headerview,
2329                                           prefs_common.display_header_pane);
2330                 textview_reflect_prefs(mainwin->messageview->mimeview->textview);
2331                 folderview_reflect_prefs();
2332                 summary_reflect_prefs();
2333 #ifndef GENERIC_UMPC
2334                 summary_redisplay_msg(mainwin->summaryview);
2335 #endif
2336                 if (prefs_common.layout_mode == SMALL_LAYOUT) {
2337                         if (mainwin->in_folder) {
2338                                 mainwindow_enter_folder(mainwin);
2339                         } else {
2340                                 mainwindow_exit_folder(mainwin);
2341                         }
2342                 }
2343         }
2344         prefs_tag = 0;
2345         return FALSE;
2346 }
2347
2348 void main_window_reflect_prefs_all_now(void)
2349 {
2350         reflect_prefs_timeout_cb(GINT_TO_POINTER(FALSE));
2351 }
2352
2353 void main_window_reflect_prefs_custom_colors(MainWindow *mainwin)
2354 {
2355         GtkMenuShell *menu;
2356         GList *children, *cur;
2357
2358         /* re-create colorlabel submenu */
2359         menu = GTK_MENU_SHELL(mainwin->colorlabel_menu);
2360         cm_return_if_fail(menu != NULL);
2361
2362         /* clear items. get item pointers. */
2363         children = gtk_container_get_children(GTK_CONTAINER(menu));
2364         for (cur = children; cur != NULL && cur->data != NULL; cur = cur->next) {
2365                 g_signal_handlers_disconnect_matched
2366                          (gtk_ui_manager_get_accel_group(mainwin->ui_manager), 
2367                          G_SIGNAL_MATCH_DATA|G_SIGNAL_MATCH_FUNC,
2368                          0, 0, NULL, mainwin_accel_changed_cb, cur->data);
2369                 gtk_menu_item_set_submenu(GTK_MENU_ITEM(cur->data), NULL);
2370         }
2371         g_list_free(children);
2372         mainwindow_colorlabel_menu_create(mainwin, TRUE);
2373         summary_reflect_prefs_custom_colors(mainwin->summaryview);
2374         folderview_reinit_fonts(mainwin->folderview);
2375 }
2376
2377 static gint tags_tag = 0;
2378 static gboolean main_window_reflect_tags_changes_real(gpointer data)
2379 {
2380         GtkMenuShell *menu;
2381         GList *children, *cur;
2382         MainWindow *mainwin = (MainWindow *)data;
2383
2384         if (summary_is_locked(mainwin->summaryview)) {
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->threaded)
3318                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/HideReadThreads", FALSE);
3319         if (mainwin->summaryview->folder_item && mainwin->summaryview->folder_item->hide_read_msgs)
3320                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/HideReadThreads", FALSE);
3321         if (mainwin->summaryview->folder_item && mainwin->summaryview->folder_item->hide_read_threads)
3322                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/HideReadMessages", FALSE);
3323
3324         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Goto/PrevHistory",
3325                 messageview_nav_has_prev(mainwin->messageview));
3326         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Goto/NextHistory",
3327                 messageview_nav_has_next(mainwin->messageview));
3328
3329         if (mainwin->messageview 
3330         &&  mainwin->messageview->mimeview)
3331                 mimepart_selected = !mimeview_tree_is_empty(mainwin->messageview->mimeview);
3332
3333         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/File/SavePartAs", mimepart_selected);
3334         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Goto/NextPart", mimepart_selected);
3335         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Goto/PrevPart", mimepart_selected);
3336         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Part", mimepart_selected);
3337         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/CheckSignature", 
3338                                    mimepart_selected && mainwin->messageview->mimeview->signed_part);
3339
3340         main_window_menu_callback_unblock(mainwin);
3341 }
3342
3343 void main_create_mailing_list_menu (MainWindow *mainwin, MsgInfo *msginfo)
3344 {
3345         gint is_menu = 0;
3346         
3347         if (msginfo) 
3348                 is_menu = mailing_list_create_submenu (mainwin, msginfo);
3349         if (is_menu)
3350                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList", TRUE);
3351         else
3352                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList", FALSE);
3353 }
3354
3355 static gint mailing_list_create_submenu (MainWindow *mainwin, MsgInfo *msginfo)
3356 {
3357         gint menu_nb = 0;
3358         GtkWidget *menuitem;
3359         
3360         if (!msginfo || !msginfo->extradata) {
3361                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/Post", FALSE);
3362                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/Help", FALSE);
3363                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/Subscribe", FALSE);
3364                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/Unsubscribe", FALSE);
3365                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/ViewArchive", FALSE);
3366                 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/ContactOwner", FALSE);
3367                 return 0;
3368         }
3369                 
3370         /* Mailing list post */
3371         if (!strcmp2 (msginfo->extradata->list_post, "NO")) {
3372                 g_free(msginfo->extradata->list_post);
3373                 msginfo->extradata->list_post = g_strdup (_("No posting allowed"));
3374         }
3375         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/Post");
3376                 
3377         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_post);
3378  
3379         /* Mailing list help */
3380         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/Help");
3381         
3382         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_help);
3383
3384         /* Mailing list subscribe */
3385         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/Subscribe");
3386         
3387         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_subscribe);
3388                 
3389         /* Mailing list unsubscribe */
3390         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/Unsubscribe");
3391         
3392         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_unsubscribe);
3393         
3394         /* Mailing list view archive */
3395         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/ViewArchive");
3396         
3397         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_archive);
3398         
3399         /* Mailing list contact owner */
3400         menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/ContactOwner");
3401         
3402         menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_owner);
3403         
3404         return menu_nb;
3405 }
3406
3407 static gint mailing_list_populate_submenu (GtkWidget *menuitem, const gchar * list_header)
3408 {
3409         GtkWidget *item, *menu;
3410         const gchar *url_pt ;
3411         gchar url_decoded[BUFFSIZE];
3412         GList *children, *amenu;
3413         gint menu_nb = 0;
3414         
3415         menu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(menuitem));
3416         
3417         /* First delete old submenu */
3418         /* FIXME: we can optimize this, and only change/add/delete necessary items */
3419         children = gtk_container_get_children(GTK_CONTAINER(menu));
3420         for (amenu = children; amenu; amenu = amenu->next) {
3421                 item = GTK_WIDGET (amenu->data);
3422                 gtk_widget_destroy (item);
3423         }
3424         g_list_free(children);
3425         if (list_header) {
3426                 for (url_pt = list_header; url_pt && *url_pt;) {
3427                         get_url_part (&url_pt, url_decoded);
3428                         item = NULL;
3429                         if (!g_ascii_strncasecmp(url_decoded, "mailto:", 7)) {
3430                                 item = cm_menu_item_new_label_from_url ((url_decoded));
3431                                 g_signal_connect(G_OBJECT(item), "activate",
3432                                                  G_CALLBACK(mailing_list_compose),
3433                                                  NULL);
3434                         }
3435                         else if (!g_ascii_strncasecmp(url_decoded, "http:", 5) ||
3436                                  !g_ascii_strncasecmp(url_decoded, "https:",6)) {
3437
3438                                 item = cm_menu_item_new_label_from_url ((url_decoded));
3439                                 g_signal_connect(G_OBJECT(item), "activate",
3440                                                  G_CALLBACK(mailing_list_open_uri),
3441                                                  NULL);
3442                         } 
3443                         if (item) {
3444                                 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
3445                                 gtk_widget_show (item);
3446                                 menu_nb++;
3447                         }
3448                 }
3449         }
3450         if (menu_nb)
3451                 gtk_widget_set_sensitive (menuitem, TRUE);
3452         else
3453                 gtk_widget_set_sensitive (menuitem, FALSE);
3454                 
3455
3456         return menu_nb;
3457 }
3458
3459 static void get_url_part (const gchar **buffer, gchar *url_decoded)
3460 {
3461         gchar tmp[BUFFSIZE];
3462         const gchar *buf;
3463         gint i = 0;
3464         buf = *buffer;
3465         gboolean with_plus = TRUE;
3466
3467         if (buf == 0x00) {
3468                 *url_decoded = '\0';
3469                 *buffer = NULL;
3470                 return;
3471         }
3472         /* Ignore spaces, comments  and tabs () */
3473         for (;*buf == ' ' || *buf == '(' || *buf == '\t'; buf++)
3474                 if (*buf == '(')
3475                         for (;*buf != ')' && *buf != 0x00; buf++);
3476         
3477         /* First non space and non comment must be a < */
3478         if (*buf =='<' ) {
3479                 buf++;
3480                 if (!strncmp(buf, "mailto:", strlen("mailto:")))
3481                         with_plus = FALSE;
3482                 for (i = 0;
3483                      *buf != '>' && *buf != 0x00 && i < BUFFSIZE;
3484                         tmp[i++] = *(buf++));
3485                 buf++;
3486         }
3487         else  {
3488                 *buffer = NULL;
3489                 *url_decoded = '\0';
3490                 return;
3491         }
3492         
3493         *url_decoded = '\0';
3494         *buffer = NULL;
3495         
3496         if (i == BUFFSIZE) {
3497                 return;
3498         }
3499         tmp[i] = 0x00;
3500         decode_uri_with_plus (url_decoded, (const gchar *)tmp, with_plus);
3501
3502         /* Prepare the work for the next url in the list */
3503         /* after the closing bracket >, ignore space, comments and tabs */
3504         for (;buf && *buf && (*buf == ' ' || *buf == '(' || *buf == '\t'); buf++)
3505                 if (*buf == '(')
3506                         for (;*buf != ')' && *buf != 0x00; buf++);
3507                         
3508         if (!buf || !*buf) {
3509                 *buffer = NULL;
3510                 return;
3511         }
3512
3513         /* now first non space, non comment must be a comma */
3514         if (*buf != ',')
3515                 for (;*buf != 0x00; buf++);
3516         else
3517                 buf++;
3518         *buffer = buf;
3519 }
3520         
3521 static void mailing_list_compose (GtkWidget *w, gpointer *data)
3522 {
3523         const gchar *mailto;
3524         PrefsAccount *account = NULL;
3525         FolderItem   *folder_item = NULL;
3526
3527         mailto = gtk_label_get_text(GTK_LABEL (gtk_bin_get_child(GTK_BIN((w)))));
3528         if (mainwindow_get_mainwindow()) {
3529                 folder_item = mainwindow_get_mainwindow()->summaryview->folder_item;
3530                 if (folder_item && folder_item->prefs && folder_item->prefs->enable_default_account)
3531                         account = account_find_from_id(folder_item->prefs->default_account);
3532                 if (folder_item && !account)
3533                         account = account_find_from_item(folder_item);
3534         }
3535         if (mailto)
3536                 compose_new_with_folderitem(account, folder_item, mailto+7);
3537 }
3538  
3539  static void mailing_list_open_uri (GtkWidget *w, gpointer *data)
3540 {
3541  
3542         const gchar *mailto;
3543  
3544         mailto = gtk_label_get_text(GTK_LABEL (gtk_bin_get_child(GTK_BIN((w)))));
3545         if (mailto)
3546                 open_uri (mailto, prefs_common_get_uri_cmd());
3547
3548         
3549 static void fix_folderview_scroll(MainWindow *mainwin)
3550 {
3551         static gboolean fix_done = FALSE;
3552
3553         if (fix_done)
3554                 return;
3555
3556         gtk_widget_queue_resize(mainwin->folderview->ctree);
3557
3558         fix_done = TRUE;
3559 }
3560
3561 void main_window_popup(MainWindow *mainwin)
3562 {
3563         static gboolean first_start = TRUE;
3564
3565         if (!gtk_widget_get_visible(GTK_WIDGET(mainwin->window)))
3566                 main_window_show(mainwin);
3567
3568         if (prefs_common.mainwin_maximised)
3569                 gtk_window_maximize(GTK_WINDOW(mainwin->window));
3570
3571         if (first_start) {
3572                 first_start = FALSE;
3573         } else {
3574                 gtkut_window_popup(mainwin->window);
3575         }
3576
3577         if (prefs_common.layout_mode == SMALL_LAYOUT) {
3578                 if (mainwin->in_folder) {
3579                         mainwindow_enter_folder(mainwin);
3580                 } else {
3581                         mainwindow_exit_folder(mainwin);
3582                 }
3583         }
3584         fix_folderview_scroll(mainwin);
3585 }
3586
3587 void main_window_show(MainWindow *mainwin)
3588 {
3589         gtk_widget_show(mainwin->window);
3590         gtk_widget_show(mainwin->vbox_body);
3591 #ifndef GENERIC_UMPC
3592         gtk_window_move(GTK_WINDOW(mainwin->window),
3593                                  prefs_common.mainwin_x,
3594                                  prefs_common.mainwin_y);
3595         
3596         gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->folderview),
3597                              prefs_common.folderview_width,
3598                              prefs_common.folderview_height);
3599         gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->summaryview),
3600                              prefs_common.summaryview_width,
3601                              prefs_common.summaryview_height);
3602         gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->messageview),
3603                              prefs_common.msgview_width,
3604                              prefs_common.msgview_height);
3605 #endif
3606 }
3607
3608 void main_window_hide(MainWindow *mainwin)
3609 {
3610         main_window_get_size(mainwin);
3611         main_window_get_position(mainwin);
3612
3613         gtk_widget_hide(mainwin->window);
3614         gtk_widget_hide(mainwin->vbox_body);
3615 }
3616
3617 static void main_window_set_widgets(MainWindow *mainwin, LayoutType layout_mode)
3618 {
3619         GtkWidget *folderwin = NULL;
3620         GtkWidget *messagewin = NULL;
3621         GtkWidget *hpaned;
3622         GtkWidget *vpaned;
3623         GtkWidget *vbox_body = mainwin->vbox_body;
3624         gboolean first_set = (mainwin->hpaned == NULL);
3625         debug_print("Setting widgets... ");
3626
3627 #ifndef GENERIC_UMPC
3628         mainwin->messageview->statusbar = mainwin->statusbar;
3629         mainwin->messageview->statusbar_cid = mainwin->messageview_cid;
3630 #endif
3631         /* clean top-most container */
3632         if (mainwin->hpaned) {
3633                 if (gtk_widget_get_parent(mainwin->hpaned) == mainwin->vpaned)
3634                         gtk_widget_destroy(mainwin->vpaned);
3635                 else
3636                         gtk_widget_destroy(mainwin->hpaned);
3637         }
3638
3639         cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/ShowHide/MessageView", 
3640                 (layout_mode != WIDE_MSGLIST_LAYOUT && layout_mode != SMALL_LAYOUT));
3641         switch (layout_mode) {
3642         case VERTICAL_LAYOUT:
3643         case NORMAL_LAYOUT:
3644         case SMALL_LAYOUT:
3645                 hpaned = gtk_hpaned_new();
3646                 if (layout_mode == VERTICAL_LAYOUT)
3647                         vpaned = gtk_hpaned_new();
3648                 else
3649                         vpaned = gtk_vpaned_new();
3650                 gtk_box_pack_start(GTK_BOX(vbox_body), hpaned, TRUE, TRUE, 0);
3651                 gtk_paned_add1(GTK_PANED(hpaned),
3652                                GTK_WIDGET_PTR(mainwin->folderview));
3653                 gtk_widget_show(hpaned);
3654                 gtk_widget_queue_resize(hpaned);
3655
3656                 if (messageview_is_visible(mainwin->messageview)) {
3657                         gtk_paned_add2(GTK_PANED(hpaned), vpaned);
3658                         gtk_paned_pack1(GTK_PANED(vpaned),
3659                                        GTK_WIDGET_PTR(mainwin->summaryview), TRUE, TRUE);
3660                 } else {
3661                         gtk_paned_add2(GTK_PANED(hpaned),
3662                                        GTK_WIDGET_PTR(mainwin->summaryview));
3663                         g_object_ref(vpaned);
3664                 }
3665                 gtk_paned_add2(GTK_PANED(vpaned),
3666                                GTK_WIDGET_PTR(mainwin->messageview));
3667                 gtk_widget_show(vpaned);
3668                 if (layout_mode == SMALL_LAYOUT && first_set) {
3669                         mainwin_paned_show_first(GTK_PANED(hpaned));
3670                 }
3671                 gtk_widget_queue_resize(vpaned);
3672                 break;
3673         case WIDE_LAYOUT:
3674                 vpaned = gtk_vpaned_new();
3675                 hpaned = gtk_hpaned_new();
3676                 gtk_box_pack_start(GTK_BOX(vbox_body), vpaned, TRUE, TRUE, 0);
3677                 gtk_paned_add1(GTK_PANED(vpaned), hpaned);
3678
3679                 gtk_paned_add1(GTK_PANED(hpaned),
3680                                GTK_WIDGET_PTR(mainwin->folderview));
3681                 gtk_paned_add2(GTK_PANED(hpaned),
3682                                GTK_WIDGET_PTR(mainwin->summaryview));
3683
3684                 gtk_widget_show(hpaned);
3685                 gtk_widget_queue_resize(hpaned);
3686
3687                 if (messageview_is_visible(mainwin->messageview)) {
3688                         gtk_paned_add2(GTK_PANED(vpaned),
3689                                GTK_WIDGET_PTR(mainwin->messageview));   
3690                 } else {
3691                         g_object_ref(GTK_WIDGET_PTR(mainwin->messageview));
3692                 }
3693                 gtk_widget_show(vpaned);
3694                 gtk_widget_queue_resize(vpaned);
3695                 break;
3696         case WIDE_MSGLIST_LAYOUT:
3697                 vpaned = gtk_vpaned_new();
3698                 hpaned = gtk_hpaned_new();
3699                 gtk_box_pack_start(GTK_BOX(vbox_body), vpaned, TRUE, TRUE, 0);
3700
3701                 gtk_paned_add1(GTK_PANED(vpaned),
3702                                GTK_WIDGET_PTR(mainwin->summaryview));
3703                 gtk_paned_add1(GTK_PANED(hpaned),
3704                                GTK_WIDGET_PTR(mainwin->folderview));
3705
3706                 gtk_widget_show(hpaned);
3707                 gtk_widget_queue_resize(hpaned);
3708
3709                 if (messageview_is_visible(mainwin->messageview)) {
3710                         gtk_paned_add2(GTK_PANED(hpaned),
3711                                GTK_WIDGET_PTR(mainwin->messageview));   
3712                 } else {
3713                         g_object_ref(GTK_WIDGET_PTR(mainwin->messageview));
3714                 }
3715                 gtk_paned_add2(GTK_PANED(vpaned), hpaned);
3716
3717                 gtk_widget_show(vpaned);
3718                 gtk_widget_queue_resize(vpaned);
3719                 break;
3720         default:
3721                 g_warning("Unknown layout");
3722                 return;
3723         }
3724
3725         mainwin->hpaned = hpaned;
3726         mainwin->vpaned = vpaned;
3727
3728         if (layout_mode == SMALL_LAYOUT) {
3729                 if (mainwin->messageview->visible)
3730                         main_window_toggle_message_view(mainwin);
3731         } 
3732
3733         if (layout_mode == SMALL_LAYOUT && first_set) {
3734                 gtk_widget_realize(mainwin->window);
3735                 gtk_widget_realize(mainwin->folderview->ctree);
3736                 gtk_widget_realize(mainwin->summaryview->hbox);
3737                 gtk_widget_realize(mainwin->summaryview->hbox_l);
3738                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->folderview),
3739                                     prefs_common.folderview_width,
3740                                     prefs_common.folderview_height);
3741                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->summaryview),
3742                                     0,0);
3743                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->messageview),
3744                                     0,0);
3745                 gtk_widget_set_size_request(GTK_WIDGET(mainwin->window),
3746                                 prefs_common.mainwin_width,
3747                                 prefs_common.mainwin_height);
3748                 gtk_paned_set_position(GTK_PANED(mainwin->hpaned), 800);
3749         } else {
3750                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->folderview),
3751                                     prefs_common.folderview_width,
3752                                     prefs_common.folderview_height);
3753                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->summaryview),
3754                                     prefs_common.summaryview_width,
3755                                     prefs_common.summaryview_height);
3756                 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->messageview),
3757                                     prefs_common.msgview_width,
3758                                     prefs_common.msgview_height);
3759                 gtk_widget_set_size_request(GTK_WIDGET(mainwin->window),
3760                                     prefs_common.mainwin_width,
3761                                     prefs_common.mainwin_height);
3762         } 
3763         /* remove headerview if not in prefs */
3764         headerview_set_visibility(mainwin->messageview->headerview,
3765                                   prefs_common.display_header_pane);
3766
3767         if (messageview_is_visible(mainwin->messageview))
3768                 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
3769                               GTK_ARROW_DOWN, GTK_SHADOW_OUT);
3770         else
3771                 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
3772                               GTK_ARROW_UP, GTK_SHADOW_OUT);
3773
3774         gtk_window_move(GTK_WINDOW(mainwin->window),
3775                         prefs_common.mainwin_x,
3776                         prefs_common.mainwin_y);
3777
3778         gtk_widget_queue_resize(vbox_body);
3779         gtk_widget_queue_resize(mainwin->vbox);
3780         gtk_widget_queue_resize(mainwin->window);
3781         /* CLAWS: previous "gtk_widget_show_all" makes noticeview
3782          * and mimeview icon list/ctree lose track of their visibility states */
3783         if (!noticeview_is_visible(mainwin->messageview->noticeview)) 
3784                 gtk_widget_hide(GTK_WIDGET_PTR(mainwin->messageview->noticeview));
3785         if (!noticeview_is_visible(mainwin->messageview->mimeview->siginfoview)) 
3786                 gtk_widget_hide(GTK_WIDGET_PTR(mainwin->messageview->mimeview->siginfoview));
3787         if (mainwin->messageview->mimeview->ctree_mode)
3788                 gtk_widget_hide(mainwin->messageview->mimeview->icon_mainbox);
3789         else 
3790                 gtk_widget_hide(mainwin->messageview->mimeview->ctree_mainbox);
3791
3792         prefs_common.layout_mode = layout_mode;
3793
3794         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/ShowHide/MessageView", 
3795                  messageview_is_visible(mainwin->messageview));
3796
3797 #ifndef GENERIC_UMPC
3798         switch (prefs_common.layout_mode) {
3799         case NORMAL_LAYOUT:
3800                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/Standard", TRUE);
3801                 break;
3802         case VERTICAL_LAYOUT:
3803                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/ThreeColumns", TRUE);
3804                 break;
3805         case WIDE_LAYOUT:
3806                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/WideMessage", TRUE);
3807                 break;
3808         case WIDE_MSGLIST_LAYOUT:
3809                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/WideMessageList", TRUE);
3810                 break;
3811         case SMALL_LAYOUT:
3812                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/SmallScreen", TRUE);
3813                 break;
3814         }
3815 #endif
3816
3817         if (folderwin) {
3818                 g_signal_connect
3819                         (G_OBJECT(folderwin), "size_allocate",
3820                          G_CALLBACK(folder_window_size_allocate_cb),
3821                          mainwin);
3822         }
3823         if (messagewin) {
3824                 g_signal_connect
3825                         (G_OBJECT(messagewin), "size_allocate",
3826                          G_CALLBACK(message_window_size_allocate_cb),
3827                          mainwin);
3828         }
3829
3830         debug_print("done.\n");
3831 }
3832
3833 void main_window_destroy_all(void)
3834 {
3835         while (mainwin_list != NULL) {
3836                 MainWindow *mainwin = (MainWindow*)mainwin_list->data;
3837
3838                 /* free toolbar stuff */
3839                 toolbar_clear_list(TOOLBAR_MAIN);
3840                 TOOLBAR_DESTROY_ACTIONS(mainwin->toolbar->action_list);
3841                 TOOLBAR_DESTROY_ITEMS(mainwin->toolbar->item_list);
3842
3843                 summaryview_destroy(mainwin->summaryview);
3844                 mainwin->folderview->mainwin = NULL;
3845                 mainwin->summaryview->mainwin = NULL;
3846                 mainwin->messageview->mainwin = NULL;
3847
3848                 g_free(mainwin->toolbar);
3849                 g_free(mainwin);
3850                 
3851                 mainwin_list = g_list_remove(mainwin_list, mainwin);
3852         }
3853         g_list_free(mainwin_list);
3854         mainwin_list = NULL;
3855 }
3856
3857 static void toolbar_child_attached(GtkWidget *widget, GtkWidget *child,
3858                                    gpointer data)
3859 {
3860         gtk_widget_set_size_request(child, 1, -1);
3861 }
3862
3863 static void toolbar_child_detached(GtkWidget *widget, GtkWidget *child,
3864                                    gpointer data)
3865 {
3866         gtk_widget_set_size_request(child, -1, -1);
3867 }
3868 #ifndef GENERIC_UMPC
3869 static gboolean ac_label_button_pressed(GtkWidget *widget, GdkEventButton *event,
3870                                     gpointer data)
3871 {
3872         MainWindow *mainwin = (MainWindow *)data;
3873         GtkWidget *menu = NULL;
3874         
3875         if (!event) return FALSE;
3876
3877         gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
3878         
3879         menu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(mainwin->ac_menu));
3880
3881         gtk_menu_popup(GTK_MENU(menu), NULL, NULL,
3882                        menu_button_position, widget,
3883                        event->button, event->time);
3884
3885         return TRUE;
3886 }
3887 #endif
3888 static gint main_window_close_cb(GtkWidget *widget, GdkEventAny *event,
3889                                  gpointer data)
3890 {
3891         MainWindow *mainwin = (MainWindow *)data;
3892         gboolean close_allowed = TRUE;
3893
3894         hooks_invoke(MAIN_WINDOW_CLOSE, &close_allowed);
3895
3896         if (close_allowed && mainwin->lock_count == 0)
3897                 app_exit_cb(NULL, data);
3898
3899         return TRUE;
3900 }
3901
3902 static void main_window_size_allocate_cb(GtkWidget *widget,
3903                                          GtkAllocation *allocation,
3904                                          gpointer data)
3905 {
3906         MainWindow *mainwin = (MainWindow *)data;
3907         main_window_get_size(mainwin);
3908 }
3909
3910 static void folder_window_size_allocate_cb(GtkWidget *widget,
3911                                            GtkAllocation *allocation,
3912                                            gpointer data)
3913 {
3914         MainWindow *mainwin = (MainWindow *)data;
3915
3916         main_window_get_size(mainwin);
3917 }
3918
3919 static void message_window_size_allocate_cb(GtkWidget *widget,
3920                                             GtkAllocation *allocation,
3921                                             gpointer data)
3922 {
3923         MainWindow *mainwin = (MainWindow *)data;
3924
3925         main_window_get_size(mainwin);
3926 }
3927
3928 static void add_mailbox_cb(GtkAction *action, gpointer data)
3929 {
3930         MainWindow *mainwin = (MainWindow *)data;
3931         main_window_add_mailbox(mainwin);
3932 }
3933
3934 static void update_folderview_cb(GtkAction *action, gpointer data)
3935 {
3936         MainWindow *mainwin = (MainWindow *)data;
3937         summary_show(mainwin->summaryview, NULL);
3938         folderview_check_new_all();
3939 }
3940
3941 static void foldersort_cb(GtkAction *action, gpointer data)
3942 {
3943         foldersort_open();
3944 }
3945
3946 static void import_mbox_cb(GtkAction *action, gpointer data)
3947 {
3948         MainWindow *mainwin = (MainWindow *)data;
3949         /* only notify if import has failed */
3950         if (import_mbox(mainwin->summaryview->folder_item) == -1) {
3951                 alertpanel_error(_("Mbox import has failed."));
3952         }
3953 }
3954
3955 static void export_mbox_cb(GtkAction *action, gpointer data)
3956 {
3957         MainWindow *mainwin = (MainWindow *)data;
3958         /* only notify if export has failed */
3959         if (export_mbox(mainwin->summaryview->folder_item) == -1) {
3960                 alertpanel_error(_("Export to mbox has failed."));
3961         }
3962 }
3963
3964 static void export_list_mbox_cb(GtkAction *action, gpointer data)
3965 {
3966         MainWindow *mainwin = (MainWindow *)data;
3967         /* only notify if export has failed */
3968         if (summaryview_export_mbox_list(mainwin->summaryview) == -1) {
3969                 alertpanel_error(_("Export to mbox has failed."));
3970         }
3971 }
3972
3973 static void empty_trash_cb(GtkAction *action, gpointer data)
3974 {
3975         MainWindow *mainwin = (MainWindow *)data;
3976         main_window_empty_trash(mainwin, TRUE, FALSE);
3977 }
3978
3979 static void save_as_cb(GtkAction *action, gpointer data)
3980 {
3981         MainWindow *mainwin = (MainWindow *)data;
3982         summary_save_as(mainwin->summaryview);
3983 }
3984
3985 static void print_cb(GtkAction *action, gpointer data)
3986 {
3987         MainWindow *mainwin = (MainWindow *)data;
3988         summary_print(mainwin->summaryview);
3989 }
3990
3991 static void page_setup_cb(GtkAction *action, gpointer data)
3992 {
3993         MainWindow *mainwin = (MainWindow *)data;
3994         GtkWindow *win;
3995
3996         win = (mainwin ? GTK_WINDOW(mainwin->window) : NULL);
3997
3998         printing_page_setup(win);
3999 }
4000
4001 static void app_exit_cb(GtkAction *action, gpointer data)
4002 {
4003         MainWindow *mainwin = (MainWindow *)data;
4004         if (prefs_common.clean_on_exit) {
4005                 if (!main_window_empty_trash(mainwin, prefs_common.ask_on_clean, TRUE))
4006                         return;
4007         }
4008
4009         if (prefs_common.confirm_on_exit) {
4010                 if (alertpanel(_("Exit"), _("Exit Claws Mail?"),
4011                                GTK_STOCK_CANCEL, GTK_STOCK_QUIT,  NULL)
4012                     != G_ALERTALTERNATE)
4013                         return;
4014                 manage_window_focus_in(mainwin->window, NULL, NULL);
4015         }
4016
4017         app_will_exit(NULL, mainwin);
4018 }
4019
4020 static void search_cb(GtkAction *action, gpointer data)
4021 {
4022         MainWindow *mainwin = (MainWindow *)data;
4023         message_search(mainwin->messageview);
4024 }
4025
4026 static void search_folder_cb(GtkAction *action, gpointer data)
4027 {
4028         MainWindow *mainwin = (MainWindow *)data;
4029         FolderItem *item = mainwin->summaryview->folder_item;
4030         cm_return_if_fail(item != NULL);
4031         summary_search(mainwin->summaryview);
4032 }
4033
4034 static void mainwindow_quicksearch(GtkAction *action, gpointer data)
4035 {
4036         MainWindow *mainwin = (MainWindow *)data;
4037         summaryview_activate_quicksearch(mainwin->summaryview, TRUE);
4038 }
4039
4040 static void toggle_message_cb(GtkAction *action, gpointer data)
4041 {
4042         MainWindow *mainwin = (MainWindow *)data;
4043         gboolean active;
4044
4045         active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
4046
4047         if (active != messageview_is_visible(mainwin->messageview))
4048                 summary_toggle_view(mainwin->summaryview);
4049 }
4050
4051 static void toggle_toolbar_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4052 {
4053         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4054         MainWindow *mainwin = (MainWindow *)data;
4055         toolbar_toggle(value, mainwin);
4056 }
4057
4058 static void main_window_reply_cb(GtkAction *gaction, gpointer data)
4059 {
4060         MainWindow *mainwin = (MainWindow *)data;
4061         MessageView *msgview = (MessageView*)mainwin->messageview;
4062         GSList *msginfo_list = NULL;
4063         gint action = COMPOSE_REPLY;
4064         const gchar *a_name = gtk_action_get_name(gaction);
4065
4066         DO_ACTION("Message/Reply", COMPOSE_REPLY);
4067         DO_ACTION("Message/ReplyTo/All", COMPOSE_REPLY_TO_ALL);
4068         DO_ACTION("Message/ReplyTo/Sender", COMPOSE_REPLY_TO_SENDER);
4069         DO_ACTION("Message/ReplyTo/List", COMPOSE_REPLY_TO_LIST);
4070         DO_ACTION("Message/Forward", COMPOSE_FORWARD_INLINE);
4071         DO_ACTION("Message/ForwardAtt", COMPOSE_FORWARD_AS_ATTACH);
4072         DO_ACTION("Message/Redirect", COMPOSE_REDIRECT);
4073         DO_ACTION("Message/FollowupReply", COMPOSE_FOLLOWUP_AND_REPLY_TO);
4074
4075         cm_return_if_fail(msgview != NULL);
4076
4077         msginfo_list = summary_get_selection(mainwin->summaryview);
4078         cm_return_if_fail(msginfo_list != NULL);
4079         compose_reply_from_messageview(msgview, msginfo_list, action);
4080         g_slist_free(msginfo_list);
4081 }
4082
4083 static void toggle_col_headers_cb(GtkAction *gaction, gpointer data)
4084 {
4085         MainWindow *mainwin = (MainWindow *)data;
4086         FolderView *folderview = mainwin->folderview;
4087         SummaryView *summaryview = mainwin->summaryview;
4088         MimeView *mimeview = mainwin->messageview->mimeview;
4089
4090         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (gaction))) {
4091                 gtk_cmclist_column_titles_show(GTK_CMCLIST(folderview->ctree));
4092                 gtk_cmclist_column_titles_show(GTK_CMCLIST(summaryview->ctree));
4093                 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(mimeview->ctree), TRUE);
4094                 prefs_common.show_col_headers = TRUE;
4095         } else {
4096                 gtk_cmclist_column_titles_hide(GTK_CMCLIST(folderview->ctree));
4097                 gtk_cmclist_column_titles_hide(GTK_CMCLIST(summaryview->ctree));
4098                 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(mimeview->ctree), FALSE);               
4099                 prefs_common.show_col_headers = FALSE;
4100         }
4101 }
4102
4103 #ifndef GENERIC_UMPC
4104 static void toggle_statusbar_cb(GtkAction *gaction, gpointer data)
4105 {
4106         MainWindow *mainwin = (MainWindow *)data;
4107         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (gaction))) {
4108                 gtk_widget_show(mainwin->hbox_stat);
4109                 prefs_common.show_statusbar = TRUE;
4110         } else {
4111                 gtk_widget_hide(mainwin->hbox_stat);
4112                 prefs_common.show_statusbar = FALSE;
4113         }
4114 }
4115
4116 static void set_layout_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4117 {
4118         MainWindow *mainwin = (MainWindow *)data;
4119         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4120         LayoutType layout_mode = value;
4121         LayoutType old_layout_mode = prefs_common.layout_mode;
4122         if (mainwin->menu_lock_count) {
4123                 return;
4124         }
4125         if (!gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current))) {
4126                 return;
4127         }
4128         
4129         if (layout_mode == prefs_common.layout_mode) {
4130                 return;
4131         }
4132         
4133         if (!mainwin->messageview->visible && layout_mode != SMALL_LAYOUT)
4134                 main_window_toggle_message_view(mainwin);
4135         else if (mainwin->messageview->visible && layout_mode == SMALL_LAYOUT)
4136                 main_window_toggle_message_view(mainwin);
4137
4138         main_window_separation_change(mainwin, layout_mode);
4139         mainwindow_reset_paned(GTK_PANED(mainwin->vpaned));
4140         if (old_layout_mode == SMALL_LAYOUT && layout_mode != SMALL_LAYOUT) {
4141                 mainwindow_reset_paned(GTK_PANED(mainwin->hpaned));
4142         }
4143         if (old_layout_mode != SMALL_LAYOUT && layout_mode == SMALL_LAYOUT) {
4144                 mainwin_paned_show_first(GTK_PANED(mainwin->hpaned));
4145                 mainwindow_exit_folder(mainwin);
4146         }
4147         summary_relayout(mainwin->summaryview); 
4148         summary_update_unread(mainwin->summaryview, NULL);
4149 }
4150 #endif
4151
4152 void main_window_toggle_work_offline (MainWindow *mainwin, gboolean offline,
4153                                         gboolean ask_sync)
4154 {
4155         static gboolean switching = FALSE;
4156
4157         if (switching)
4158                 return;
4159
4160         switching = TRUE;
4161
4162         offline_ask_sync = ask_sync;
4163         if (offline)
4164                 online_switch_clicked (GTK_BUTTON(mainwin->online_switch), mainwin);
4165         else
4166                 online_switch_clicked (GTK_BUTTON(mainwin->offline_switch), mainwin);
4167         offline_ask_sync = TRUE;
4168
4169         switching = FALSE;
4170 }
4171
4172 static void toggle_work_offline_cb (GtkAction *action, gpointer data)
4173 {
4174         MainWindow *mainwin = (MainWindow *)data;
4175         main_window_toggle_work_offline(mainwin, gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)), TRUE);
4176 }
4177
4178 static gboolean any_folder_want_synchronise(void)
4179 {
4180         GList *folderlist = folder_get_list();
4181
4182         /* see if there are synchronised folders */
4183         for (; folderlist; folderlist = folderlist->next) {
4184                 Folder *folder = (Folder *)folderlist->data;
4185                 if (folder_want_synchronise(folder)) {
4186                         return TRUE;
4187                 }
4188         }
4189         
4190         return FALSE;
4191 }
4192
4193 static void mainwindow_check_synchronise(MainWindow *mainwin, gboolean ask)
4194 {
4195         
4196         if (!any_folder_want_synchronise())
4197                 return;
4198
4199         if (offline_ask_sync && ask && alertpanel(_("Folder synchronisation"),
4200                         _("Do you want to synchronise your folders now?"),
4201                         GTK_STOCK_CANCEL, _("+_Synchronise"), NULL) != G_ALERTALTERNATE)
4202                 return;
4203         
4204         if (offline_ask_sync)
4205                 folder_synchronise(NULL);
4206 }
4207
4208 static void online_switch_clicked (GtkButton *btn, gpointer data) 
4209 {
4210         MainWindow *mainwin;
4211         gboolean have_connectivity;
4212
4213 #ifdef HAVE_NETWORKMANAGER_SUPPORT
4214         have_connectivity = networkmanager_is_online(NULL); 
4215 #else
4216         have_connectivity = TRUE;
4217 #endif
4218
4219         mainwin = (MainWindow *) data;
4220         
4221         cm_return_if_fail(mainwin != NULL);
4222         
4223         if (btn == GTK_BUTTON(mainwin->online_switch)) {
4224 #ifndef GENERIC_UMPC
4225                 gtk_widget_hide (mainwin->online_switch);
4226                 gtk_widget_show (mainwin->offline_switch);
4227 #endif
4228                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/File/OfflineMode", TRUE);
4229
4230                 inc_autocheck_timer_remove();
4231                         
4232                 /* go offline */
4233                 if (prefs_common.work_offline)
4234                         return;
4235
4236                 if(have_connectivity)
4237                         mainwindow_check_synchronise(mainwin, TRUE);
4238                 prefs_common.work_offline = TRUE;
4239                 imap_disconnect_all(have_connectivity);
4240                 nntp_disconnect_all(have_connectivity);
4241                 hooks_invoke(OFFLINE_SWITCH_HOOKLIST, NULL);
4242         } else {
4243                 /*go online */
4244                 if (!prefs_common.work_offline)
4245                         return;
4246 #ifndef GENERIC_UMPC
4247                 gtk_widget_hide (mainwin->offline_switch);
4248                 gtk_widget_show (mainwin->online_switch);
4249 #endif
4250                 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/File/OfflineMode", FALSE);
4251                 prefs_common.work_offline = FALSE;
4252                 inc_autocheck_timer_set();
4253                 refresh_resolvers();
4254                 hooks_invoke(OFFLINE_SWITCH_HOOKLIST, NULL);
4255         }
4256 }
4257
4258 static void addressbook_open_cb(GtkAction *action, gpointer data)
4259 {
4260 #ifndef USE_NEW_ADDRBOOK
4261         addressbook_open(NULL);
4262 #else
4263         GError* error = NULL;
4264         
4265         addressbook_dbus_open(FALSE, &error);
4266         if (error) {
4267                 g_warning("Failed to open address book");
4268                 g_warning("%s", error->message);
4269                 g_error_free(error);
4270         }
4271 #endif
4272 }
4273
4274 static void log_window_show_cb(GtkAction *action, gpointer data)
4275 {
4276         MainWindow *mainwin = (MainWindow *)data;
4277         log_window_show(mainwin->logwin);
4278 }
4279
4280 static void filtering_debug_window_show_cb(GtkAction *action, gpointer data)
4281 {
4282         MainWindow *mainwin = (MainWindow *)data;
4283         log_window_show(mainwin->filtering_debugwin);
4284 }
4285
4286 static void inc_cancel_cb(GtkAction *action, gpointer data)
4287 {
4288         inc_cancel_all();
4289         imap_cancel_all();
4290 }
4291
4292 static void send_cancel_cb(GtkAction *action, gpointer data)
4293 {
4294         send_cancel();
4295 }
4296
4297 static void move_to_cb(GtkAction *action, gpointer data)
4298 {
4299         MainWindow *mainwin = (MainWindow *)data;
4300         summary_move_to(mainwin->summaryview);
4301 }
4302
4303 static void copy_to_cb(GtkAction *action, gpointer data)
4304 {
4305         MainWindow *mainwin = (MainWindow *)data;
4306         summary_copy_to(mainwin->summaryview);
4307 }
4308
4309 static void delete_cb(GtkAction *action, gpointer data)
4310 {
4311         MainWindow *mainwin = (MainWindow *)data;
4312         summary_delete(mainwin->summaryview);
4313 }
4314
4315 static void delete_trash_cb(GtkAction *action, gpointer data)
4316 {
4317         MainWindow *mainwin = (MainWindow *)data;
4318         summary_delete_trash(mainwin->summaryview);
4319 }
4320
4321 static void cancel_cb(GtkAction *action, gpointer data)
4322 {
4323         MainWindow *mainwin = (MainWindow *)data;
4324         summary_cancel(mainwin->summaryview);
4325 }
4326
4327 static void open_msg_cb(GtkAction *action, gpointer data)
4328 {
4329         MainWindow *mainwin = (MainWindow *)data;
4330         summary_open_msg(mainwin->summaryview);
4331 }
4332
4333 static void view_source_cb(GtkAction *action, gpointer data)
4334 {
4335         MainWindow *mainwin = (MainWindow *)data;
4336         summary_view_source(mainwin->summaryview);
4337 }
4338
4339 static void show_all_header_cb(GtkAction *action, gpointer data)
4340 {
4341         MainWindow *mainwin = (MainWindow *)data;
4342         if (mainwin->menu_lock_count) return;
4343         prefs_common.show_all_headers = 
4344                         gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
4345         summary_display_msg_selected(mainwin->summaryview,
4346                                      gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)));
4347 }
4348
4349 static void toggle_fullscreen_cb(GtkAction *action, gpointer data)
4350 {
4351         MainWindow *mainwin = (MainWindow *)data;
4352         if (mainwin->menu_lock_count) return;
4353         if (!gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action))) {
4354                 gtk_window_unfullscreen(GTK_WINDOW(mainwin->window));
4355                 prefs_common.mainwin_fullscreen = FALSE;
4356         }
4357         else {
4358                 prefs_common.mainwin_fullscreen = TRUE;
4359                 gtk_window_fullscreen(GTK_WINDOW(mainwin->window));
4360         }
4361 }
4362
4363 static void hide_quotes_cb(GtkAction *action, gpointer data)
4364 {
4365         MainWindow *mainwin = (MainWindow *)data;
4366
4367         if (mainwin->menu_lock_count) return;
4368
4369         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action))) {
4370                 const gchar *a_name = gtk_action_get_name(GTK_ACTION(action));
4371                 if (!strcmp(a_name, "View/Quotes/CollapseAll")) prefs_common.hide_quotes = 1;
4372                 else if (!strcmp(a_name, "View/Quotes/Collapse2")) prefs_common.hide_quotes = 2;
4373                 else if (!strcmp(a_name, "View/Quotes/Collapse3")) prefs_common.hide_quotes = 3;
4374         } else
4375                 prefs_common.hide_quotes = 0;
4376
4377         mainwin->menu_lock_count++;
4378         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/CollapseAll", (prefs_common.hide_quotes == 1));
4379         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/Collapse2", (prefs_common.hide_quotes == 2));
4380         cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/Collapse3", (prefs_common.hide_quotes == 3));
4381         mainwin->menu_lock_count--;
4382
4383         summary_redisplay_msg(mainwin->summaryview);
4384 }
4385
4386 static void mark_cb(GtkAction *action, gpointer data)
4387 {
4388         MainWindow *mainwin = (MainWindow *)data;
4389         summary_mark(mainwin->summaryview);
4390 }
4391
4392 static void unmark_cb(GtkAction *action, gpointer data)
4393 {
4394         MainWindow *mainwin = (MainWindow *)data;
4395         summary_unmark(mainwin->summaryview);
4396 }
4397
4398 static void mark_as_unread_cb(GtkAction *action, gpointer data)
4399 {
4400         MainWindow *mainwin = (MainWindow *)data;
4401         summary_mark_as_unread(mainwin->summaryview);
4402 }
4403
4404 static void mark_as_read_cb(GtkAction *action, gpointer data)
4405 {
4406         MainWindow *mainwin = (MainWindow *)data;
4407         summary_mark_as_read(mainwin->summaryview);
4408 }
4409
4410 static void mark_all_read_cb(GtkAction *action, gpointer data)
4411 {
4412         MainWindow *mainwin = (MainWindow *)data;
4413         summary_mark_all_read(mainwin->summaryview);
4414 }
4415
4416 static void mark_as_spam_cb(GtkAction *action, gpointer data)
4417 {
4418         MainWindow *mainwin = (MainWindow *)data;
4419         summary_mark_as_spam(mainwin->summaryview, TRUE, NULL);
4420 }
4421
4422 static void mark_as_ham_cb(GtkAction *action, gpointer data)
4423 {
4424         MainWindow *mainwin = (MainWindow *)data;
4425         summary_mark_as_spam(mainwin->summaryview, FALSE, NULL);
4426 }
4427
4428 static void ignore_thread_cb(GtkAction *action, gpointer data)
4429 {
4430         MainWindow *mainwin = (MainWindow *)data;
4431         summary_ignore_thread(mainwin->summaryview);
4432 }
4433
4434 static void unignore_thread_cb(GtkAction *action, gpointer data)
4435 {
4436         MainWindow *mainwin = (MainWindow *)data;
4437         summary_unignore_thread(mainwin->summaryview);
4438 }
4439
4440 static void watch_thread_cb(GtkAction *action, gpointer data)
4441 {
4442         MainWindow *mainwin = (MainWindow *)data;
4443         summary_watch_thread(mainwin->summaryview);
4444 }
4445
4446 static void unwatch_thread_cb(GtkAction *action, gpointer data)
4447 {
4448         MainWindow *mainwin = (MainWindow *)data;
4449         summary_unwatch_thread(mainwin->summaryview);
4450 }
4451
4452 static void lock_msgs_cb(GtkAction *action, gpointer data)
4453 {
4454         MainWindow *mainwin = (MainWindow *)data;
4455         summary_msgs_lock(mainwin->summaryview);
4456 }
4457
4458 static void unlock_msgs_cb(GtkAction *action, gpointer data)
4459 {
4460         MainWindow *mainwin = (MainWindow *)data;
4461         summary_msgs_unlock(mainwin->summaryview);
4462 }
4463
4464
4465 static void reedit_cb(GtkAction *action, gpointer data)
4466 {
4467         MainWindow *mainwin = (MainWindow *)data;
4468         summary_reedit(mainwin->summaryview);
4469 }
4470
4471 static void open_urls_cb(GtkAction *action, gpointer data)
4472 {
4473         MainWindow *mainwin = (MainWindow *)data;
4474         if (!mainwin->summaryview->displayed && mainwin->summaryview->selected) {
4475                 summary_display_msg_selected(mainwin->summaryview, 
4476                                              prefs_common.show_all_headers);
4477         }
4478         messageview_list_urls(mainwin->messageview);
4479 }
4480
4481 static void add_address_cb(GtkAction *action, gpointer data)
4482 {
4483         MainWindow *mainwin = (MainWindow *)data;
4484         summary_add_address(mainwin->summaryview);
4485 }
4486
4487 static void set_charset_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4488 {
4489         MainWindow *mainwin = (MainWindow *)data;
4490         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4491         const gchar *str;
4492
4493         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current))) {
4494                 str = conv_get_charset_str((CharSet)value);
4495                 
4496                 g_free(mainwin->messageview->forced_charset);
4497                 mainwin->messageview->forced_charset = str ? g_strdup(str) : NULL;
4498                 procmime_force_charset(str);
4499                 
4500                 summary_redisplay_msg(mainwin->summaryview);
4501                 
4502                 debug_print("forced charset: %s\n", str ? str : "Auto-Detect");
4503         }
4504 }
4505
4506 static void set_decode_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4507 {
4508         MainWindow *mainwin = (MainWindow *)data;
4509         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4510         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current))) {
4511                 mainwin->messageview->forced_encoding = (EncodingType)value;
4512                 
4513                 summary_redisplay_msg(mainwin->summaryview);
4514                 
4515                 debug_print("forced encoding: %d\n", value);
4516         }
4517 }
4518
4519 static void hide_read_messages (GtkAction *action, gpointer data)
4520 {
4521         MainWindow *mainwin = (MainWindow *)data;
4522         GtkWidget *menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/HideReadMessages");
4523         if (!mainwin->summaryview->folder_item
4524             || g_object_get_data(G_OBJECT(menuitem), "dont_toggle"))
4525                 return;
4526         summary_toggle_show_read_messages(mainwin->summaryview);
4527 }
4528
4529 static void hide_del_messages (GtkAction *action, gpointer data)
4530 {
4531         MainWindow *mainwin = (MainWindow *)data;
4532         GtkWidget *menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/HideDelMessages");
4533         if (!mainwin->summaryview->folder_item
4534             || g_object_get_data(G_OBJECT(menuitem), "dont_toggle"))
4535                 return;
4536         summary_toggle_show_del_messages(mainwin->summaryview);
4537 }
4538
4539 static void hide_read_threads (GtkAction *action, gpointer data)
4540 {
4541         MainWindow *mainwin = (MainWindow *)data;
4542         GtkWidget *menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/HideReadThreads");
4543         if (!mainwin->summaryview->folder_item
4544             || g_object_get_data(G_OBJECT(menuitem), "dont_toggle"))
4545                 return;
4546         summary_toggle_show_read_threads(mainwin->summaryview);
4547 }
4548
4549 static void thread_cb(GtkAction *action, gpointer data)
4550 {
4551         MainWindow *mainwin = (MainWindow *)data;
4552         gboolean threaded = FALSE;
4553         if (mainwin->menu_lock_count) return;
4554         if (!mainwin->summaryview->folder_item) return;
4555
4556         threaded = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
4557
4558         mainwin->summaryview->folder_item->threaded = threaded; 
4559
4560         mainwin->summaryview->threaded = threaded;
4561
4562         summary_show(mainwin->summaryview, 
4563                         mainwin->summaryview->folder_item);
4564 }
4565
4566 static void expand_threads_cb(GtkAction *action, gpointer data)
4567 {
4568         MainWindow *mainwin = (MainWindow *)data;
4569         summary_expand_threads(mainwin->summaryview);
4570 }
4571
4572 static void collapse_threads_cb(GtkAction *action, gpointer data)
4573 {
4574         MainWindow *mainwin = (MainWindow *)data;
4575         summary_collapse_threads(mainwin->summaryview);
4576 }
4577
4578 static void set_summary_display_item_cb(GtkAction *action, gpointer data)
4579 {
4580         prefs_summary_column_open();
4581 }
4582
4583 static void set_folder_display_item_cb(GtkAction *action, gpointer data)
4584 {
4585         prefs_folder_column_open();
4586 }
4587
4588 static void sort_summary_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4589 {
4590         MainWindow *mainwin = (MainWindow *)data;
4591         FolderItem *item = mainwin->summaryview->folder_item;
4592         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4593
4594         if (mainwin->menu_lock_count) return;
4595
4596         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current)) && item) {
4597                 summary_sort(mainwin->summaryview, (FolderSortKey)value,
4598                              item->sort_type);
4599                 item->sort_key = value;
4600         }
4601 }
4602
4603 static void sort_summary_type_cb(GtkAction *gaction, GtkRadioAction *current, gpointer data)
4604 {
4605         MainWindow *mainwin = (MainWindow *)data;
4606         FolderItem *item = mainwin->summaryview->folder_item;
4607         gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4608
4609         if (mainwin->menu_lock_count) return;
4610
4611         if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current)) && item)
4612                 summary_sort(mainwin->summaryview,
4613                              item->sort_key, (FolderSortType)value);
4614 }
4615
4616 static void attract_by_subject_cb(GtkAction *action, gpointer data)
4617 {
4618         MainWindow *mainwin = (MainWindow *)data;
4619         summary_attract_by_subject(mainwin->summaryview);
4620 }
4621
4622 static void delete_duplicated_cb(GtkAction *action, gpointer data)
4623 {
4624         MainWindow *mainwin = (MainWindow *)data;
4625         FolderItem *item;
4626
4627         item = folderview_get_selected_item(mainwin->folderview);
4628         if (item) {
4629                 main_window_cursor_wait(mainwin);
4630                 STATUSBAR_PUSH(mainwin, _("Deleting duplicated messages..."));
4631
4632                 folderutils_delete_duplicates(item, prefs_common.immediate_exec ?
4633                                               DELETE_DUPLICATES_REMOVE : DELETE_DUPLICATES_SETFLAG);
4634
4635                 STATUSBAR_POP(mainwin);
4636                 main_window_cursor_normal(mainwin);
4637         }
4638 }
4639
4640 struct DelDupsData
4641 {
4642         guint   dups;
4643         guint   folders;
4644 };
4645
4646 static void deldup_all(FolderItem *item, gpointer _data)
4647 {
4648         struct DelDupsData *data = _data;
4649         gint result;
4650         
4651         result = folderutils_delete_duplicates(item, DELETE_DUPLICATES_REMOVE);
4652         if (result >= 0) {
4653                 data->dups += result;
4654                 data->folders += 1;
4655         }
4656 }
4657
4658 static void delete_duplicated_all_cb(GtkAction *action, gpointer mw)
4659 {
4660         MainWindow *mainwin = (MainWindow *)mw;
4661         struct DelDupsData data = {0, 0};
4662
4663         main_window_cursor_wait(mainwin);
4664         folder_func_to_all_folders(deldup_all, &data);
4665         main_window_cursor_normal(mainwin);
4666         
4667         alertpanel_notice(ngettext("Deleted %d duplicate message in %d folders.\n",
4668                                    "Deleted %d duplicate messages in %d folders.\n",
4669                                    data.dups),
4670                           data.dups, data.folders);
4671 }
4672
4673 static void filter_cb(GtkAction *action, gpointer data)
4674 {
4675         MainWindow *mainwin = (MainWindow *)data;
4676         summary_filter(mainwin->summaryview, FALSE);
4677 }
4678
4679 static void filter_list_cb(GtkAction *action, gpointer data)
4680 {
4681         MainWindow *mainwin = (MainWindow *)data;
4682         summary_filter(mainwin->summaryview, TRUE);
4683 }
4684
4685 static void process_cb(GtkAction *action, gpointer data)
4686 {
4687         MainWindow *mainwin = (MainWindow *)data;
4688         FolderItem *item = mainwin->summaryview->folder_item;   
4689         cm_return_if_fail(item != NULL);
4690
4691         item->processing_pending = TRUE;
4692         folder_item_apply_processing(item);     
4693         item->processing_pending = FALSE;
4694 }
4695
4696 static void execute_summary_cb(GtkAction *action, gpointer data)
4697 {
4698         MainWindow *mainwin = (MainWindow *)data;
4699         summary_execute(mainwin->summaryview);
4700 }
4701
4702 static void expunge_summary_cb(GtkAction *action, gpointer data)
4703 {
4704         MainWindow *mainwin = (MainWindow *)data;
4705         summary_expunge(mainwin->summaryview);
4706 }
4707
4708 static void update_summary_cb(GtkAction *action, gpointer data)
4709 {
4710         MainWindow *mainwin = (MainWindow *)data;
4711         FolderItem *fitem;
4712         FolderView *folderview = mainwin->folderview;
4713
4714         if (!mainwin->summaryview->folder_item) return;
4715         if (!folderview->opened) return;
4716
4717         folder_update_op_count();
4718
4719         fitem = gtk_cmctree_node_get_row_data(GTK_CMCTREE(folderview->ctree),
4720                                             folderview->opened);
4721         if (!fitem) return;
4722
4723         folder_item_scan(fitem);
4724         summary_show(mainwin->summaryview, fitem);
4725 }
4726
4727 static void prev_cb(GtkAction *action, gpointer data)
4728 {
4729         MainWindow *mainwin = (MainWindow *)data;
4730         summary_step(mainwin->summaryview, GTK_SCROLL_STEP_BACKWARD);
4731 }
4732
4733 static void next_cb(GtkAction *action, gpointer data)
4734 {
4735         MainWindow *mainwin = (MainWindow *)data;
4736         summary_step(mainwin->summaryview, GTK_SCROLL_STEP_FORWARD);
4737 }
4738
4739 static void prev_unread_cb(GtkAction *action, gpointer data)
4740 {
4741         MainWindow *mainwin = (MainWindow *)data;
4742         summary_select_prev_unread(mainwin->summaryview);
4743 }
4744
4745 static void next_unread_cb(GtkAction *action, gpointer data)
4746 {
4747         MainWindow *mainwin = (MainWindow *)data;
4748         summary_select_next_unread(mainwin->summaryview);
4749 }
4750
4751 static void prev_new_cb(GtkAction *action, gpointer data)
4752 {
4753         MainWindow *mainwin = (MainWindow *)data;
4754         summary_select_prev_new(mainwin->summaryview);
4755 }
4756
4757 static void next_new_cb(GtkAction *action, gpointer data)
4758 {
4759         MainWindow *mainwin = (MainWindow *)data;
4760         summary_select_next_new(mainwin->summaryview);
4761 }
4762
4763 static void prev_marked_cb(GtkAction *action, gpointer data)
4764 {
4765         MainWindow *mainwin = (MainWindow *)data;
4766         summary_select_prev_marked(mainwin->summaryview);
4767 }
4768
4769 static void next_marked_cb(GtkAction *action, gpointer data)
4770 {
4771         MainWindow *mainwin = (MainWindow *)data;
4772         summary_select_next_marked(mainwin->summaryview);
4773 }
4774
4775 static void prev_labeled_cb(GtkAction *action, gpointer data)
4776 {
4777         MainWindow *mainwin = (MainWindow *)data;
4778         summary_select_prev_labeled(mainwin->summaryview);
4779 }
4780
4781 static void next_labeled_cb(GtkAction *action, gpointer data)
4782 {
4783         MainWindow *mainwin = (MainWindow *)data;
4784         summary_select_next_labeled(mainwin->summaryview);
4785 }
4786
4787 static void prev_history_cb(GtkAction *action, gpointer data)
4788 {
4789         MainWindow *mainwin = (MainWindow *)data;
4790         MsgInfo *info = messageview_nav_get_prev(mainwin->messageview);
4791         if (info) {
4792                 if (info->folder != mainwin->summaryview->folder_item)
4793                         folderview_select(mainwin->folderview, info->folder);
4794                 summary_display_by_msgnum(mainwin->summaryview, info->msgnum);
4795                 summary_display_msg_selected(mainwin->summaryview, FALSE);
4796                 procmsg_msginfo_free(info);
4797                 main_window_set_menu_sensitive(mainwindow_get_mainwindow());
4798                 toolbar_main_set_sensitive(mainwindow_get_mainwindow());
4799         }
4800 }
4801
4802 static void next_history_cb(GtkAction *action, gpointer data)
4803 {
4804         MainWindow *mainwin = (MainWindow *)data;
4805         MsgInfo *info = messageview_nav_get_next(mainwin->messageview);
4806         if (info) {
4807                 if (info->folder != mainwin->summaryview->folder_item)
4808                         folderview_select(mainwin->folderview, info->folder);
4809                 summary_display_by_msgnum(mainwin->summaryview, info->msgnum);
4810                 procmsg_msginfo_free(info);
4811                 main_window_set_menu_sensitive(mainwindow_get_mainwindow());
4812                 toolbar_main_set_sensitive(mainwindow_get_mainwindow());
4813         }
4814 }
4815
4816 static void parent_cb(GtkAction *action, gpointer data)
4817 {
4818         MainWindow *mainwin = (MainWindow *)data;
4819         summary_select_parent(mainwin->summaryview);
4820 }
4821
4822 static void goto_folder_cb(GtkAction *action, gpointer data)
4823 {
4824         MainWindow *mainwin = (MainWindow *)data;
4825         FolderItem *to_folder;
4826
4827         to_folder = foldersel_folder_sel(NULL, FOLDER_SEL_ALL, NULL, FALSE);
4828
4829         if (to_folder)
4830                 folderview_select(mainwin->folderview, to_folder);
4831 }
4832
4833 static void goto_unread_folder_cb(GtkAction *action, gpointer data)
4834 {
4835         MainWindow *mainwin = (MainWindow *)data;
4836         folderview_select_next_unread(mainwin->folderview, FALSE);
4837 }
4838
4839 static void scroll_prev_line_cb(GtkAction *action, gpointer data)
4840 {
4841         MainWindow *mainwin = (MainWindow *)data;
4842         mimeview_scroll_one_line(mainwin->messageview->mimeview,TRUE);
4843 }
4844
4845 static void scroll_next_line_cb(GtkAction *action, gpointer data)
4846 {
4847         MainWindow *mainwin = (MainWindow *)data;
4848         mimeview_scroll_one_line(mainwin->messageview->mimeview,FALSE);
4849 }
4850
4851 static void scroll_prev_page_cb(GtkAction *action, gpointer data)
4852 {
4853         MainWindow *mainwin = (MainWindow *)data;
4854         mimeview_scroll_page(mainwin->messageview->mimeview,TRUE);
4855 }
4856
4857 static void scroll_next_page_cb(GtkAction *action, gpointer data)
4858 {
4859         MainWindow *mainwin = (MainWindow *)data;
4860         mimeview_scroll_page(mainwin->messageview->mimeview,FALSE);
4861 }
4862
4863 static void copy_cb(GtkAction *action, gpointer data)
4864 {
4865         MainWindow *mainwin = (MainWindow *)data;
4866         messageview_copy_clipboard(mainwin->messageview);
4867 }
4868
4869 static void allsel_cb(GtkAction *action, gpointer data)
4870 {
4871         MainWindow *mainwin = (MainWindow *)data;
4872         MessageView *msgview = mainwin->messageview;
4873
4874         if (messageview_is_visible(msgview) &&
4875                  (gtk_widget_has_focus(msgview->mimeview->textview->text)))
4876                 messageview_select_all(mainwin->messageview);
4877         else
4878                 summary_select_all(mainwin->summaryview);
4879 }
4880
4881 static void select_thread_cb(GtkAction *action, gpointer data)
4882 {
4883         MainWindow *mainwin = (MainWindow *)data;
4884         summary_select_thread(mainwin->summaryview, FALSE);
4885 }
4886
4887 static void delete_thread_cb(GtkAction *action, gpointer data)
4888 {
4889         MainWindow *mainwin = (MainWindow *)data;
4890         summary_select_thread(mainwin->summaryview, TRUE);
4891 }
4892
4893 static void create_filter_cb(GtkAction *gaction, gpointer data)
4894 {
4895         MainWindow *mainwin = (MainWindow *)data;
4896         const gchar *a_name = gtk_action_get_name(gaction);
4897         gint action = -1;
4898
4899         DO_ACTION("Tools/CreateFilterRule/Automatically", FILTER_BY_AUTO);
4900         DO_ACTION("Tools/CreateFilterRule/ByFrom", FILTER_BY_FROM);
4901         DO_ACTION("Tools/CreateFilterRule/ByTo", FILTER_BY_TO);
4902         DO_ACTION("Tools/CreateFilterRule/BySubject", FILTER_BY_SUBJECT);
4903         summary_filter_open(mainwin->summaryview, (PrefsFilterType)action, 0);
4904 }
4905
4906 static void create_processing_cb(GtkAction *gaction, gpointer data)
4907 {
4908         MainWindow *mainwin = (MainWindow *)data;
4909         const gchar *a_name = gtk_action_get_name(gaction);
4910         gint action = -1;
4911
4912         DO_ACTION("Tools/CreateProcessingRule/Automatically", FILTER_BY_AUTO);
4913         DO_ACTION("Tools/CreateProcessingRule/ByFrom", FILTER_BY_FROM);
4914         DO_ACTION("Tools/CreateProcessingRule/ByTo", FILTER_BY_TO);
4915         DO_ACTION("Tools/CreateProcessingRule/BySubject", FILTER_BY_SUBJECT);
4916         summary_filter_open(mainwin->summaryview, (PrefsFilterType)action, 1);
4917 }
4918
4919 static void prefs_pre_processing_open_cb(GtkAction *action, gpointer data)
4920 {
4921         prefs_filtering_open(&pre_global_processing,
4922                              _("Processing rules to apply before folder rules"),
4923                              MANUAL_ANCHOR_PROCESSING,
4924                              NULL, NULL, FALSE);
4925 }
4926
4927 static void prefs_post_processing_open_cb(GtkAction *action, gpointer data)
4928 {
4929         prefs_filtering_open(&post_global_processing,
4930                              _("Processing rules to apply after folder rules"),
4931                              MANUAL_ANCHOR_PROCESSING,
4932                              NULL, NULL, FALSE);
4933 }
4934
4935 static void prefs_filtering_open_cb(GtkAction *action, gpointer data)
4936 {
4937         prefs_filtering_open(&filtering_rules,
4938                              _("Filtering configuration"),
4939                              MANUAL_ANCHOR_FILTERING,
4940                              NULL, NULL, TRUE);
4941 }
4942
4943 static void prefs_template_open_cb(GtkAction *action, gpointer data)
4944 {
4945         prefs_template_open();
4946 }
4947
4948 static void prefs_actions_open_cb(GtkAction *action, gpointer data)
4949 {
4950         MainWindow *mainwin = (MainWindow *)data;
4951         prefs_actions_open(mainwin);
4952 }
4953
4954 static void prefs_tags_open_cb(GtkAction *action, gpointer data)
4955 {
4956         MainWindow *mainwin = (MainWindow *)data;
4957         GSList * list = summary_get_selected_msg_list(mainwin->summaryview);
4958         tag_apply_open(list);
4959 }
4960 #ifdef USE_GNUTLS
4961 static void ssl_manager_open_cb(GtkAction *action, gpointer data)
4962 {
4963         MainWindow *mainwin = (MainWindow *)data;
4964         ssl_manager_open(mainwin);
4965 }
4966 #endif
4967 static void prefs_account_open_cb(GtkAction *action, gpointer data)
4968 {
4969         MainWindow *mainwin = (MainWindow *)data;
4970         if (!cur_account) {
4971                 new_account_cb(NULL, mainwin);
4972         } else {
4973                 account_open(cur_account);
4974         }
4975 }
4976
4977 static void new_account_cb(GtkAction *action, gpointer data)
4978 {
4979         account_edit_open(NULL, NULL);
4980         if (!compose_get_compose_list()) account_add();
4981 }
4982
4983 static void account_selector_menu_cb(GtkMenuItem *menuitem, gpointer data)
4984 {
4985         FolderItem *item = NULL;
4986         cur_account = (PrefsAccount *)data;
4987         
4988         if (!mainwindow_get_mainwindow())
4989                 return;
4990         main_window_show_cur_account(mainwindow_get_mainwindow());
4991         toolbar_update(TOOLBAR_MAIN, mainwindow_get_mainwindow());
4992         main_window_set_menu_sensitive(mainwindow_get_mainwindow());
4993         toolbar_main_set_sensitive(mainwindow_get_mainwindow());
4994         item = folderview_get_selected_item(
4995                         mainwindow_get_mainwindow()->folderview);
4996         if (item) {
4997                 toolbar_set_compose_button
4998                         (mainwindow_get_mainwindow()->toolbar,
4999                          FOLDER_TYPE(item->folder) == F_NEWS ? 
5000                          COMPOSEBUTTON_NEWS : COMPOSEBUTTON_MAIL);
5001         }
5002 }
5003
5004 static void account_receive_menu_cb(GtkMenuItem *menuitem, gpointer data)
5005 {
5006         MainWindow *mainwin = (MainWindow *)mainwin_list->data;
5007         PrefsAccount *account = (PrefsAccount *)data;
5008
5009         inc_account_mail(mainwin, account);
5010 }
5011 #ifndef GENERIC_UMPC
5012 static void account_compose_menu_cb(GtkMenuItem *menuitem, gpointer data)
5013 {
5014         PrefsAccount *account = (PrefsAccount *)data;
5015
5016         compose_new_with_folderitem(account, NULL, NULL);
5017 }
5018 #endif
5019 static void prefs_open_cb(GtkAction *action, gpointer data)
5020 {
5021         prefs_gtk_open();
5022 }
5023
5024 static void plugins_open_cb(GtkAction *action, gpointer data)
5025 {
5026         pluginwindow_create();
5027 }
5028
5029 static void manual_open_cb(GtkAction *action, gpointer data)
5030 {
5031         manual_open(MANUAL_MANUAL_CLAWS, NULL);
5032 }
5033
5034 static void manual_faq_open_cb(GtkAction *action, gpointer data)
5035 {
5036         manual_open(MANUAL_FAQ_CLAWS, NULL);
5037 }
5038
5039 static void legend_open_cb(GtkAction *action, gpointer data)
5040 {
5041         legend_show();
5042 }
5043
5044 #ifdef G_OS_WIN32
5045 static void set_default_client_cb(GtkAction *action, gpointer data)
5046 {
5047         char exename[MAX_PATH];
5048         gchar *binary_icon = NULL;
5049         gchar *binary_compose = NULL;
5050         gchar *binary_run = NULL;
5051         int r = 0;
5052         if ( !GetModuleFileNameA (0, exename, sizeof (exename)) ) {
5053                 alertpanel_error(_("Can not register as default client: impossible to get executable path."));
5054                 return;
5055         }
5056         binary_icon = g_strconcat(exename, ",0", NULL);
5057         binary_compose = g_strconcat(exename, " --compose %1", NULL);
5058         binary_run = g_strconcat(exename, NULL);
5059
5060         /* Try to set the Mail Start menu item to Claws. It may fail if we're not root; we don't care */
5061         r = write_w32_registry_string("HKLM", "Software\\Clients\\Mail", 
5062                         "", "Claws Mail");
5063         
5064         r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail", 
5065                                 "", "Claws Mail");
5066         if (!r)
5067                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail", 
5068                                 "DLLPath", "");
5069         if (!r)
5070                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto", 
5071                                 "", "URL:MailTo-Protocol");
5072         if (!r)
5073                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto", 
5074                                 "URL Protocol", "");
5075         if (!r)
5076                 r = write_w32_registry_dword ("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto", 
5077                                 "EditFlags", 2);
5078         if (!r)
5079                 r = write_w32_registry_string ("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto", 
5080                                 "FriendlyTypeName", "Claws-Mail URL");
5081         if (!r)
5082                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto\\DefaultIcon", 
5083                                 "", binary_icon);
5084         if (!r)
5085                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto\\shell\\open\\command", 
5086                                 "", binary_compose);
5087         if (!r)
5088                 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\shell\\open\\command", 
5089                                 "", binary_run);
5090         
5091         if (!r)
5092                 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto", 
5093                                 "", "URL:MailTo-Protocol");
5094         if (!r)
5095                 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto", 
5096                                 "URL Protocol", "");
5097         if (!r)
5098                 r = write_w32_registry_dword ("HKCU", "Software\\Classes\\mailto", 
5099                                 "EditFlags", 2);
5100         if (!r)
5101                 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto", 
5102                                 "FriendlyTypeName", "Claws-Mail URL");
5103         if (!r)
5104                 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto\\DefaultIcon", 
5105                                 "", binary_icon);
5106         if (!r)
5107                 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto\\shell\\open\\command", 
5108                                 "", binary_compose);
5109         
5110         if (!r) {
5111                 SendMessage(HWND_BROADCAST, WM_SETTINGCHANGE, 0, (LPARAM)"Software\\Clients\\Mail");
5112                 alertpanel_notice(_("Claws Mail has been registered as default client."));
5113         } else {
5114                 alertpanel_error(_("Can not register as default client: impossible to write to the registry."));
5115         }
5116         g_free(binary_icon);
5117         g_free(binary_compose);
5118         g_free(binary_run);
5119 }
5120 #endif
5121
5122 static void scan_tree_func(Folder *folder, FolderItem *item, gpointer data)
5123 {
5124         MainWindow *mainwin = (MainWindow *)data;
5125         gchar *str;
5126
5127         if (item->path)
5128                 str = g_strdup_printf(_("Scanning folder %s%c%s..."),
5129                                       LOCAL_FOLDER(folder)->rootpath,
5130                                       G_DIR_SEPARATOR,
5131                                       item->path);
5132         else
5133                 str = g_strdup_printf(_("Scanning folder %s..."),
5134                                       LOCAL_FOLDER(folder)->rootpath);
5135
5136         STATUSBAR_PUSH(mainwin, str);
5137         STATUSBAR_POP(mainwin);
5138         g_free(str);
5139 }
5140
5141 static gboolean mainwindow_focus_in_event(GtkWidget *widget, GdkEventFocus *focus,
5142                                           gpointer data)
5143 {
5144         SummaryView *summary;
5145
5146         cm_return_val_if_fail(data, FALSE);
5147         if (!g_list_find(mainwin_list, data))
5148                 return TRUE;
5149         summary = ((MainWindow *)data)->summaryview;
5150         cm_return_val_if_fail(summary, FALSE);
5151
5152         if (GTK_CMCLIST(summary->ctree)->selection && 
5153             g_list_length(GTK_CMCLIST(summary->ctree)->selection) > 1)
5154                 return FALSE;
5155
5156         return FALSE;
5157 }
5158
5159 static gboolean mainwindow_visibility_event_cb(GtkWidget *widget, GdkEventVisibility *event,
5160                                           gpointer data)
5161 {
5162         is_obscured = (event->state == GDK_VISIBILITY_FULLY_OBSCURED);
5163         return FALSE;
5164 }
5165
5166 static gboolean mainwindow_state_event_cb(GtkWidget *widget, GdkEventWindowState *state,
5167                                           gpointer data)
5168 {
5169         if (!claws_is_starting()
5170                 && state->changed_mask&GDK_WINDOW_STATE_ICONIFIED
5171                 && state->new_window_state&GDK_WINDOW_STATE_ICONIFIED) {
5172
5173                 if (iconified_count > 0)
5174                         hooks_invoke(MAIN_WINDOW_GOT_ICONIFIED, NULL);
5175                 iconified_count++;
5176         } else if (!claws_is_starting()) {
5177                 prefs_common.mainwin_maximised = 
5178                         ((state->new_window_state&GDK_WINDOW_STATE_MAXIMIZED) != 0);
5179         }
5180         if (state->new_window_state == 0)
5181                 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(widget), FALSE);
5182         return FALSE;
5183 }
5184
5185 gboolean mainwindow_is_obscured(void)
5186 {
5187         return is_obscured;
5188 }
5189
5190 /*
5191  * Harvest addresses for selected folder.
5192  */
5193 static void addr_harvest_cb( GtkAction *action, gpointer data)
5194 {
5195         MainWindow *mainwin = (MainWindow *)data;
5196
5197         addressbook_harvest( mainwin->summaryview->folder_item, FALSE, NULL );
5198 }
5199
5200 /*
5201  * Harvest addresses for selected messages in summary view.
5202  */
5203 static void addr_harvest_msg_cb( GtkAction *action, gpointer data)
5204 {
5205         MainWindow *mainwin = (MainWindow *)data;
5206         summary_harvest_address( mainwin->summaryview );
5207 }
5208
5209 /*!
5210  *\brief        get a MainWindow
5211  *
5212  *\return       MainWindow * The first mainwindow in the mainwin_list
5213  */
5214 MainWindow *mainwindow_get_mainwindow(void)
5215 {
5216         if (mainwin_list && mainwin_list->data)
5217                 return (MainWindow *)(mainwin_list->data);
5218         else
5219                 return NULL;
5220 }
5221
5222 static gboolean mainwindow_progressindicator_hook(gpointer source, gpointer userdata)
5223 {
5224         ProgressData *data = (ProgressData *) source;
5225         MainWindow *mainwin = (MainWindow *) userdata;
5226
5227         switch (data->cmd) {
5228         case PROGRESS_COMMAND_START:
5229         case PROGRESS_COMMAND_STOP:
5230                 gtk_progress_bar_set_fraction
5231                         (GTK_PROGRESS_BAR(mainwin->progressbar), 0.0);
5232                 break;
5233         case PROGRESS_COMMAND_SET_PERCENTAGE:
5234                 gtk_progress_bar_set_fraction
5235                         (GTK_PROGRESS_BAR(mainwin->progressbar), data->value);
5236                 break;          
5237         }
5238         while (gtk_events_pending()) gtk_main_iteration ();
5239
5240         return FALSE;
5241 }
5242
5243 static void sync_cb(GtkAction *action, gpointer data)
5244 {
5245         MainWindow *mainwin = (MainWindow *)data;
5246         mainwindow_check_synchronise(mainwin, FALSE);
5247 }
5248
5249 static void forget_session_passwords_cb(GtkAction *action, gpointer data)
5250 {
5251         MainWindow *mainwin = (MainWindow *)data;
5252         GList *list = NULL;
5253         gint fgtn = 0;
5254         gint accs = 0;
5255
5256         main_window_lock(mainwin);
5257         for (list = account_get_list(); list != NULL; list = list->next) {
5258                 PrefsAccount *account = list->data;
5259                 if (account->session_passwd) {
5260                         g_free(account->session_passwd);
5261                         account->session_passwd = NULL;
5262                         ++fgtn;
5263                 }
5264                 if (account->session_smtp_passwd) {
5265                         g_free(account->session_smtp_passwd);
5266                         account->session_smtp_passwd = NULL;
5267                         ++fgtn;
5268                 }
5269                 ++accs;
5270         }
5271         main_window_unlock(mainwin);
5272         alertpanel_notice(ngettext("Forgotten %d password in %d accounts.\n",
5273                                    "Forgotten %d passwords in %d accounts.\n",
5274                                    fgtn), fgtn, accs);  
5275 }
5276
5277 void mainwindow_learn (MainWindow *mainwin, gboolean is_spam)
5278 {
5279         summary_mark_as_spam(mainwin->summaryview, is_spam, NULL);
5280 }
5281
5282 void mainwindow_jump_to(const gchar *target, gboolean popup)
5283 {
5284         gchar *tmp = NULL;
5285         gchar *p = NULL;
5286         FolderItem *item = NULL;
5287         gchar *msg = NULL;
5288         MainWindow *mainwin = mainwindow_get_mainwindow();
5289         gchar *from_uri = NULL;
5290         if (!target)
5291                 return;
5292                 
5293         if (!mainwin) {
5294                 g_print("not initialized\n");
5295                 return;
5296         }
5297
5298         if ((from_uri = g_filename_from_uri(target, NULL, NULL)) != NULL)
5299                 tmp = from_uri;
5300         else
5301                 tmp = g_strdup(target);
5302         
5303         if ((p = strstr(tmp, "\r")) != NULL)
5304                 *p = '\0';
5305         if ((p = strstr(tmp, "\n")) != NULL)
5306                 *p = '\0';
5307
5308         if ((item = folder_find_item_from_identifier(tmp))) {
5309                 g_print("selecting folder '%s'\n", tmp);
5310                 folderview_select(mainwin->folderview, item);
5311                 if (popup)
5312                         main_window_popup(mainwin);
5313                 g_free(tmp);
5314                 return;
5315         }
5316         
5317         msg = strrchr(tmp, G_DIR_SEPARATOR);
5318         if (msg) {
5319                 *msg++ = '\0';
5320                 if ((item = folder_find_item_from_identifier(tmp))) {
5321                         g_print("selecting folder '%s'\n", tmp);
5322                         folderview_select(mainwin->folderview, item);
5323                 } else if ((item = folder_find_item_from_real_path(tmp))) {
5324                         g_print("selecting folder '%s'\n", tmp);
5325                         folderview_select(mainwin->folderview, item);
5326                 } else {
5327                         g_print("'%s' not found\n", tmp);
5328                 }
5329                 if (item && msg && atoi(msg)) {
5330                         g_print("selecting message %d\n", atoi(msg));
5331                         summary_select_by_msgnum(mainwin->summaryview, atoi(msg));
5332                         summary_display_msg_selected(mainwin->summaryview, FALSE);
5333                         if (popup)
5334                                 main_window_popup(mainwin);
5335                         g_free(tmp);
5336                         return;
5337                 } else if (item && msg[0] == '<' && msg[strlen(msg)-1] == '>') {
5338                         MsgInfo *msginfo = NULL;
5339                         msg++;
5340                         msg[strlen(msg)-1] = '\0';
5341                         msginfo = folder_item_get_msginfo_by_msgid(item, msg);
5342                         if (msginfo) {
5343                                 g_print("selecting message %s\n", msg);
5344                                 summary_select_by_msgnum(mainwin->summaryview, msginfo->msgnum);
5345                                 summary_display_msg_selected(mainwin->summaryview, FALSE);
5346                                 if (popup)
5347                                         main_window_popup(mainwin);
5348                                 g_free(tmp);
5349                                 procmsg_msginfo_free(msginfo);
5350                                 return;
5351                         } else {
5352                                 g_print("'%s' not found\n", msg);
5353                         }
5354                 } else {
5355                         g_print("'%s' not found\n", msg);
5356                 }
5357         } else {
5358                 g_print("'%s' not found\n", tmp);
5359         }
5360         
5361         g_free(tmp);
5362 }
5363
5364 void mainwindow_exit_folder(MainWindow *mainwin) {
5365         if (prefs_common.layout_mode == SMALL_LAYOUT) {
5366                 folderview_close_opened(mainwin->folderview);
5367                 mainwin_paned_show_first(GTK_PANED(mainwin->hpaned));
5368                 gtk_widget_grab_focus(mainwin->folderview->ctree);
5369         }
5370         mainwin->in_folder = FALSE;
5371         main_window_set_menu_sensitive(mainwin);
5372 }
5373
5374 void mainwindow_enter_folder(MainWindow *mainwin) {
5375         if (prefs_common.layout_mode == SMALL_LAYOUT) {
5376                 mainwin_paned_show_last(GTK_PANED(mainwin->hpaned));
5377         }
5378         mainwin->in_folder = TRUE;
5379         main_window_set_menu_sensitive(mainwin);
5380 }
5381
5382 static void save_part_as_cb(GtkAction *action, gpointer data)
5383 {
5384         MainWindow *mainwin = (MainWindow *)data;
5385
5386         if (mainwin->messageview 
5387         &&  mainwin->messageview->mimeview)
5388                 mimeview_save_as(mainwin->messageview->mimeview);
5389 }
5390
5391 static void view_part_as_text_cb(GtkAction *action, gpointer data)
5392 {
5393         MainWindow *mainwin = (MainWindow *)data;
5394
5395         if (mainwin->messageview 
5396         &&  mainwin->messageview->mimeview)
5397                 mimeview_display_as_text(mainwin->messageview->mimeview);
5398 }
5399
5400 static void open_part_cb(GtkAction *action, gpointer data)
5401 {
5402         MainWindow *mainwin = (MainWindow *)data;
5403
5404         if (mainwin->messageview 
5405         &&  mainwin->messageview->mimeview)
5406                 mimeview_launch(mainwin->messageview->mimeview, NULL);
5407 }
5408 #ifndef G_OS_WIN32
5409 static void open_part_with_cb(GtkAction *action, gpointer data)
5410 {
5411         MainWindow *mainwin = (MainWindow *)data;
5412
5413         if (mainwin->messageview 
5414         &&  mainwin->messageview->mimeview)
5415                 mimeview_open_with(mainwin->messageview->mimeview);
5416 }
5417 #endif
5418 static void check_signature_cb(GtkAction *action, gpointer data)
5419 {
5420         MainWindow *mainwin = (MainWindow *)data;
5421
5422         if (mainwin->messageview 
5423         &&  mainwin->messageview->mimeview)
5424                 mimeview_check_signature(mainwin->messageview->mimeview);
5425 }
5426
5427 static void goto_next_part_cb(GtkAction *action, gpointer data)
5428 {
5429         MainWindow *mainwin = (MainWindow *)data;
5430
5431         if (mainwin->messageview 
5432         &&  mainwin->messageview->mimeview)
5433                 mimeview_select_next_part(mainwin->messageview->mimeview);
5434 }
5435
5436 static void goto_prev_part_cb(GtkAction *action, gpointer data)
5437 {
5438         MainWindow *mainwin = (MainWindow *)data;
5439
5440         if (mainwin->messageview 
5441         &&  mainwin->messageview->mimeview)
5442                 mimeview_select_prev_part(mainwin->messageview->mimeview);
5443 }