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