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