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