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