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