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