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