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