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