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