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