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