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