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