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