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