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