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