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