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