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