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