2 Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3 Copyright (C) 1999-2008 Hiroyuki Yamamoto and the Claws Mail team
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.
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.
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/>.
22 #include <glib/gi18n.h>
23 #include <gdk/gdkkeysyms.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"
37 #include "stock_pixmap.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"
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"
67 #include "ssl_manager.h"
68 #include "sslcertwindow.h"
69 #include "prefs_gtk.h"
70 #include "pluginwindow.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"
88 #define AC_LABEL_WIDTH 240
90 /* list of all instantiated MainWindow */
91 static GList *mainwin_list = NULL;
93 static GdkCursor *watch_cursor = NULL;
94 static GdkCursor *hand_cursor = NULL;
96 static gint iconified_count = 0;
98 static void main_window_menu_callback_block (MainWindow *mainwin);
99 static void main_window_menu_callback_unblock (MainWindow *mainwin);
101 static void main_window_show_cur_account (MainWindow *mainwin);
103 static void main_window_separation_change (MainWindow *mainwin,
104 LayoutType layout_mode);
106 static void main_window_set_widgets (MainWindow *mainwin,
107 LayoutType layout_mode);
109 static void toolbar_child_attached (GtkWidget *widget,
112 static void toolbar_child_detached (GtkWidget *widget,
116 static gboolean ac_label_button_pressed (GtkWidget *widget,
117 GdkEventButton *event,
120 static gint main_window_close_cb (GtkWidget *widget,
124 static void main_window_size_allocate_cb (GtkWidget *widget,
125 GtkAllocation *allocation,
127 static void folder_window_size_allocate_cb (GtkWidget *widget,
128 GtkAllocation *allocation,
130 static void message_window_size_allocate_cb (GtkWidget *widget,
131 GtkAllocation *allocation,
134 static void update_folderview_cb (GtkAction *action,
136 static void add_mailbox_cb (GtkAction *action,
138 static void foldersort_cb (GtkAction *action,
140 static void import_mbox_cb (GtkAction *action,
142 static void export_mbox_cb (GtkAction *action,
144 static void export_list_mbox_cb (GtkAction *action,
146 static void empty_trash_cb (GtkAction *action,
148 static void save_as_cb (GtkAction *action,
150 #if GTK_CHECK_VERSION(2,10,0) && !defined(USE_GNOMEPRINT)
151 static void page_setup_cb (GtkAction *action,
154 static void print_cb (GtkAction *action,
156 static void app_exit_cb (GtkAction *action,
160 static void search_cb (GtkAction *action,
162 static void search_folder_cb (GtkAction *action,
165 static void toggle_message_cb (GtkAction *action,
167 static void toggle_toolbar_cb (GtkAction *action, GtkRadioAction *current, gpointer data);
168 static void toggle_col_headers_cb(GtkAction *action,
171 static void toggle_statusbar_cb (GtkAction *action,
173 static void set_layout_cb (GtkAction *action, GtkRadioAction *current, gpointer data);
175 static void addressbook_open_cb (GtkAction *action,
177 static void log_window_show_cb (GtkAction *action,
179 static void filtering_debug_window_show_cb (GtkAction *action,
182 static void inc_cancel_cb (GtkAction *action,
185 static void open_msg_cb (GtkAction *action,
188 static void view_source_cb (GtkAction *action,
191 static void show_all_header_cb (GtkAction *action,
193 static void toggle_fullscreen_cb (GtkAction *action,
196 static void hide_quotes_cb(GtkAction *action,
199 static void move_to_cb (GtkAction *action,
201 static void copy_to_cb (GtkAction *action,
203 static void delete_cb (GtkAction *action,
205 static void delete_trash_cb (GtkAction *action,
208 static void cancel_cb (GtkAction *action,
211 static void mark_cb (GtkAction *action,
213 static void unmark_cb (GtkAction *action,
216 static void mark_as_unread_cb (GtkAction *action,
218 static void mark_as_read_cb (GtkAction *action,
220 static void mark_all_read_cb (GtkAction *action,
222 static void mark_as_spam_cb (GtkAction *action,
224 static void mark_as_ham_cb (GtkAction *action,
227 static void ignore_thread_cb (GtkAction *action,
229 static void unignore_thread_cb (GtkAction *action,
231 static void watch_thread_cb (GtkAction *action,
233 static void unwatch_thread_cb (GtkAction *action,
235 static void lock_msgs_cb (GtkAction *action,
237 static void unlock_msgs_cb (GtkAction *action,
240 static void reedit_cb (GtkAction *action,
243 static void add_address_cb (GtkAction *action,
246 static void set_charset_cb (GtkAction *action, GtkRadioAction *current, gpointer data);
248 static void set_decode_cb (GtkAction *action, GtkRadioAction *current, gpointer data);
250 static void hide_read_messages (GtkAction *action,
253 static void thread_cb (GtkAction *action,
255 static void expand_threads_cb (GtkAction *action,
257 static void collapse_threads_cb (GtkAction *action,
260 static void set_summary_display_item_cb (GtkAction *action,
262 static void set_folder_display_item_cb (GtkAction *action,
264 static void sort_summary_cb (GtkAction *action, GtkRadioAction *current, gpointer data);
265 static void sort_summary_type_cb (GtkAction *action, GtkRadioAction *current, gpointer data);
266 static void attract_by_subject_cb(GtkAction *action,
269 static void delete_duplicated_cb (GtkAction *action,
271 static void delete_duplicated_all_cb (GtkAction *action,
273 static void filter_cb (GtkAction *action,
275 static void filter_list_cb (GtkAction *action,
277 static void process_cb (GtkAction *action,
279 static void execute_summary_cb (GtkAction *action,
281 static void update_summary_cb (GtkAction *action,
284 static void prev_cb (GtkAction *action,
286 static void next_cb (GtkAction *action,
288 static void next_unread_cb (GtkAction *action,
290 static void prev_unread_cb (GtkAction *action,
293 static void prev_new_cb (GtkAction *action,
295 static void next_new_cb (GtkAction *action,
297 static void prev_marked_cb (GtkAction *action,
299 static void next_marked_cb (GtkAction *action,
301 static void prev_labeled_cb (GtkAction *action,
303 static void next_labeled_cb (GtkAction *action,
305 static void last_read_cb (GtkAction *action,
307 static void parent_cb (GtkAction *action,
310 static void goto_folder_cb (GtkAction *action,
312 static void goto_unread_folder_cb(GtkAction *action,
315 static void copy_cb (GtkAction *action,
317 static void allsel_cb (GtkAction *action,
319 static void select_thread_cb (GtkAction *action,
321 static void delete_thread_cb (GtkAction *action,
324 static void create_filter_cb (GtkAction *action,
326 static void create_processing_cb (GtkAction *action,
328 static void open_urls_cb (GtkAction *action,
331 static void prefs_template_open_cb (GtkAction *action,
333 static void prefs_actions_open_cb (GtkAction *action,
335 static void prefs_tags_open_cb (GtkAction *action,
337 static void prefs_account_open_cb (GtkAction *action,
340 static void prefs_pre_processing_open_cb (GtkAction *action,
343 static void prefs_post_processing_open_cb (GtkAction *action,
346 static void prefs_filtering_open_cb (GtkAction *action,
349 static void ssl_manager_open_cb (GtkAction *action,
352 static void new_account_cb (GtkAction *action,
355 static void account_selector_menu_cb (GtkMenuItem *menuitem,
357 static void account_receive_menu_cb (GtkMenuItem *menuitem,
360 static void account_compose_menu_cb (GtkMenuItem *menuitem,
363 static void prefs_open_cb (GtkAction *action,
365 static void plugins_open_cb (GtkAction *action,
368 static void online_switch_clicked(GtkButton *btn,
371 static void manual_open_cb (GtkAction *action,
373 static void manual_faq_open_cb (GtkAction *action,
376 static void legend_open_cb (GtkAction *action,
380 static void set_default_client_cb (GtkAction *action,
384 static void scan_tree_func (Folder *folder,
388 static void toggle_work_offline_cb(GtkAction *action,
391 static void addr_harvest_cb ( GtkAction *action,
394 static void addr_harvest_msg_cb ( GtkAction *action,
396 static void sync_cb ( GtkAction *action,
399 static void forget_session_passwords_cb (GtkAction *action,
402 static gboolean mainwindow_focus_in_event (GtkWidget *widget,
403 GdkEventFocus *focus,
405 static gboolean mainwindow_visibility_event_cb (GtkWidget *widget,
406 GdkEventVisibility *state,
408 static gboolean mainwindow_state_event_cb (GtkWidget *widget,
409 GdkEventWindowState *state,
411 static void main_window_reply_cb (GtkAction *action,
413 static gboolean mainwindow_progressindicator_hook (gpointer source,
416 static gint mailing_list_create_submenu(MainWindow *mainwindow,
419 static gint mailing_list_populate_submenu(GtkWidget *menu, const gchar * list_header);
421 static void get_url_part(const gchar **buf, gchar *url_decoded, gint maxlen);
423 static void mailing_list_compose(GtkWidget *w, gpointer *data);
425 static void mailing_list_open_uri(GtkWidget *w, gpointer *data);
426 #define SEPARATE_ACTION 500
427 static void mainwindow_quicksearch (GtkAction *action,
429 static gboolean any_folder_want_synchronise(void);
431 #define DO_ACTION(name, act) { if (!strcmp(a_name, name)) action = act; }
433 static void mainwindow_nothing_cb (GtkAction *action, gpointer data)
438 static void about_cb(GtkAction *gaction, gpointer data)
443 static void mw_inc_mail_cb (GtkAction *gaction, gpointer data)
445 inc_mail_cb(data, 0, NULL);
447 static void mw_inc_all_account_mail_cb (GtkAction *gaction, gpointer data)
449 inc_all_account_mail_cb(data, 0, NULL);
451 static void mw_send_queue_cb (GtkAction *gaction, gpointer data)
453 send_queue_cb(data, 0, NULL);
455 static void mw_compose_mail_cb (GtkAction *gaction, gpointer data)
457 compose_mail_cb(data, 0, NULL);
459 static void mw_compose_news_cb (GtkAction *gaction, gpointer data)
461 compose_news_cb(data, 0, NULL);
464 static GtkActionEntry mainwin_entries[] =
466 {"Menu", NULL, "Menu" },
468 {"File", NULL, N_("_File") },
469 {"Edit", NULL, N_("_Edit") },
470 {"View", NULL, N_("_View") },
471 {"Message", NULL, N_("_Message") },
472 {"Tools", NULL, N_("_Tools") },
473 {"Configuration", NULL, N_("_Configuration") },
474 {"Help", NULL, N_("_Help") },
477 {"File/AddMailbox", NULL, N_("_Add mailbox") },
478 {"File/AddMailbox/MH", NULL, N_("MH..."), NULL, NULL, G_CALLBACK(add_mailbox_cb) },
479 {"File/---", NULL, "---" },
481 {"File/SortFolders", NULL, N_("Change folder order..."), NULL, NULL, G_CALLBACK(foldersort_cb) },
483 /* {"File/---", NULL, "---" }, */
484 {"File/ImportMbox", NULL, N_("_Import mbox file..."), NULL, NULL, G_CALLBACK(import_mbox_cb) },
485 {"File/ExportMbox", NULL, N_("_Export to mbox file..."), NULL, NULL, G_CALLBACK(export_mbox_cb) },
486 {"File/ExportSelMbox", NULL, N_("_Export selected to mbox file..."), NULL, NULL, G_CALLBACK(export_list_mbox_cb) },
487 /* {"File/---", NULL, "---" }, */
488 {"File/EmptyTrashes", NULL, N_("Empty all _Trash folders"), "<shift>D", NULL, G_CALLBACK(empty_trash_cb) },
489 /* {"File/---", NULL, "---" }, */
491 {"File/SaveAs", NULL, N_("_Save as..."), "<control>S", NULL, G_CALLBACK(save_as_cb) },
493 #if GTK_CHECK_VERSION(2,10,0) && !defined(USE_GNOMEPRINT)
494 {"File/PageSetup", NULL, N_("Page setup..."), NULL, NULL, G_CALLBACK(page_setup_cb) },
496 {"File/Print", NULL, N_("_Print..."), "<control>P", NULL, G_CALLBACK(print_cb) },
497 /* {"File/---", NULL, "---" }, */
498 {"File/SynchroniseFolders", NULL, N_("Synchronise folders"), "<control><shift>S", NULL, G_CALLBACK(sync_cb) },
499 /* {"File/---", NULL, "---" }, */
500 {"File/Exit", NULL, N_("E_xit"), "<control>Q", NULL, G_CALLBACK(app_exit_cb) },
503 {"Edit/Copy", NULL, N_("_Copy"), "<control>C", NULL, G_CALLBACK(copy_cb) },
504 {"Edit/SelectAll", NULL, N_("Select _all"), "<control>A", NULL, G_CALLBACK(allsel_cb) },
505 {"Edit/SelectThread", NULL, N_("Select _thread"), NULL, NULL, G_CALLBACK(select_thread_cb) },
506 {"Edit/DeleteThread", NULL, N_("_Delete thread"), NULL, NULL, G_CALLBACK(delete_thread_cb) },
507 {"Edit/---", NULL, "---" },
508 {"Edit/Find", NULL, N_("_Find in current message..."), "<control>F", NULL, G_CALLBACK(search_cb) },
509 {"Edit/SearchFolder", NULL, N_("_Search folder..."), "<shift><control>F", NULL, G_CALLBACK(search_folder_cb) },
510 {"Edit/QuickSearch", NULL, N_("_Quick search"), "slash", NULL, G_CALLBACK(mainwindow_quicksearch) },
513 {"View/ShowHide", NULL, N_("Show or hi_de") },
514 {"View/ShowHide/Toolbar", NULL, N_("_Toolbar") },
516 {"View/SetColumns", NULL, N_("Set displayed _columns") },
517 {"View/SetColumns/Folderlist", NULL, N_("in _Folder list..."), NULL, NULL, G_CALLBACK(set_folder_display_item_cb) },
518 {"View/SetColumns/Messagelist", NULL, N_("in _Message list..."), NULL, NULL, G_CALLBACK(set_summary_display_item_cb) },
519 {"View/---", NULL, "---" },
523 {"View/Layout", NULL, N_("La_yout") },
526 {"View/Sort", NULL, N_("_Sort") },
527 {"View/Sort/---", NULL, "---" },
528 {"View/Sort/AttractSubj", NULL, N_("_Attract by subject"), NULL, NULL, G_CALLBACK(attract_by_subject_cb) },
530 {"View/ExpandThreads", NULL, N_("E_xpand all threads"), NULL, NULL, G_CALLBACK(expand_threads_cb) },
531 {"View/CollapseThreads", NULL, N_("Co_llapse all threads"), NULL, NULL, G_CALLBACK(collapse_threads_cb) },
533 {"View/Goto", NULL, N_("_Go to") },
534 {"View/Goto/Prev", NULL, N_("_Previous message"), "P", NULL, G_CALLBACK(prev_cb) },
535 {"View/Goto/Next", NULL, N_("_Next message"), "N", NULL, G_CALLBACK(next_cb) },
536 {"View/Goto/---", NULL, "---", NULL, NULL, NULL },
537 {"View/Goto/PrevUnread", NULL, N_("P_revious unread message"), "<shift>P", NULL, G_CALLBACK(prev_unread_cb) },
538 {"View/Goto/NextUnread", NULL, N_("N_ext unread message"), "<shift>N", NULL, G_CALLBACK(next_unread_cb) },
539 /* {"View/Goto/---", NULL, "---", NULL, NULL, NULL }, */
540 {"View/Goto/PrevNew", NULL, N_("Previous ne_w message"), NULL, NULL, G_CALLBACK(prev_new_cb) },
541 {"View/Goto/NextNew", NULL, N_("Ne_xt new message"), NULL, NULL, G_CALLBACK(next_new_cb) },
542 /* {"View/Goto/---", NULL, "---", NULL, NULL, NULL }, */
543 {"View/Goto/PrevMarked", NULL, N_("Previous _marked message"), NULL, NULL, G_CALLBACK(prev_marked_cb) },
544 {"View/Goto/NextMarked", NULL, N_("Next m_arked message"), NULL, NULL, G_CALLBACK(next_marked_cb) },
545 /* {"View/Goto/---", NULL, "---", NULL, NULL, NULL }, */
546 {"View/Goto/PrevLabeled", NULL, N_("Previous _labeled message"), NULL, NULL, G_CALLBACK(prev_labeled_cb) },
547 {"View/Goto/NextLabeled", NULL, N_("Next la_beled message"), NULL, NULL, G_CALLBACK(next_labeled_cb) },
548 /* {"View/Goto/---", NULL, "---", NULL, NULL, NULL }, */
549 {"View/Goto/LastRead", NULL, N_("Last read message"), NULL, NULL, G_CALLBACK(last_read_cb) },
550 {"View/Goto/ParentMessage", NULL, N_("Parent message"), "<control>Up", NULL, G_CALLBACK(parent_cb) },
551 /* {"View/Goto/---", NULL, "---", NULL, NULL, NULL }, */
552 {"View/Goto/NextUnreadFolder", NULL, N_("Next unread _folder"), "<shift>G", NULL, G_CALLBACK(goto_unread_folder_cb) },
553 {"View/Goto/OtherFolder", NULL, N_("_Other folder..."), "G", NULL, G_CALLBACK(goto_folder_cb) },
554 /* {"View/---", NULL, "---", NULL, NULL, NULL }, */
556 {"View/Encoding", NULL, N_("Character _encoding") }, /* set_charset_cb */
557 {"View/Encoding/---", NULL, "---" },
558 #define ENC_ACTION(cs_char,c_char,string) \
559 { "View/Encoding/" cs_char, NULL, N_(string), NULL, NULL, c_char }
561 {"View/Encoding/Western", NULL, N_("Western European") },
562 {"View/Encoding/Baltic", NULL, N_("Baltic") },
563 {"View/Encoding/Hebrew", NULL, N_("Hebrew") },
564 {"View/Encoding/Arabic", NULL, N_("Arabic") },
565 {"View/Encoding/Cyrillic", NULL, N_("Cyrillic") },
566 {"View/Encoding/Japanese", NULL, N_("Japanese") },
567 {"View/Encoding/Chinese", NULL, N_("Chinese") },
568 {"View/Encoding/Korean", NULL, N_("Korean") },
569 {"View/Encoding/Thai", NULL, N_("Thai") },
571 {"View/Decode", NULL, N_("Decode") }, /* set_decode_cb */
572 {"View/Decode/---", NULL, "---" },
574 #define DEC_ACTION(cs_type,c_type,string) \
575 { "View/Decode/" cs_type, NULL, N_(string), NULL, NULL, c_type }
577 /* {"View/---", NULL, "---", NULL, NULL, NULL }, */
578 {"View/OpenNewWindow", NULL, N_("Open in new _window"), "<control><alt>N", NULL, G_CALLBACK(open_msg_cb) },
579 {"View/MessageSource", NULL, N_("Mess_age source"), "<control>U", NULL, G_CALLBACK(view_source_cb) },
580 {"View/Quotes", NULL, N_("Quotes") },
581 /* {"View/---", NULL, "---", NULL, NULL, NULL }, */
582 {"View/UpdateSummary", NULL, N_("_Update summary"), "<control><alt>U", NULL, G_CALLBACK(update_summary_cb) },
585 {"Message/Receive", NULL, N_("Recei_ve") },
586 {"Message/Receive/CurrentAccount", NULL, N_("Get from _current account"), "<control>I", NULL, G_CALLBACK(mw_inc_mail_cb) },
587 {"Message/Receive/AllAccounts", NULL, N_("Get from _all accounts"), "<shift><control>I", NULL, G_CALLBACK(mw_inc_all_account_mail_cb) },
588 {"Message/Receive/CancelReceiving", NULL, N_("Cancel receivin_g"), NULL, NULL, G_CALLBACK(inc_cancel_cb) },
589 {"Message/Receive/---", NULL, "---" },
590 {"Message/Receive/PlaceHolder", NULL, "PlaceHolder,", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
591 {"Message/SendQueue", NULL, N_("_Send queued messages"), NULL, NULL, G_CALLBACK(mw_send_queue_cb) },
593 {"Message/---", NULL, "---" },
595 {"Message/ComposeEmail", NULL, N_("Compose a_n email message"), "<control>M", NULL, G_CALLBACK(mw_compose_mail_cb) },
596 {"Message/ComposeNews", NULL, N_("Compose a news message"), NULL, NULL, G_CALLBACK(mw_compose_news_cb) },
598 {"Message/Reply", NULL, N_("_Reply"), "<control>R", NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_REPLY */
599 {"Message/ReplyTo", NULL, N_("Repl_y to") },
600 {"Message/ReplyTo/All", NULL, N_("_all"), "<control><shift>R", NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_REPLY_TO_ALL */
601 {"Message/ReplyTo/Sender", NULL, N_("_sender"), NULL, NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_REPLY_TO_SENDER */
602 {"Message/ReplyTo/List", NULL, N_("mailing _list"), "<control>L", NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_REPLY_TO_LIST */
603 {"Message/FollowupReply", NULL, N_("Follow-up and reply to"), NULL, NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_FOLLOWUP_AND_REPLY_TO */
604 /*{"Message/---", NULL, "---" },*/
606 {"Message/Forward", NULL, N_("_Forward"), "<control><alt>F", NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_FORWARD_INLINE */
607 {"Message/ForwardAtt", NULL, N_("For_ward as attachment"), NULL, NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_FORWARD_AS_ATTACH */
608 {"Message/Redirect", NULL, N_("Redirec_t"), NULL, NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_REDIRECT */
610 {"Message/MailingList", NULL, N_("Mailing-_List") },
611 {"Message/MailingList/Post", NULL, N_("Post") },
612 {"Message/MailingList/Post/PlaceHolder", NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
613 {"Message/MailingList/Help", NULL, N_("Help") },
614 {"Message/MailingList/Help/PlaceHolder", NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
615 {"Message/MailingList/Subscribe", NULL, N_("Subscribe") },
616 {"Message/MailingList/Subscribe/PlaceHolder", NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
617 {"Message/MailingList/Unsubscribe", NULL, N_("Unsubscribe") },
618 {"Message/MailingList/Unsubscribe/PlaceHolder", NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
619 {"Message/MailingList/ViewArchive", NULL, N_("View archive") },
620 {"Message/MailingList/ViewArchive/PlaceHolder", NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
621 {"Message/MailingList/ContactOwner", NULL, N_("Contact owner") },
622 {"Message/MailingList/ContactOwner/PlaceHolder", NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
623 /*{"Message/---", NULL, "---" },*/
625 {"Message/Move", NULL, N_("M_ove..."), "<control>O", NULL, G_CALLBACK(move_to_cb) },
626 {"Message/Copy", NULL, N_("_Copy..."), "<shift><control>O", NULL, G_CALLBACK(copy_to_cb) },
627 {"Message/Trash", NULL, N_("Move to _trash"), "<control>D", NULL, G_CALLBACK(delete_trash_cb) },
628 {"Message/Delete", NULL, N_("_Delete..."), NULL, NULL, G_CALLBACK(delete_cb) },
629 {"Message/CancelNews", NULL, N_("Cancel a news message"), NULL, NULL, G_CALLBACK(cancel_cb) },
630 /*{"Message/---", NULL, "---" },*/
632 {"Message/Mark", NULL, "_Mark" },
633 {"Message/Mark/Mark", NULL, N_("_Mark"), "<shift>asterisk", NULL, G_CALLBACK(mark_cb) },
634 {"Message/Mark/Unmark", NULL, N_("_Unmark"), "U", NULL, G_CALLBACK(unmark_cb) },
635 {"Message/Mark/---", NULL, "---", NULL, NULL, NULL },
637 {"Message/Mark/MarkUnread", NULL, N_("Mark as unr_ead"), "<shift>exclam", NULL, G_CALLBACK(mark_as_unread_cb) },
638 {"Message/Mark/MarkRead", NULL, N_("Mark as rea_d"), NULL, NULL, G_CALLBACK(mark_as_read_cb) },
639 {"Message/Mark/MarkAllRead", NULL, N_("Mark all read"), NULL, NULL, G_CALLBACK(mark_all_read_cb) },
640 {"Message/Mark/IgnoreThread", NULL, N_("Ignore thread"), NULL, NULL, G_CALLBACK(ignore_thread_cb) },
641 {"Message/Mark/UnignoreThread", NULL, N_("Unignore thread"), NULL, NULL, G_CALLBACK(unignore_thread_cb) },
642 {"Message/Mark/WatchThread", NULL, N_("Watch thread"), NULL, NULL, G_CALLBACK(watch_thread_cb) },
643 {"Message/Mark/UnwatchThread", NULL, N_("Unwatch thread"), NULL, NULL, G_CALLBACK(unwatch_thread_cb) },
646 {"Message/Mark/MarkSpam", NULL, N_("Mark as spam"), NULL, NULL, G_CALLBACK(mark_as_spam_cb) },
647 {"Message/Mark/MarkHam", NULL, N_("Mark as ham"), NULL, NULL, G_CALLBACK(mark_as_ham_cb) },
650 {"Message/Mark/Lock", NULL, N_("Lock"), NULL, NULL, G_CALLBACK(lock_msgs_cb) },
651 {"Message/Mark/Unlock", NULL, N_("Unlock"), NULL, NULL, G_CALLBACK(unlock_msgs_cb) },
653 {"Message/ColorLabel", NULL, N_("Color la_bel") },
654 {"Message/Tags", NULL, N_("Ta_gs") },
655 /*{"Message/---", NULL, "---" },*/
657 {"Message/Reedit", NULL, N_("Re-_edit"), NULL, NULL, G_CALLBACK(reedit_cb) },
661 {"Tools/AddressBook", NULL, N_("_Address book"), "<control><shift>A", NULL, G_CALLBACK(addressbook_open_cb) },
662 {"Tools/AddSenderToAB", NULL, N_("Add sender to address boo_k"), NULL, NULL, G_CALLBACK(add_address_cb) },
664 {"Tools/CollectAddresses", NULL, N_("C_ollect addresses") },
665 {"Tools/CollectAddresses/FromFolder", NULL, N_("from Current _folder..."), NULL, NULL, G_CALLBACK(addr_harvest_cb) },
666 {"Tools/CollectAddresses/FromSelected", NULL, N_("from Selected _messages..."), NULL, NULL, G_CALLBACK(addr_harvest_msg_cb) },
667 {"Tools/---", NULL, "---", NULL, NULL, NULL },
669 {"Tools/FilterFolder", NULL, N_("_Filter all messages in folder"), NULL, NULL, G_CALLBACK(filter_cb) },
670 {"Tools/FilterSelected", NULL, N_("Filter _selected messages"), NULL, NULL, G_CALLBACK(filter_list_cb) },
671 {"Tools/RunProcessing", NULL, N_("Run folder pr_ocessing rules"), NULL, NULL, G_CALLBACK(process_cb) },
673 {"Tools/CreateFilterRule", NULL, N_("_Create filter rule") },
674 {"Tools/CreateFilterRule/Automatically",NULL, N_("_Automatically"), NULL, NULL, G_CALLBACK(create_filter_cb) }, /* FILTER_BY_AUTO */
675 {"Tools/CreateFilterRule/ByFrom", NULL, N_("By _From"), NULL, NULL, G_CALLBACK(create_filter_cb) }, /* FILTER_BY_FROM */
676 {"Tools/CreateFilterRule/ByTo", NULL, N_("By _To"), NULL, NULL, G_CALLBACK(create_filter_cb) }, /* FILTER_BY_TO */
677 {"Tools/CreateFilterRule/BySubject", NULL, N_("By _Subject"), NULL, NULL, G_CALLBACK(create_filter_cb) }, /* FILTER_BY_SUBJECT */
679 {"Tools/CreateProcessingRule", NULL, N_("Create processing rule") },
680 {"Tools/CreateProcessingRule/Automatically", NULL, N_("_Automatically"), NULL, NULL, G_CALLBACK(create_processing_cb) },
681 {"Tools/CreateProcessingRule/ByFrom", NULL, N_("By _From"), NULL, NULL, G_CALLBACK(create_processing_cb) },
682 {"Tools/CreateProcessingRule/ByTo", NULL, N_("By _To"), NULL, NULL, G_CALLBACK(create_processing_cb) },
683 {"Tools/CreateProcessingRule/BySubject",NULL, N_("By _Subject"), NULL, NULL, G_CALLBACK(create_processing_cb) },
684 /* {"Tools/---", NULL, "---", NULL, NULL, NULL }, */
686 {"Tools/ListUrls", NULL, N_("List _URLs..."), "<control><shift>U", NULL, G_CALLBACK(open_urls_cb) },
688 /* {"Tools/---", NULL, "---", NULL, NULL, NULL }, */
689 {"Tools/Actions", NULL, N_("Actio_ns") },
690 {"Tools/Actions/PlaceHolder", NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
691 /* {"Tools/---", NULL, "---", NULL, NULL, NULL }, */
693 {"Tools/CheckNewMessages", NULL, N_("Ch_eck for new messages in all folders"), NULL, NULL, G_CALLBACK(update_folderview_cb) },
694 {"Tools/DeleteDuplicates", NULL, N_("Delete du_plicated messages") },
695 {"Tools/DeleteDuplicates/SelFolder", NULL, N_("In selected folder"), NULL, NULL, G_CALLBACK(delete_duplicated_cb) },
696 {"Tools/DeleteDuplicates/AllFolders", NULL, N_("In all folders"), NULL, NULL, G_CALLBACK(delete_duplicated_all_cb) },
697 /* {"Tools/---", NULL, "---", NULL, NULL, NULL }, */
699 {"Tools/Execute", NULL, N_("E_xecute"), "X", NULL, G_CALLBACK(execute_summary_cb) },
701 /* {"Tools/---", NULL, "---", NULL, NULL, NULL }, */
702 {"Tools/SSLCertificates", NULL, N_("SSL cer_tificates"), NULL, NULL, G_CALLBACK(ssl_manager_open_cb) },
704 /* {"Tools/---", NULL, "---", NULL, NULL, NULL }, */
706 {"Tools/FilteringLog", NULL, N_("Filtering Lo_g"), NULL, NULL, G_CALLBACK(filtering_debug_window_show_cb) },
708 {"Tools/NetworkLog", NULL, N_("Network _Log"), "<shift><control>L", NULL, G_CALLBACK(log_window_show_cb) },
709 /* {"Tools/---", NULL, "---", NULL, NULL, NULL }, */
710 {"Tools/ForgetSessionPasswords", NULL, N_("_Forget all session passwords"), NULL, NULL, G_CALLBACK(forget_session_passwords_cb) },
712 /* Configuration menu */
713 {"Configuration/ChangeAccount", NULL, N_("C_hange current account") },
714 {"Configuration/ChangeAccount/PlaceHolder", NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
715 {"Configuration/AccountPrefs", NULL, N_("_Preferences for current account..."), NULL, NULL, G_CALLBACK(prefs_account_open_cb) },
716 {"Configuration/CreateAccount", NULL, N_("Create _new account..."), NULL, NULL, G_CALLBACK(new_account_cb) },
717 {"Configuration/EditAccounts", NULL, N_("_Edit accounts..."), NULL, NULL, G_CALLBACK(account_edit_open) },
718 {"Configuration/---", NULL, "---", NULL, NULL, NULL },
720 {"Configuration/Preferences", NULL, N_("P_references..."), NULL, NULL, G_CALLBACK(prefs_open_cb) },
721 {"Configuration/PreProcessing", NULL, N_("Pre-pr_ocessing..."), NULL, NULL, G_CALLBACK(prefs_pre_processing_open_cb) },
722 {"Configuration/PostProcessing", NULL, N_("Post-pro_cessing..."), NULL, NULL, G_CALLBACK(prefs_post_processing_open_cb) },
723 {"Configuration/Filtering", NULL, N_("_Filtering..."), NULL, NULL, G_CALLBACK(prefs_filtering_open_cb) },
724 {"Configuration/Templates", NULL, N_("_Templates..."), NULL, NULL, G_CALLBACK(prefs_template_open_cb) },
725 {"Configuration/Actions", NULL, N_("_Actions..."), NULL, NULL, G_CALLBACK(prefs_actions_open_cb) },
726 {"Configuration/Tags", NULL, N_("Tag_s..."), NULL, NULL, G_CALLBACK(prefs_tags_open_cb) },
727 /*{"Configuration/---", NULL, "---", NULL, NULL, NULL }, */
728 {"Configuration/Plugins", NULL, N_("Plu_gins..."), NULL, NULL, G_CALLBACK(plugins_open_cb) },
731 {"Help/Manual", NULL, N_("_Manual"), NULL, NULL, G_CALLBACK(manual_open_cb) },
732 {"Help/FAQ", NULL, N_("_Online User-contributed FAQ"), NULL, NULL, G_CALLBACK(manual_faq_open_cb) },
733 {"Help/IconLegend", NULL, N_("Icon _Legend"), NULL, NULL, G_CALLBACK(legend_open_cb) },
735 {"Help/SetDefault", NULL, N_("Set as default client"), NULL, NULL, G_CALLBACK(set_default_client_cb) },
737 {"Help/---", NULL, "---" },
738 {"Help/About", NULL, N_("_About"), NULL, NULL, G_CALLBACK(about_cb) },
741 static GtkToggleActionEntry mainwin_toggle_entries[] = {
742 {"File/OfflineMode", NULL, N_("Offline _mode"), "<control>W", NULL, G_CALLBACK(toggle_work_offline_cb) }, /*toggle*/
743 {"View/ShowHide/MessageView", NULL, N_("_Message view"), "V", NULL, G_CALLBACK(toggle_message_cb) }, /* toggle */
745 {"View/ShowHide/StatusBar", NULL, N_("Status _bar"), NULL, NULL, G_CALLBACK(toggle_statusbar_cb) }, /* toggle */
747 {"View/ShowHide/ColumnHeaders", NULL, N_("Column headers"), NULL, NULL, G_CALLBACK(toggle_col_headers_cb) }, /* toggle */
748 {"View/ThreadView", NULL, N_("Th_read view"), "<control>T", NULL, G_CALLBACK(thread_cb) }, /* toggle */
749 {"View/HideReadMessages", NULL, N_("_Hide read messages"), NULL, NULL, G_CALLBACK(hide_read_messages) }, /* toggle */
751 {"View/FullScreen", NULL, N_("_Fullscreen"), "F11", NULL, G_CALLBACK(toggle_fullscreen_cb) }, /* toggle */
753 {"View/AllHeaders", NULL, N_("Show all _headers"), "<control>H", NULL, G_CALLBACK(show_all_header_cb) }, /* toggle */
754 {"View/Quotes/FoldAll", NULL, N_("_Fold all"), "<control><shift>Q", NULL, G_CALLBACK(hide_quotes_cb) }, /* 1 toggle */
755 {"View/Quotes/Fold2", NULL, N_("Fold from level _2"), NULL, NULL, G_CALLBACK(hide_quotes_cb) }, /* 2 toggle */
756 {"View/Quotes/Fold3", NULL, N_("Fold from level _3"), NULL, NULL, G_CALLBACK(hide_quotes_cb) }, /* 3 toggle */
759 static GtkRadioActionEntry mainwin_showhide_radio_entries[] = { /* toggle_toolbar_cb */
760 {"View/ShowHide/Toolbar/TextBelowIcon", NULL, N_("Text _below icons"), NULL, NULL, TOOLBAR_BOTH }, /* radio TOOLBAR_BOTH */
761 {"View/ShowHide/Toolbar/TextBesideIcon",NULL, N_("Text be_side icons"), NULL, NULL, TOOLBAR_BOTH_HORIZ }, /* radio TOOLBAR_BOTH_HORIZ */
762 {"View/ShowHide/Toolbar/IconOnly", NULL, N_("_Icons only"), NULL, NULL, TOOLBAR_ICON }, /* radio TOOLBAR_ICON */
763 {"View/ShowHide/Toolbar/TextOnly", NULL, N_("_Text only"), NULL, NULL, TOOLBAR_TEXT }, /* radio TOOLBAR_TEXT */
765 {"View/ShowHide/Toolbar/Hide", NULL, N_("_Hide"), NULL, NULL, TOOLBAR_NONE }, /* radio TOOLBAR_NONE */
769 static GtkRadioActionEntry mainwin_layout_radio_entries[] = { /* set_layout_cb */
770 {"View/Layout/Standard", NULL, N_("_Standard"), NULL, NULL, NORMAL_LAYOUT }, /* radio NORMAL_LAYOUT */
771 {"View/Layout/ThreeColumns", NULL, N_("_Three columns"), NULL, NULL, VERTICAL_LAYOUT }, /* radio VERTICAL_LAYOUT */
772 {"View/Layout/WideMessage", NULL, N_("_Wide message"), NULL, NULL, WIDE_LAYOUT }, /* radio WIDE_LAYOUT */
773 {"View/Layout/WideMessageList", NULL, N_("W_ide message list"), NULL, NULL, WIDE_MSGLIST_LAYOUT }, /* radio WIDE_MSGLIST_LAYOUT */
774 {"View/Layout/SmallScreen", NULL, N_("S_mall screen"), NULL, NULL, SMALL_LAYOUT }, /* radio SMALL_LAYOUT */
777 static GtkRadioActionEntry mainwin_sort_radio_entries[] = { /* sort_summary_cb */
778 {"View/Sort/Number", NULL, N_("by _Number"), NULL, NULL, SORT_BY_NUMBER }, /* radio SORT_BY_NUMBER */
779 {"View/Sort/Size", NULL, N_("by S_ize"), NULL, NULL, SORT_BY_SIZE }, /* radio SORT_BY_SIZE */
780 {"View/Sort/Date", NULL, N_("by _Date"), NULL, NULL, SORT_BY_DATE }, /* radio SORT_BY_DATE */
781 {"View/Sort/ThreadDate", NULL, N_("by Thread date"), NULL, NULL, SORT_BY_THREAD_DATE }, /* radio SORT_BY_THREAD_DATE */
782 {"View/Sort/From", NULL, N_("by _From"), NULL, NULL, SORT_BY_FROM }, /* radio SORT_BY_FROM */
783 {"View/Sort/To", NULL, N_("by _To"), NULL, NULL, SORT_BY_TO }, /* radio SORT_BY_TO */
784 {"View/Sort/Subject", NULL, N_("by S_ubject"), NULL, NULL, SORT_BY_SUBJECT }, /* radio SORT_BY_SUBJECT */
785 {"View/Sort/Color", NULL, N_("by _Color label"), NULL, NULL, SORT_BY_LABEL }, /* radio SORT_BY_LABEL */
786 {"View/Sort/Tag", NULL, N_("by Tag"), NULL, NULL, SORT_BY_TAGS }, /* radio SORT_BY_TAGS */
787 {"View/Sort/Mark", NULL, N_("by _Mark"), NULL, NULL, SORT_BY_MARK }, /* radio SORT_BY_MARK */
788 {"View/Sort/Status", NULL, N_("by _Status"), NULL, NULL, SORT_BY_STATUS }, /* radio SORT_BY_STATUS */
789 {"View/Sort/Attachment", NULL, N_("by A_ttachment"), NULL, NULL, SORT_BY_MIME }, /* radio SORT_BY_MIME */
790 {"View/Sort/Score", NULL, N_("by Score"), NULL, NULL, SORT_BY_SCORE }, /* radio SORT_BY_SCORE */
791 {"View/Sort/Locked", NULL, N_("by Locked"), NULL, NULL, SORT_BY_LOCKED }, /* radio SORT_BY_LOCKED */
792 {"View/Sort/DontSort", NULL, N_("D_on't sort"), NULL, NULL, SORT_BY_NONE }, /* radio SORT_BY_NONE */
795 static GtkRadioActionEntry mainwin_sorttype_radio_entries[] = { /* sort_summary_type_cb */
796 {"View/Sort/Ascending", NULL, N_("Ascending"), NULL, NULL, SORT_ASCENDING }, /* radio SORT_ASCENDING */
797 {"View/Sort/Descending", NULL, N_("Descending"), NULL, NULL, SORT_DESCENDING }, /* radio SORT_DESCENDING */
800 static GtkRadioActionEntry mainwin_radio_enc_entries[] =
802 ENC_ACTION(CS_AUTO, C_AUTO, N_("_Automatic")), /* RADIO set_charset_cb */
803 ENC_ACTION(CS_US_ASCII, C_US_ASCII, N_("7bit ASCII (US-ASC_II)")), /* RADIO set_charset_cb */
804 ENC_ACTION(CS_UTF_8, C_UTF_8, N_("Unicode (_UTF-8)")), /* RADIO set_charset_cb */
805 ENC_ACTION("Western/"CS_ISO_8859_1, C_ISO_8859_1, "ISO-8859-_1"), /* RADIO set_charset_cb */
806 ENC_ACTION("Western/"CS_ISO_8859_15, C_ISO_8859_15, "ISO-8859-15"), /* RADIO set_charset_cb */
807 ENC_ACTION("Western/"CS_WINDOWS_1252, C_WINDOWS_1252, "Windows-1252"), /* RADIO set_charset_cb */
808 ENC_ACTION(CS_ISO_8859_2, C_ISO_8859_2, N_("Central European (ISO-8859-_2)")), /* RADIO set_charset_cb */
809 ENC_ACTION("Baltic/"CS_ISO_8859_13, C_ISO_8859_13, "ISO-8859-13"), /* RADIO set_charset_cb */
810 ENC_ACTION("Baltic/"CS_ISO_8859_4, C_ISO_8859_14, "ISO-8859-_4"), /* RADIO set_charset_cb */
811 ENC_ACTION(CS_ISO_8859_7, C_ISO_8859_7, N_("Greek (ISO-8859-_7)")), /* RADIO set_charset_cb */
812 ENC_ACTION("Hebrew/"CS_ISO_8859_8, C_ISO_8859_8, "ISO-8859-_8"), /* RADIO set_charset_cb */
813 ENC_ACTION("Hebrew/"CS_WINDOWS_1255, C_WINDOWS_1255, "Windows-1255"), /* RADIO set_charset_cb */
814 ENC_ACTION("Arabic/"CS_ISO_8859_6, C_ISO_8859_6, "ISO-8859-_6"), /* RADIO set_charset_cb */
815 ENC_ACTION("Arabic/"CS_WINDOWS_1256, C_WINDOWS_1256, "Windows-1256"), /* RADIO set_charset_cb */
816 ENC_ACTION(CS_ISO_8859_9, C_ISO_8859_9, N_("Turkish (ISO-8859-_9)")), /* RADIO set_charset_cb */
817 ENC_ACTION("Cyrillic/"CS_ISO_8859_5, C_ISO_8859_5, "ISO-8859-_5"), /* RADIO set_charset_cb */
818 ENC_ACTION("Cyrillic/"CS_KOI8_R, C_KOI8_R, "KOI8-_R"), /* RADIO set_charset_cb */
819 ENC_ACTION("Cyrillic/"CS_KOI8_U, C_KOI8_U, "KOI8-_U"), /* RADIO set_charset_cb */
820 ENC_ACTION("Cyrillic/"CS_WINDOWS_1251, C_WINDOWS_1251, "Windows-1251"), /* RADIO set_charset_cb */
821 ENC_ACTION("Japanese/"CS_ISO_2022_JP, C_ISO_2022_JP, "ISO-2022-_JP"), /* RADIO set_charset_cb */
822 ENC_ACTION("Japanese/"CS_ISO_2022_JP_2, C_ISO_2022_JP_2, "ISO-2022-JP-_2"), /* RADIO set_charset_cb */
823 ENC_ACTION("Japanese/"CS_EUC_JP, C_EUC_JP, "_EUC-JP"), /* RADIO set_charset_cb */
824 ENC_ACTION("Japanese/"CS_SHIFT_JIS, C_SHIFT_JIS, "_Shift-JIS"), /* RADIO set_charset_cb */
825 ENC_ACTION("Chinese/"CS_GB2312, C_GB2312, "_GB2312"), /* RADIO set_charset_cb */
826 ENC_ACTION("Chinese/"CS_GBK, C_GBK, "GB_K"), /* RADIO set_charset_cb */
827 ENC_ACTION("Chinese/"CS_BIG5, C_BIG5, "_Big5-JP"), /* RADIO set_charset_cb */
828 ENC_ACTION("Chinese/"CS_EUC_TW, C_EUC_TW, "EUC-_TW"), /* RADIO set_charset_cb */
829 ENC_ACTION("Korean/"CS_EUC_KR, C_EUC_KR, "_EUC-KR"), /* RADIO set_charset_cb */
830 ENC_ACTION("Korean/"CS_ISO_2022_KR, C_ISO_2022_KR, "_ISO-2022-KR"), /* RADIO set_charset_cb */
831 ENC_ACTION("Thai/"CS_TIS_620, C_TIS_620, "_TIS-620-KR"), /* RADIO set_charset_cb */
832 ENC_ACTION("Thai/"CS_WINDOWS_874, C_WINDOWS_874, "_Windows-874"), /* RADIO set_charset_cb */
835 static GtkRadioActionEntry mainwin_radio_dec_entries[] =
837 DEC_ACTION("AutoDetect", 0, N_("_Auto detect")), /* set_decode_cb */
839 DEC_ACTION("8bit", ENC_8BIT, "_8bit"),
840 DEC_ACTION("QP", ENC_QUOTED_PRINTABLE, "_Quoted printable"),
841 DEC_ACTION("B64", ENC_BASE64, "_Base64"),
842 DEC_ACTION("Uuencode", ENC_X_UUENCODE, "_Uuencode"),
845 static gboolean offline_ask_sync = TRUE;
846 static guint lastkey;
847 static gboolean is_obscured = FALSE;
849 static gboolean main_window_accel_activate (GtkAccelGroup *accelgroup,
855 MainWindow *mainwin = (MainWindow *)user_data;
857 if (mainwin->summaryview &&
858 mainwin->summaryview->quicksearch &&
859 quicksearch_has_focus(mainwin->summaryview->quicksearch) &&
860 (mod == 0 || mod == GDK_SHIFT_MASK)) {
861 quicksearch_pass_key(mainwin->summaryview->quicksearch, lastkey, mod);
867 #define N_COLOR_LABELS colorlabel_get_color_count()
869 static void mainwindow_colorlabel_menu_item_activate_item_cb(GtkMenuItem *menu_item,
874 GtkCheckMenuItem **items;
879 mainwin = (MainWindow *)data;
880 g_return_if_fail(mainwin != NULL);
882 sel = summary_get_selection(mainwin->summaryview);
885 menu = GTK_MENU_SHELL(mainwin->colorlabel_menu);
886 g_return_if_fail(menu != NULL);
888 Xalloca(items, (N_COLOR_LABELS + 1) * sizeof(GtkWidget *), return);
890 /* NOTE: don't return prematurely because we set the "dont_toggle"
891 * state for check menu items. This would be bad! */
892 g_object_set_data(G_OBJECT(menu), "dont_toggle",
895 /* clear items. get item pointers. */
896 for (n = 0, cur = menu->children; cur != NULL && cur->data != NULL; cur = cur->next) {
897 if (GTK_IS_CHECK_MENU_ITEM(cur->data)) {
898 gtk_check_menu_item_set_active
899 (GTK_CHECK_MENU_ITEM(cur->data), FALSE);
900 items[n] = GTK_CHECK_MENU_ITEM(cur->data);
905 if (n == (N_COLOR_LABELS + 1)) {
906 /* iterate all messages and set the state of the appropriate
908 for (; sel != NULL; sel = sel->next) {
912 msginfo = (MsgInfo *)sel->data;
914 clabel = MSG_GET_COLORLABEL_VALUE(msginfo->flags);
915 if (!items[clabel]->active)
916 gtk_check_menu_item_set_active
917 (items[clabel], TRUE);
921 g_warning("invalid number of color elements (%d)\n", n);
924 /* reset "dont_toggle" state */
925 g_object_set_data(G_OBJECT(menu), "dont_toggle",
929 static void mainwindow_colorlabel_menu_item_activate_cb(GtkWidget *widget,
932 guint color = GPOINTER_TO_UINT(data);
935 mainwin = g_object_get_data(G_OBJECT(widget), "mainwin");
936 g_return_if_fail(mainwin != NULL);
938 /* "dont_toggle" state set? */
939 if (g_object_get_data(G_OBJECT(mainwin->colorlabel_menu),
943 summary_set_colorlabel(mainwin->summaryview, color, NULL);
946 static void mainwindow_tags_menu_item_activate_item_cb(GtkMenuItem *menu_item,
953 GHashTable *menu_table = g_hash_table_new_full(
957 GHashTable *menu_allsel_table = g_hash_table_new_full(
962 mainwin = (MainWindow *)data;
963 g_return_if_fail(mainwin != NULL);
965 sel = summary_get_selection(mainwin->summaryview);
968 menu = GTK_MENU_SHELL(mainwin->tags_menu);
969 g_return_if_fail(menu != NULL);
971 /* NOTE: don't return prematurely because we set the "dont_toggle"
972 * state for check menu items */
973 g_object_set_data(G_OBJECT(menu), "dont_toggle",
976 /* clear items. get item pointers. */
977 for (cur = menu->children; cur != NULL && cur->data != NULL; cur = cur->next) {
978 if (GTK_IS_CHECK_MENU_ITEM(cur->data)) {
979 gint id = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(cur->data),
981 gtk_check_menu_item_set_active
982 (GTK_CHECK_MENU_ITEM(cur->data), FALSE);
984 g_hash_table_insert(menu_table, GINT_TO_POINTER(id), GTK_CHECK_MENU_ITEM(cur->data));
985 g_hash_table_insert(menu_allsel_table, GINT_TO_POINTER(id), GINT_TO_POINTER(0));
989 /* iterate all messages and set the state of the appropriate
992 for (; sel != NULL; sel = sel->next) {
996 GtkCheckMenuItem *item;
997 msginfo = (MsgInfo *)sel->data;
1000 tags = msginfo->tags;
1004 for (; tags; tags = tags->next) {
1005 gint num_checked = GPOINTER_TO_INT(g_hash_table_lookup(menu_allsel_table, tags->data));
1006 id = GPOINTER_TO_INT(tags->data);
1007 item = g_hash_table_lookup(menu_table, GINT_TO_POINTER(tags->data));
1008 if (item && !item->active) {
1009 gtk_check_menu_item_set_active
1013 g_hash_table_replace(menu_allsel_table, tags->data, GINT_TO_POINTER(num_checked));
1018 for (cur = menu->children; cur != NULL && cur->data != NULL; cur = cur->next) {
1019 if (GTK_IS_CHECK_MENU_ITEM(cur->data)) {
1020 gint id = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(cur->data),
1022 gint num_checked = GPOINTER_TO_INT(g_hash_table_lookup(menu_allsel_table, GINT_TO_POINTER(id)));
1023 if (num_checked < sel_len && num_checked > 0)
1024 gtk_check_menu_item_set_inconsistent(GTK_CHECK_MENU_ITEM(cur->data), TRUE);
1026 gtk_check_menu_item_set_inconsistent(GTK_CHECK_MENU_ITEM(cur->data), FALSE);
1030 g_hash_table_destroy(menu_table);
1031 g_hash_table_destroy(menu_allsel_table);
1032 /* reset "dont_toggle" state */
1033 g_object_set_data(G_OBJECT(menu), "dont_toggle",
1034 GINT_TO_POINTER(0));
1037 static void mainwindow_tags_menu_item_activate_cb(GtkWidget *widget,
1040 gint id = GPOINTER_TO_INT(data);
1041 gboolean set = gtk_check_menu_item_get_active(GTK_CHECK_MENU_ITEM(widget));
1042 MainWindow *mainwin;
1044 mainwin = g_object_get_data(G_OBJECT(widget), "mainwin");
1045 g_return_if_fail(mainwin != NULL);
1047 /* "dont_toggle" state set? */
1048 if (g_object_get_data(G_OBJECT(mainwin->tags_menu),
1054 summary_set_tag(mainwin->summaryview, id, NULL);
1057 void mainwin_accel_changed_cb (GtkAccelGroup *accelgroup, guint keyval, GdkModifierType modifier,
1058 GClosure *closure, GtkMenuItem *item)
1060 GList *closures = gtk_widget_list_accel_closures(GTK_WIDGET(item));
1062 for (cur = closures; cur; cur = cur->next) {
1063 if (closure == cur->data) {
1064 GtkLabel *label = g_object_get_data(G_OBJECT(item), "accel_label");
1067 if (keyval == GDK_BackSpace) {
1068 const gchar *accel_path;
1069 #if GTK_CHECK_VERSION(2,14,0)
1070 accel_path = gtk_menu_item_get_accel_path(item);
1072 accel_path = GTK_MENU_ITEM(item)->accel_path;
1074 keyval = 0; modifier = 0;
1075 gtk_accel_map_change_entry (accel_path, keyval, modifier, TRUE);
1077 new_accel = gtk_accelerator_get_label(keyval, modifier);
1078 gtk_label_set_text(label, new_accel);
1084 static void mainwindow_colorlabel_menu_create(MainWindow *mainwin, gboolean refresh)
1086 GtkWidget *label_menuitem;
1090 gchar *accel_path = NULL;
1092 label_menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/ColorLabel");
1093 g_signal_connect(G_OBJECT(label_menuitem), "activate",
1094 G_CALLBACK(mainwindow_colorlabel_menu_item_activate_item_cb),
1096 gtk_widget_show(label_menuitem);
1098 menu = gtk_menu_new();
1099 gtk_menu_set_accel_group (GTK_MENU (menu),
1100 gtk_ui_manager_get_accel_group(mainwin->ui_manager));
1102 /* create sub items. for the menu item activation callback we pass the
1103 * index of label_colors[] as data parameter. for the None color we
1104 * pass an invalid (high) value. also we attach a data pointer so we
1105 * can always get back the Mainwindow pointer. */
1107 item = gtk_check_menu_item_new_with_label(_("None"));
1108 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1109 g_signal_connect(G_OBJECT(item), "activate",
1110 G_CALLBACK(mainwindow_colorlabel_menu_item_activate_cb),
1111 GUINT_TO_POINTER(0));
1112 g_object_set_data(G_OBJECT(item), "mainwin", mainwin);
1113 gtk_widget_show(item);
1115 accel_path = g_strdup_printf("<ClawsColorLabels>/None");
1116 gtk_menu_item_set_accel_path(GTK_MENU_ITEM(item), accel_path);
1118 gtk_accel_map_add_entry("<ClawsColorLabels>/None", GDK_0, GDK_CONTROL_MASK);
1120 item = gtk_menu_item_new();
1121 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1122 gtk_widget_show(item);
1124 /* create pixmap/label menu items */
1125 for (i = 0; i < N_COLOR_LABELS; i++) {
1126 item = colorlabel_create_check_color_menu_item(
1127 i, refresh, MAINWIN_COLORMENU);
1128 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1129 g_signal_connect(G_OBJECT(item), "activate",
1130 G_CALLBACK(mainwindow_colorlabel_menu_item_activate_cb),
1131 GUINT_TO_POINTER(i + 1));
1132 g_object_set_data(G_OBJECT(item), "mainwin",
1134 gtk_widget_show(item);
1135 accel_path = g_strdup_printf("<ClawsColorLabels>/%d", i+1);
1136 gtk_menu_item_set_accel_path(GTK_MENU_ITEM(item), accel_path);
1138 gtk_accel_map_add_entry(accel_path, GDK_1+i, GDK_CONTROL_MASK);
1140 g_signal_connect (gtk_ui_manager_get_accel_group(mainwin->ui_manager),
1141 "accel-changed", G_CALLBACK (mainwin_accel_changed_cb), item);
1145 gtk_widget_show(menu);
1146 gtk_menu_item_set_submenu(GTK_MENU_ITEM(label_menuitem), menu);
1147 mainwin->colorlabel_menu = menu;
1150 static void mainwindow_tags_menu_item_apply_tags_activate_cb(GtkWidget *widget,
1153 MainWindow *mainwin;
1155 mainwin = g_object_get_data(G_OBJECT(widget), "mainwin");
1156 g_return_if_fail(mainwin != NULL);
1158 /* "dont_toggle" state set? */
1159 if (g_object_get_data(G_OBJECT(mainwin->tags_menu),
1163 tag_apply_open(summary_get_selection(mainwin->summaryview));
1166 static gint mainwin_tag_cmp_list(gconstpointer a, gconstpointer b)
1168 gint id_a = GPOINTER_TO_INT(a);
1169 gint id_b = GPOINTER_TO_INT(b);
1170 const gchar *tag_a = tags_get_tag(id_a);
1171 const gchar *tag_b = tags_get_tag(id_b);
1175 return tag_b == NULL ? 0:1;
1178 return tag_a == NULL ? 0:1;
1180 return g_utf8_collate(tag_a, tag_b);
1183 static void mainwindow_tags_menu_create(MainWindow *mainwin, gboolean refresh)
1185 GtkWidget *label_menuitem;
1188 GSList *cur = tags_get_list();
1189 GSList *orig = NULL;
1190 gboolean existing_tags = FALSE;
1192 cur = orig = g_slist_sort(cur, mainwin_tag_cmp_list);
1194 label_menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/Tags");
1195 g_signal_connect(G_OBJECT(label_menuitem), "activate",
1196 G_CALLBACK(mainwindow_tags_menu_item_activate_item_cb),
1199 gtk_widget_show(label_menuitem);
1201 menu = gtk_menu_new();
1202 gtk_menu_set_accel_group (GTK_MENU (menu),
1203 gtk_ui_manager_get_accel_group(mainwin->ui_manager));
1205 /* create tags menu items */
1206 for (; cur; cur = cur->next) {
1207 gint id = GPOINTER_TO_INT(cur->data);
1208 const gchar *tag = tags_get_tag(id);
1210 item = gtk_check_menu_item_new_with_label(tag);
1211 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1212 g_signal_connect(G_OBJECT(item), "activate",
1213 G_CALLBACK(mainwindow_tags_menu_item_activate_cb),
1214 GINT_TO_POINTER(id));
1215 g_object_set_data(G_OBJECT(item), "mainwin",
1217 g_object_set_data(G_OBJECT(item), "tag_id",
1218 GINT_TO_POINTER(id));
1219 gtk_widget_show(item);
1220 accel_path = g_strconcat("<ClawsTags>/",tag, NULL);
1221 gtk_menu_item_set_accel_path(GTK_MENU_ITEM(item), accel_path);
1223 existing_tags = TRUE;
1225 if (existing_tags) {
1227 item = gtk_menu_item_new();
1228 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1229 gtk_widget_show(item);
1232 item = gtk_menu_item_new_with_label(_("Apply tags..."));
1233 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1234 g_signal_connect(G_OBJECT(item), "activate",
1235 G_CALLBACK(mainwindow_tags_menu_item_apply_tags_activate_cb),
1237 g_object_set_data(G_OBJECT(item), "mainwin",
1239 gtk_widget_show(item);
1240 accel_path = g_strdup_printf("<ClawsTags>/ApplyTags");
1241 gtk_menu_item_set_accel_path(GTK_MENU_ITEM(item), accel_path);
1243 gtk_accel_map_add_entry("<ClawsTags>/ApplyTags", GDK_T, GDK_CONTROL_MASK|GDK_SHIFT_MASK);
1246 gtk_widget_show(menu);
1247 gtk_menu_item_set_submenu(GTK_MENU_ITEM(label_menuitem), menu);
1248 mainwin->tags_menu = menu;
1250 #ifndef GENERIC_UMPC
1251 static gboolean warning_icon_pressed(GtkWidget *widget, GdkEventButton *evt,
1252 MainWindow *mainwindow)
1254 if (evt && evt->button == 1) {
1255 log_window_show_error(mainwindow->logwin);
1256 gtk_widget_hide(mainwindow->warning_btn);
1261 static gboolean warning_visi_notify(GtkWidget *widget,
1262 GdkEventVisibility *event,
1263 MainWindow *mainwindow)
1265 gdk_window_set_cursor(mainwindow->warning_btn->window, hand_cursor);
1269 static gboolean warning_leave_notify(GtkWidget *widget,
1270 GdkEventCrossing *event,
1271 MainWindow *mainwindow)
1273 gdk_window_set_cursor(mainwindow->warning_btn->window, NULL);
1277 static gboolean warning_enter_notify(GtkWidget *widget,
1278 GdkEventCrossing *event,
1279 MainWindow *mainwindow)
1281 gdk_window_set_cursor(mainwindow->warning_btn->window, hand_cursor);
1285 void mainwindow_show_error(void)
1287 MainWindow *mainwin = mainwindow_get_mainwindow();
1288 gtk_widget_show(mainwin->warning_btn);
1291 void mainwindow_clear_error(MainWindow *mainwin)
1293 gtk_widget_hide(mainwin->warning_btn);
1296 #define BREAK_ON_MODIFIER_KEY() \
1297 if ((event->state & (GDK_MOD1_MASK|GDK_CONTROL_MASK)) != 0) break
1299 static gboolean mainwindow_key_pressed (GtkWidget *widget, GdkEventKey *event,
1302 MainWindow *mainwin = (MainWindow*) data;
1304 if (!mainwin || !event)
1307 if (quicksearch_has_focus(mainwin->summaryview->quicksearch))
1309 lastkey = event->keyval;
1313 switch (event->keyval) {
1314 case GDK_Q: /* Quit */
1315 BREAK_ON_MODIFIER_KEY();
1317 app_exit_cb(NULL, mainwin);
1320 BREAK_ON_MODIFIER_KEY();
1321 if (gtk_window_is_active(GTK_WINDOW(mainwin->window))) {
1322 if (mainwin->folderview && mainwin->summaryview
1323 && ((!mainwin->summaryview->displayed
1324 && !mainwin->summaryview->selected)
1325 || (mainwin->summaryview->folder_item
1326 && mainwin->summaryview->folder_item->total_msgs == 0))) {
1327 g_signal_stop_emission_by_name(G_OBJECT(widget),
1329 folderview_select_next_unread(mainwin->folderview, TRUE);
1336 if (maemo_mainwindow_is_fullscreen(widget)) {
1337 gtk_window_unfullscreen(GTK_WINDOW(widget));
1339 gtk_window_fullscreen(GTK_WINDOW(widget));
1344 PangoFontDescription *font_desc;
1346 font_desc = pango_font_description_from_string(prefs_common.normalfont);
1347 size = pango_font_description_get_size(font_desc)/PANGO_SCALE;
1349 size++; pango_font_description_set_size(font_desc, size*PANGO_SCALE);
1350 g_free(prefs_common.normalfont);
1351 prefs_common.normalfont = pango_font_description_to_string(font_desc);
1352 main_window_reflect_prefs_all();
1354 pango_font_description_free(font_desc);
1355 font_desc = pango_font_description_from_string(prefs_common.textfont);
1356 size = pango_font_description_get_size(font_desc)/PANGO_SCALE;
1358 size++; pango_font_description_set_size(font_desc, size*PANGO_SCALE);
1359 g_free(prefs_common.textfont);
1360 prefs_common.textfont = pango_font_description_to_string(font_desc);
1361 main_window_reflect_prefs_all();
1363 pango_font_description_free(font_desc);
1368 PangoFontDescription *font_desc;
1370 font_desc = pango_font_description_from_string(prefs_common.normalfont);
1371 size = pango_font_description_get_size(font_desc)/PANGO_SCALE;
1373 size--; pango_font_description_set_size(font_desc, size*PANGO_SCALE);
1374 g_free(prefs_common.normalfont);
1375 prefs_common.normalfont = pango_font_description_to_string(font_desc);
1376 main_window_reflect_prefs_all();
1378 pango_font_description_free(font_desc);
1379 font_desc = pango_font_description_from_string(prefs_common.textfont);
1380 size = pango_font_description_get_size(font_desc)/PANGO_SCALE;
1382 size--; pango_font_description_set_size(font_desc, size*PANGO_SCALE);
1383 g_free(prefs_common.textfont);
1384 prefs_common.textfont = pango_font_description_to_string(font_desc);
1385 main_window_reflect_prefs_all();
1387 pango_font_description_free(font_desc);
1391 if (mainwin->summaryview &&
1392 mainwin->summaryview->ext_messageview &&
1393 mainwin->summaryview->ext_messageview->window &&
1394 widget == mainwin->summaryview->ext_messageview->window) {
1395 messageview_destroy(mainwin->summaryview->ext_messageview);
1405 #undef BREAK_ON_MODIFIER_KEY
1408 void mainwindow_maemo_led_set(gboolean state) {
1409 static gint last_state = -1;
1410 if (last_state == state)
1412 last_state = (gint)state;
1413 if (prefs_common.maemo_show_led) {
1415 execute_command_line("/usr/bin/dbus-send --system --type=method_call "
1416 "--dest=com.nokia.mce "
1417 "/com/nokia/mce/request com.nokia.mce.request.req_led_pattern_activate "
1418 "string:PatternCommunicationEvent", TRUE);
1419 execute_command_line("/usr/bin/dbus-send --system --type=method_call "
1420 "--dest=com.nokia.mce "
1421 "/com/nokia/mce/request com.nokia.mce.request.req_led_pattern_activate "
1422 "string:PatternCommunicationEmail", TRUE);
1424 execute_command_line("/usr/bin/dbus-send --system --type=method_call "
1425 "--dest=com.nokia.mce "
1426 "/com/nokia/mce/request com.nokia.mce.request.req_led_pattern_deactivate "
1427 "string:PatternCommunicationEvent", TRUE);
1428 execute_command_line("/usr/bin/dbus-send --system --type=method_call "
1429 "--dest=com.nokia.mce "
1430 "/com/nokia/mce/request com.nokia.mce.request.req_led_pattern_deactivate "
1431 "string:PatternCommunicationEmail", TRUE);
1436 static void led_update(FolderItem *removed_item)
1438 guint new, unread, unreadmarked, marked, total, replied;
1439 guint forwarded, locked, ignored, watched;
1441 folder_count_total_msgs(&new, &unread, &unreadmarked, &marked, &total,
1442 &replied, &forwarded, &locked, &ignored,
1445 total -= removed_item->total_msgs;
1446 new -= removed_item->new_msgs;
1447 unread -= removed_item->unread_msgs;
1451 mainwindow_maemo_led_set(TRUE);
1453 mainwindow_maemo_led_set(FALSE);
1456 static gboolean maemo_folder_item_update_hook(gpointer source, gpointer data)
1463 static gboolean maemo_folder_update_hook(gpointer source, gpointer data)
1465 FolderUpdateData *hookdata;
1467 if (hookdata->update_flags & FOLDER_REMOVE_FOLDERITEM)
1468 led_update(hookdata->item);
1475 static void main_window_install_maemo_hooks(MainWindow *mainwin)
1477 gint maemo_item_hook_id, maemo_folder_hook_id;
1479 maemo_item_hook_id = hooks_register_hook (FOLDER_ITEM_UPDATE_HOOKLIST, maemo_folder_item_update_hook, NULL);
1480 if (maemo_item_hook_id == -1) {
1484 maemo_folder_hook_id = hooks_register_hook (FOLDER_UPDATE_HOOKLIST, maemo_folder_update_hook, NULL);
1485 if (maemo_folder_hook_id == -1) {
1486 goto err_out_folder;
1492 hooks_unregister_hook(FOLDER_ITEM_UPDATE_HOOKLIST, maemo_item_hook_id);
1498 MainWindow *main_window_create()
1500 MainWindow *mainwin;
1504 GtkWidget *handlebox;
1505 GtkWidget *vbox_body;
1506 GtkWidget *menuitem;
1507 #ifndef GENERIC_UMPC
1508 GtkWidget *hbox_stat;
1509 GtkWidget *statusbar;
1510 GtkWidget *progressbar;
1511 GtkWidget *statuslabel;
1512 GtkWidget *ac_button;
1513 GtkWidget *ac_label;
1514 GtkWidget *online_pixmap;
1515 GtkWidget *offline_pixmap;
1516 GtkWidget *warning_icon;
1517 GtkWidget *warning_btn;
1520 GtkWidget *online_switch;
1521 GtkWidget *offline_switch;
1522 FolderView *folderview;
1523 SummaryView *summaryview;
1524 MessageView *messageview;
1525 GdkColormap *colormap;
1527 gboolean success[4];
1531 static GdkGeometry geometry;
1533 debug_print("Creating main window...\n");
1534 mainwin = g_new0(MainWindow, 1);
1537 window = GTK_WIDGET(gtkut_window_new(GTK_WINDOW_TOPLEVEL, "mainwindow"));
1538 gtk_window_set_title(GTK_WINDOW(window), PROG_VERSION);
1539 gtk_window_set_resizable(GTK_WINDOW(window), TRUE);
1541 prefs_common.layout_mode = SMALL_LAYOUT;
1543 if (!geometry.min_height) {
1544 geometry.min_width = 320;
1545 geometry.min_height = 200;
1547 gtk_window_set_geometry_hints(GTK_WINDOW(window), NULL, &geometry,
1550 g_signal_connect(G_OBJECT(window), "delete_event",
1551 G_CALLBACK(main_window_close_cb), mainwin);
1552 MANAGE_WINDOW_SIGNALS_CONNECT(window);
1553 g_signal_connect(G_OBJECT(window), "focus_in_event",
1554 G_CALLBACK(mainwindow_focus_in_event),
1556 g_signal_connect(G_OBJECT(window), "key_press_event",
1557 G_CALLBACK(mainwindow_key_pressed), mainwin);
1559 gtk_widget_realize(window);
1560 gtk_widget_add_events(window, GDK_KEY_PRESS_MASK|GDK_KEY_RELEASE_MASK);
1563 gtkut_widget_set_app_icon(window);
1565 vbox = gtk_vbox_new(FALSE, 0);
1566 gtk_widget_show(vbox);
1567 gtk_container_add(GTK_CONTAINER(window), vbox);
1571 mainwin->ui_manager = gtk_ui_manager_new();
1572 mainwin->action_group = cm_menu_create_action_group_full(mainwin->ui_manager,"Menu", mainwin_entries,
1573 G_N_ELEMENTS(mainwin_entries), (gpointer)mainwin);
1574 gtk_action_group_add_toggle_actions(mainwin->action_group, mainwin_toggle_entries,
1575 G_N_ELEMENTS(mainwin_toggle_entries), (gpointer)mainwin);
1576 gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_showhide_radio_entries,
1577 G_N_ELEMENTS(mainwin_showhide_radio_entries), C_AUTO, G_CALLBACK(toggle_toolbar_cb), (gpointer)mainwin);
1578 #ifndef GENERIC_UMPC
1579 gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_layout_radio_entries,
1580 G_N_ELEMENTS(mainwin_layout_radio_entries), C_AUTO, G_CALLBACK(set_layout_cb), (gpointer)mainwin);
1582 gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_sort_radio_entries,
1583 G_N_ELEMENTS(mainwin_sort_radio_entries), C_AUTO, G_CALLBACK(sort_summary_cb), (gpointer)mainwin);
1584 gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_sorttype_radio_entries,
1585 G_N_ELEMENTS(mainwin_sorttype_radio_entries), C_AUTO, G_CALLBACK(sort_summary_type_cb), (gpointer)mainwin);
1586 gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_radio_enc_entries,
1587 G_N_ELEMENTS(mainwin_radio_enc_entries), C_AUTO, G_CALLBACK(set_charset_cb), (gpointer)mainwin);
1588 gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_radio_dec_entries,
1589 G_N_ELEMENTS(mainwin_radio_dec_entries), C_AUTO, G_CALLBACK(set_decode_cb), (gpointer)mainwin);
1592 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/", "Menu", NULL, GTK_UI_MANAGER_MENUBAR)
1594 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/", "Menu", NULL, GTK_UI_MANAGER_POPUP)
1596 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "File", "File", GTK_UI_MANAGER_MENU)
1597 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Edit", "Edit", GTK_UI_MANAGER_MENU)
1598 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "View", "View", GTK_UI_MANAGER_MENU)
1599 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Message", "Message", GTK_UI_MANAGER_MENU)
1600 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Tools", "Tools", GTK_UI_MANAGER_MENU)
1601 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Configuration", "Configuration", GTK_UI_MANAGER_MENU)
1602 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Help", "Help", GTK_UI_MANAGER_MENU)
1605 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "AddMailbox", "File/AddMailbox", GTK_UI_MANAGER_MENU)
1606 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File/AddMailbox", "MH", "File/AddMailbox/MH", GTK_UI_MANAGER_MENUITEM)
1607 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator1", "File/---", GTK_UI_MANAGER_SEPARATOR)
1608 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "SortFolders", "File/SortFolders", GTK_UI_MANAGER_MENUITEM)
1609 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator2", "File/---", GTK_UI_MANAGER_SEPARATOR)
1610 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "ImportMbox", "File/ImportMbox", GTK_UI_MANAGER_MENUITEM)
1611 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "ExportMbox", "File/ExportMbox", GTK_UI_MANAGER_MENUITEM)
1612 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "ExportSelMbox", "File/ExportSelMbox", GTK_UI_MANAGER_MENUITEM)
1613 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator3", "File/---", GTK_UI_MANAGER_SEPARATOR)
1614 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "EmptyTrashes", "File/EmptyTrashes", GTK_UI_MANAGER_MENUITEM)
1615 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator4", "File/---", GTK_UI_MANAGER_SEPARATOR)
1616 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "SaveAs", "File/SaveAs", GTK_UI_MANAGER_MENUITEM)
1617 #if GTK_CHECK_VERSION(2,10,0) && !defined(USE_GNOMEPRINT)
1618 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "PageSetup", "File/PageSetup", GTK_UI_MANAGER_MENUITEM)
1620 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Print", "File/Print", GTK_UI_MANAGER_MENUITEM)
1621 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator5", "File/---", GTK_UI_MANAGER_SEPARATOR)
1622 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "OfflineMode", "File/OfflineMode", GTK_UI_MANAGER_MENUITEM)
1623 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "SynchroniseFolders", "File/SynchroniseFolders", GTK_UI_MANAGER_MENUITEM)
1624 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator6", "File/---", GTK_UI_MANAGER_SEPARATOR)
1625 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Exit", "File/Exit", GTK_UI_MANAGER_MENUITEM)
1628 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "Copy", "Edit/Copy", GTK_UI_MANAGER_MENUITEM)
1629 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "SelectAll", "Edit/SelectAll", GTK_UI_MANAGER_MENUITEM)
1630 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "SelectThread", "Edit/SelectThread", GTK_UI_MANAGER_MENUITEM)
1631 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "DeleteThread", "Edit/DeleteThread", GTK_UI_MANAGER_MENUITEM)
1632 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "Separator1", "Edit/---", GTK_UI_MANAGER_SEPARATOR)
1633 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "Find", "Edit/Find", GTK_UI_MANAGER_MENUITEM)
1634 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "SearchFolder", "Edit/SearchFolder", GTK_UI_MANAGER_MENUITEM)
1635 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "QuickSearch", "Edit/QuickSearch", GTK_UI_MANAGER_MENUITEM)
1638 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "ShowHide", "View/ShowHide", GTK_UI_MANAGER_MENU)
1639 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "Toolbar", "View/ShowHide/Toolbar", GTK_UI_MANAGER_MENU)
1640 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "TextBelowIcon", "View/ShowHide/Toolbar/TextBelowIcon", GTK_UI_MANAGER_MENUITEM)
1641 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "TextBesideIcon", "View/ShowHide/Toolbar/TextBesideIcon", GTK_UI_MANAGER_MENUITEM)
1642 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "IconOnly", "View/ShowHide/Toolbar/IconOnly", GTK_UI_MANAGER_MENUITEM)
1643 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "TextOnly", "View/ShowHide/Toolbar/TextOnly", GTK_UI_MANAGER_MENUITEM)
1644 #ifndef GENERIC_UMPC
1645 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "Hide", "View/ShowHide/Toolbar/Hide", GTK_UI_MANAGER_MENUITEM)
1647 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "MessageView", "View/ShowHide/MessageView", GTK_UI_MANAGER_MENUITEM)
1648 #ifndef GENERIC_UMPC
1649 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "StatusBar", "View/ShowHide/StatusBar", GTK_UI_MANAGER_MENUITEM)
1651 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "ColumnHeaders", "View/ShowHide/ColumnHeaders", GTK_UI_MANAGER_MENUITEM)
1652 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "SetColumns", "View/SetColumns", GTK_UI_MANAGER_MENU)
1653 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/SetColumns", "Folderlist", "View/SetColumns/Folderlist", GTK_UI_MANAGER_MENUITEM)
1654 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/SetColumns", "Messagelist", "View/SetColumns/Messagelist", GTK_UI_MANAGER_MENUITEM)
1655 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator1", "View/---", GTK_UI_MANAGER_SEPARATOR)
1658 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "FullScreen", "View/FullScreen", GTK_UI_MANAGER_MENUITEM)
1660 #ifndef GENERIC_UMPC
1661 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Layout", "View/Layout", GTK_UI_MANAGER_MENU)
1662 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "Standard", "View/Layout/Standard", GTK_UI_MANAGER_MENUITEM)
1663 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "ThreeColumns", "View/Layout/ThreeColumns", GTK_UI_MANAGER_MENUITEM)
1664 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "WideMessage", "View/Layout/WideMessage", GTK_UI_MANAGER_MENUITEM)
1665 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "WideMessageList", "View/Layout/WideMessageList", GTK_UI_MANAGER_MENUITEM)
1666 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "SmallScreen", "View/Layout/SmallScreen", GTK_UI_MANAGER_MENUITEM)
1667 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator2", "View/---", GTK_UI_MANAGER_SEPARATOR)
1670 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Sort", "View/Sort", GTK_UI_MANAGER_MENU)
1671 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Number", "View/Sort/Number", GTK_UI_MANAGER_MENUITEM)
1672 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Size", "View/Sort/Size", GTK_UI_MANAGER_MENUITEM)
1673 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Date", "View/Sort/Date", GTK_UI_MANAGER_MENUITEM)
1674 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "ThreadDate", "View/Sort/ThreadDate", GTK_UI_MANAGER_MENUITEM)
1675 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "From", "View/Sort/From", GTK_UI_MANAGER_MENUITEM)
1676 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "To", "View/Sort/To", GTK_UI_MANAGER_MENUITEM)
1677 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Subject", "View/Sort/Subject", GTK_UI_MANAGER_MENUITEM)
1678 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Color", "View/Sort/Color", GTK_UI_MANAGER_MENUITEM)
1679 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Tag", "View/Sort/Tag", GTK_UI_MANAGER_MENUITEM)
1680 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Mark", "View/Sort/Mark", GTK_UI_MANAGER_MENUITEM)
1681 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Status", "View/Sort/Status", GTK_UI_MANAGER_MENUITEM)
1682 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Attachment", "View/Sort/Attachment", GTK_UI_MANAGER_MENUITEM)
1683 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Score", "View/Sort/Score", GTK_UI_MANAGER_MENUITEM)
1684 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Locked", "View/Sort/Locked", GTK_UI_MANAGER_MENUITEM)
1685 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "DontSort", "View/Sort/DontSort", GTK_UI_MANAGER_MENUITEM)
1686 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Separator1", "View/Sort/---", GTK_UI_MANAGER_SEPARATOR)
1687 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Ascending", "View/Sort/Ascending", GTK_UI_MANAGER_MENUITEM)
1688 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Descending", "View/Sort/Descending", GTK_UI_MANAGER_MENUITEM)
1689 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Separator2", "View/Sort/---", GTK_UI_MANAGER_SEPARATOR)
1690 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "AttractSubj", "View/Sort/AttractSubj", GTK_UI_MANAGER_MENUITEM)
1692 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "ThreadView", "View/ThreadView", GTK_UI_MANAGER_MENUITEM)
1693 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "ExpandThreads", "View/ExpandThreads", GTK_UI_MANAGER_MENUITEM)
1694 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "CollapseThreads", "View/CollapseThreads", GTK_UI_MANAGER_MENUITEM)
1695 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "HideReadMessages", "View/HideReadMessages", GTK_UI_MANAGER_MENUITEM)
1696 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator3", "View/---", GTK_UI_MANAGER_SEPARATOR)
1698 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Goto", "View/Goto", GTK_UI_MANAGER_MENU)
1699 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Prev", "View/Goto/Prev", GTK_UI_MANAGER_MENUITEM)
1700 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Next", "View/Goto/Next", GTK_UI_MANAGER_MENUITEM)
1701 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator1", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1702 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevUnread", "View/Goto/PrevUnread", GTK_UI_MANAGER_MENUITEM)
1703 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextUnread", "View/Goto/NextUnread", GTK_UI_MANAGER_MENUITEM)
1704 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator2", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1705 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevNew", "View/Goto/PrevNew", GTK_UI_MANAGER_MENUITEM)
1706 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextNew", "View/Goto/NextNew", GTK_UI_MANAGER_MENUITEM)
1707 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator3", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1708 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevMarked", "View/Goto/PrevMarked", GTK_UI_MANAGER_MENUITEM)
1709 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextMarked", "View/Goto/NextMarked", GTK_UI_MANAGER_MENUITEM)
1710 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator4", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1711 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevLabeled", "View/Goto/PrevLabeled", GTK_UI_MANAGER_MENUITEM)
1712 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextLabeled", "View/Goto/NextLabeled", GTK_UI_MANAGER_MENUITEM)
1713 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator5", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1714 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "LastRead", "View/Goto/LastRead", GTK_UI_MANAGER_MENUITEM)
1715 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "ParentMessage", "View/Goto/ParentMessage", GTK_UI_MANAGER_MENUITEM)
1716 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator6", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1717 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextUnreadFolder", "View/Goto/NextUnreadFolder", GTK_UI_MANAGER_MENUITEM)
1718 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "OtherFolder", "View/Goto/OtherFolder", GTK_UI_MANAGER_MENUITEM)
1719 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator4", "View/---", GTK_UI_MANAGER_SEPARATOR)
1721 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Encoding", "View/Encoding", GTK_UI_MANAGER_MENU)
1722 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_AUTO, "View/Encoding/"CS_AUTO, GTK_UI_MANAGER_MENUITEM)
1723 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Separator1", "View/Encoding/---", GTK_UI_MANAGER_SEPARATOR)
1724 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_US_ASCII, "View/Encoding/"CS_US_ASCII, GTK_UI_MANAGER_MENUITEM)
1725 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_UTF_8, "View/Encoding/"CS_UTF_8, GTK_UI_MANAGER_MENUITEM)
1726 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Separator2", "View/Encoding/---", GTK_UI_MANAGER_SEPARATOR)
1728 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Western", "View/Encoding/Western", GTK_UI_MANAGER_MENU)
1729 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)
1730 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)
1731 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Western", CS_WINDOWS_1252, "View/Encoding/Western/"CS_WINDOWS_1252, GTK_UI_MANAGER_MENUITEM)
1733 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_ISO_8859_2, "View/Encoding/"CS_ISO_8859_2, GTK_UI_MANAGER_MENUITEM)
1735 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Baltic", "View/Encoding/Baltic", GTK_UI_MANAGER_MENU)
1736 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)
1737 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)
1739 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_ISO_8859_7, "View/Encoding/"CS_ISO_8859_7, GTK_UI_MANAGER_MENUITEM)
1741 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Hebrew", "View/Encoding/Hebrew", GTK_UI_MANAGER_MENU)
1742 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)
1743 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Hebrew", CS_WINDOWS_1255, "View/Encoding/Hebrew/"CS_WINDOWS_1255, GTK_UI_MANAGER_MENUITEM)
1745 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Arabic", "View/Encoding/Arabic", GTK_UI_MANAGER_MENU)
1746 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)
1747 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Arabic", CS_WINDOWS_1256, "View/Encoding/Arabic/"CS_WINDOWS_1256, GTK_UI_MANAGER_MENUITEM)
1749 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_ISO_8859_9, "View/Encoding/"CS_ISO_8859_9, GTK_UI_MANAGER_MENUITEM)
1751 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Cyrillic", "View/Encoding/Cyrillic", GTK_UI_MANAGER_MENU)
1752 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)
1753 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_KOI8_R, "View/Encoding/Cyrillic/"CS_KOI8_R, GTK_UI_MANAGER_MENUITEM)
1754 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_KOI8_U, "View/Encoding/Cyrillic/"CS_KOI8_U, GTK_UI_MANAGER_MENUITEM)
1755 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_WINDOWS_1251, "View/Encoding/Cyrillic/"CS_WINDOWS_1251, GTK_UI_MANAGER_MENUITEM)
1757 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Japanese", "View/Encoding/Japanese", GTK_UI_MANAGER_MENU)
1758 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)
1759 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)
1760 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Japanese", CS_EUC_JP, "View/Encoding/Japanese/"CS_EUC_JP, GTK_UI_MANAGER_MENUITEM)
1761 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Japanese", CS_SHIFT_JIS, "View/Encoding/Japanese/"CS_SHIFT_JIS, GTK_UI_MANAGER_MENUITEM)
1763 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Chinese", "View/Encoding/Chinese", GTK_UI_MANAGER_MENU)
1764 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_GB2312, "View/Encoding/Chinese/"CS_GB2312, GTK_UI_MANAGER_MENUITEM)
1765 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_GBK, "View/Encoding/Chinese/"CS_GBK, GTK_UI_MANAGER_MENUITEM)
1766 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_BIG5, "View/Encoding/Chinese/"CS_BIG5, GTK_UI_MANAGER_MENUITEM)
1767 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_EUC_TW, "View/Encoding/Chinese/"CS_EUC_TW, GTK_UI_MANAGER_MENUITEM)
1769 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Korean", "View/Encoding/Korean", GTK_UI_MANAGER_MENU)
1770 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Korean", CS_EUC_KR, "View/Encoding/Korean/"CS_EUC_KR, GTK_UI_MANAGER_MENUITEM)
1771 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)
1773 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Thai", "View/Encoding/Thai", GTK_UI_MANAGER_MENU)
1774 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Thai", CS_TIS_620, "View/Encoding/Thai/"CS_TIS_620, GTK_UI_MANAGER_MENUITEM)
1775 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Thai", CS_WINDOWS_874, "View/Encoding/Thai/"CS_WINDOWS_874, GTK_UI_MANAGER_MENUITEM)
1777 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Decode", "View/Decode", GTK_UI_MANAGER_MENU)
1778 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "AutoDetect", "View/Decode/AutoDetect", GTK_UI_MANAGER_MENUITEM)
1779 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "Separator1", "View/Decode/---", GTK_UI_MANAGER_SEPARATOR)
1780 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "8bit", "View/Decode/8bit", GTK_UI_MANAGER_MENUITEM)
1781 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "QP", "View/Decode/QP", GTK_UI_MANAGER_MENUITEM)
1782 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "B64", "View/Decode/B64", GTK_UI_MANAGER_MENUITEM)
1783 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "Uuencode", "View/Decode/Uuencode", GTK_UI_MANAGER_MENUITEM)
1784 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator5", "View/---", GTK_UI_MANAGER_SEPARATOR)
1786 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "OpenNewWindow", "View/OpenNewWindow", GTK_UI_MANAGER_MENUITEM)
1787 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "MessageSource", "View/MessageSource", GTK_UI_MANAGER_MENUITEM)
1788 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "AllHeaders", "View/AllHeaders", GTK_UI_MANAGER_MENUITEM)
1789 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Quotes", "View/Quotes", GTK_UI_MANAGER_MENU)
1790 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Quotes", "FoldAll", "View/Quotes/FoldAll", GTK_UI_MANAGER_MENUITEM)
1791 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Quotes", "Fold2", "View/Quotes/Fold2", GTK_UI_MANAGER_MENUITEM)
1792 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Quotes", "Fold3", "View/Quotes/Fold3", GTK_UI_MANAGER_MENUITEM)
1793 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator6", "View/---", GTK_UI_MANAGER_SEPARATOR)
1794 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "UpdateSummary", "View/UpdateSummary", GTK_UI_MANAGER_MENUITEM)
1797 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Receive", "Message/Receive", GTK_UI_MANAGER_MENU)
1798 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "CurrentAccount", "Message/Receive/CurrentAccount", GTK_UI_MANAGER_MENUITEM)
1799 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "AllAccounts", "Message/Receive/AllAccounts", GTK_UI_MANAGER_MENUITEM)
1800 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "CancelReceiving", "Message/Receive/CancelReceiving", GTK_UI_MANAGER_MENUITEM)
1801 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "Separator1", "Message/Receive/---", GTK_UI_MANAGER_SEPARATOR)
1802 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "PlaceHolder", "Message/Receive/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1803 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "SendQueue", "Message/SendQueue", GTK_UI_MANAGER_MENUITEM)
1804 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator1", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1806 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ComposeEmail", "Message/ComposeEmail", GTK_UI_MANAGER_MENUITEM)
1807 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ComposeNews", "Message/ComposeNews", GTK_UI_MANAGER_MENUITEM)
1808 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Reply", "Message/Reply", GTK_UI_MANAGER_MENUITEM)
1809 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ReplyTo", "Message/ReplyTo", GTK_UI_MANAGER_MENU)
1810 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/ReplyTo", "All", "Message/ReplyTo/All", GTK_UI_MANAGER_MENUITEM)
1811 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/ReplyTo", "Sender", "Message/ReplyTo/Sender", GTK_UI_MANAGER_MENUITEM)
1812 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/ReplyTo", "List", "Message/ReplyTo/List", GTK_UI_MANAGER_MENUITEM)
1813 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "FollowupReply", "Message/FollowupReply", GTK_UI_MANAGER_MENUITEM)
1814 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator2", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1816 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Forward", "Message/Forward", GTK_UI_MANAGER_MENUITEM)
1817 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ForwardAtt", "Message/ForwardAtt", GTK_UI_MANAGER_MENUITEM)
1818 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Redirect", "Message/Redirect", GTK_UI_MANAGER_MENUITEM)
1819 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "MailingList", "Message/MailingList", GTK_UI_MANAGER_MENU)
1820 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "Post", "Message/MailingList/Post", GTK_UI_MANAGER_MENU)
1821 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "Help", "Message/MailingList/Help", GTK_UI_MANAGER_MENU)
1822 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "Subscribe", "Message/MailingList/Subscribe", GTK_UI_MANAGER_MENU)
1823 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "Unsubscribe", "Message/MailingList/Unsubscribe", GTK_UI_MANAGER_MENU)
1824 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "ViewArchive", "Message/MailingList/ViewArchive", GTK_UI_MANAGER_MENU)
1825 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "ContactOwner", "Message/MailingList/ContactOwner", GTK_UI_MANAGER_MENU)
1826 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/Post", "PlaceHolder", "Message/MailingList/Post/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1827 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/Help", "PlaceHolder", "Message/MailingList/Help/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1828 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/Subscribe", "PlaceHolder", "Message/MailingList/Subscribe/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1829 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/Unsubscribe", "PlaceHolder", "Message/MailingList/Unsubscribe/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1830 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/ViewArchive", "PlaceHolder", "Message/MailingList/ViewArchive/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1831 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/ContactOwner", "PlaceHolder", "Message/MailingList/ContactOwner/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1832 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator3", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1834 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Move", "Message/Move", GTK_UI_MANAGER_MENUITEM)
1835 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Copy", "Message/Copy", GTK_UI_MANAGER_MENUITEM)
1836 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Trash", "Message/Trash", GTK_UI_MANAGER_MENUITEM)
1837 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Delete", "Message/Delete", GTK_UI_MANAGER_MENUITEM)
1838 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "CancelNews", "Message/CancelNews", GTK_UI_MANAGER_MENUITEM)
1839 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator4", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1841 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Mark", "Message/Mark", GTK_UI_MANAGER_MENU)
1842 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Mark", "Message/Mark/Mark", GTK_UI_MANAGER_MENUITEM)
1843 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Unmark", "Message/Mark/Unmark", GTK_UI_MANAGER_MENUITEM)
1844 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator1", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1845 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkUnread", "Message/Mark/MarkUnread", GTK_UI_MANAGER_MENUITEM)
1846 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkRead", "Message/Mark/MarkRead", GTK_UI_MANAGER_MENUITEM)
1847 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkAllRead", "Message/Mark/MarkAllRead", GTK_UI_MANAGER_MENUITEM)
1848 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "IgnoreThread", "Message/Mark/IgnoreThread", GTK_UI_MANAGER_MENUITEM)
1849 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "UnignoreThread", "Message/Mark/UnignoreThread", GTK_UI_MANAGER_MENUITEM)
1850 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "WatchThread", "Message/Mark/WatchThread", GTK_UI_MANAGER_MENUITEM)
1851 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "UnwatchThread", "Message/Mark/UnwatchThread", GTK_UI_MANAGER_MENUITEM)
1852 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator2", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1853 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkSpam", "Message/Mark/MarkSpam", GTK_UI_MANAGER_MENUITEM)
1854 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkHam", "Message/Mark/MarkHam", GTK_UI_MANAGER_MENUITEM)
1855 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator3", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1856 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Lock", "Message/Mark/Lock", GTK_UI_MANAGER_MENUITEM)
1857 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Unlock", "Message/Mark/Unlock", GTK_UI_MANAGER_MENUITEM)
1858 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ColorLabel", "Message/ColorLabel", GTK_UI_MANAGER_MENUITEM)
1859 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Tags", "Message/Tags", GTK_UI_MANAGER_MENUITEM)
1860 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator5", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1862 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Reedit", "Message/Reedit", GTK_UI_MANAGER_MENUITEM)
1863 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator6", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1866 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "AddressBook", "Tools/AddressBook", GTK_UI_MANAGER_MENUITEM)
1867 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "AddSenderToAB", "Tools/AddSenderToAB", GTK_UI_MANAGER_MENUITEM)
1868 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "CollectAddresses", "Tools/CollectAddresses", GTK_UI_MANAGER_MENU)
1869 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CollectAddresses", "FromFolder", "Tools/CollectAddresses/FromFolder", GTK_UI_MANAGER_MENUITEM)
1870 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CollectAddresses", "FromSelected", "Tools/CollectAddresses/FromSelected", GTK_UI_MANAGER_MENUITEM)
1871 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator1", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1873 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "FilterFolder", "Tools/FilterFolder", GTK_UI_MANAGER_MENUITEM)
1874 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "FilterSelected", "Tools/FilterSelected", GTK_UI_MANAGER_MENUITEM)
1875 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "RunProcessing", "Tools/RunProcessing", GTK_UI_MANAGER_MENUITEM)
1876 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "CreateFilterRule", "Tools/CreateFilterRule", GTK_UI_MANAGER_MENU)
1877 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateFilterRule", "Automatically", "Tools/CreateFilterRule/Automatically", GTK_UI_MANAGER_MENUITEM)
1878 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateFilterRule", "ByFrom", "Tools/CreateFilterRule/ByFrom", GTK_UI_MANAGER_MENUITEM)
1879 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateFilterRule", "ByTo", "Tools/CreateFilterRule/ByTo", GTK_UI_MANAGER_MENUITEM)
1880 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateFilterRule", "BySubject", "Tools/CreateFilterRule/BySubject", GTK_UI_MANAGER_MENUITEM)
1882 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "CreateProcessingRule", "Tools/CreateProcessingRule", GTK_UI_MANAGER_MENU)
1883 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateProcessingRule", "Automatically", "Tools/CreateProcessingRule/Automatically", GTK_UI_MANAGER_MENUITEM)
1884 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateProcessingRule", "ByFrom", "Tools/CreateProcessingRule/ByFrom", GTK_UI_MANAGER_MENUITEM)
1885 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateProcessingRule", "ByTo", "Tools/CreateProcessingRule/ByTo", GTK_UI_MANAGER_MENUITEM)
1886 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateProcessingRule", "BySubject", "Tools/CreateProcessingRule/BySubject", GTK_UI_MANAGER_MENUITEM)
1887 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator2", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1889 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "ListUrls", "Tools/ListUrls", GTK_UI_MANAGER_MENUITEM)
1890 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator3", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1892 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Actions", "Tools/Actions", GTK_UI_MANAGER_MENU)
1893 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/Actions", "PlaceHolder", "Tools/Actions/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1894 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator4", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1896 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "CheckNewMessages", "Tools/CheckNewMessages", GTK_UI_MANAGER_MENUITEM)
1897 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "DeleteDuplicates", "Tools/DeleteDuplicates", GTK_UI_MANAGER_MENU)
1898 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/DeleteDuplicates", "SelFolder", "Tools/DeleteDuplicates/SelFolder", GTK_UI_MANAGER_MENUITEM)
1899 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/DeleteDuplicates", "AllFolders", "Tools/DeleteDuplicates/AllFolders", GTK_UI_MANAGER_MENUITEM)
1900 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator5", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1902 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Execute", "Tools/Execute", GTK_UI_MANAGER_MENUITEM)
1904 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator6", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1905 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "SSLCertificates", "Tools/SSLCertificates", GTK_UI_MANAGER_MENUITEM)
1907 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator7", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1909 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "FilteringLog", "Tools/FilteringLog", GTK_UI_MANAGER_MENUITEM)
1911 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "NetworkLog", "Tools/NetworkLog", GTK_UI_MANAGER_MENUITEM)
1912 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator8", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1913 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "ForgetSessionPasswords", "Tools/ForgetSessionPasswords", GTK_UI_MANAGER_MENUITEM)
1914 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator9", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1916 /* Configuration menu */
1917 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "ChangeAccount", "Configuration/ChangeAccount", GTK_UI_MANAGER_MENU)
1918 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration/ChangeAccount", "PlaceHolder", "Configuration/ChangeAccount/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1919 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "AccountPrefs", "Configuration/AccountPrefs", GTK_UI_MANAGER_MENUITEM)
1920 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "CreateAccount", "Configuration/CreateAccount", GTK_UI_MANAGER_MENUITEM)
1921 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "EditAccounts", "Configuration/EditAccounts", GTK_UI_MANAGER_MENUITEM)
1922 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Separator1", "Configuration/---", GTK_UI_MANAGER_SEPARATOR)
1924 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Preferences", "Configuration/Preferences", GTK_UI_MANAGER_MENUITEM)
1925 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "PreProcessing", "Configuration/PreProcessing", GTK_UI_MANAGER_MENUITEM)
1926 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "PostProcessing", "Configuration/PostProcessing", GTK_UI_MANAGER_MENUITEM)
1927 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Filtering", "Configuration/Filtering", GTK_UI_MANAGER_MENUITEM)
1928 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Templates", "Configuration/Templates", GTK_UI_MANAGER_MENUITEM)
1929 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Actions", "Configuration/Actions", GTK_UI_MANAGER_MENUITEM)
1930 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Tags", "Configuration/Tags", GTK_UI_MANAGER_MENUITEM)
1932 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Separator2", "Configuration/---", GTK_UI_MANAGER_SEPARATOR)
1933 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Plugins", "Configuration/Plugins", GTK_UI_MANAGER_MENUITEM)
1936 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "Manual", "Help/Manual", GTK_UI_MANAGER_MENUITEM)
1937 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "FAQ", "Help/FAQ", GTK_UI_MANAGER_MENUITEM)
1938 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "IconLegend", "Help/IconLegend", GTK_UI_MANAGER_MENUITEM)
1940 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "Separator1", "Help/---", GTK_UI_MANAGER_SEPARATOR)
1941 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "SetDefault", "Help/SetDefault", GTK_UI_MANAGER_MENUITEM)
1943 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "Separator2", "Help/---", GTK_UI_MANAGER_SEPARATOR)
1944 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "About", "Help/About", GTK_UI_MANAGER_MENUITEM)
1947 menubar = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu");
1948 gtk_widget_show_all(menubar);
1949 gtk_window_add_accel_group(GTK_WINDOW(window), gtk_ui_manager_get_accel_group(mainwin->ui_manager));
1952 gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, TRUE, 0);
1954 hildon_window_set_menu(HILDON_WINDOW(window), GTK_MENU(menubar));
1957 if (prefs_common.toolbar_detachable) {
1958 handlebox = gtk_handle_box_new();
1959 gtk_widget_show(handlebox);
1960 gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
1961 g_signal_connect(G_OBJECT(handlebox), "child_attached",
1962 G_CALLBACK(toolbar_child_attached), mainwin);
1963 g_signal_connect(G_OBJECT(handlebox), "child_detached",
1964 G_CALLBACK(toolbar_child_detached), mainwin);
1966 handlebox = gtk_hbox_new(FALSE, 0);
1967 gtk_widget_show(handlebox);
1968 gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
1970 /* link window to mainwin->window to avoid gdk warnings */
1971 mainwin->window = window;
1972 mainwin_list = g_list_append(mainwin_list, mainwin);
1975 mainwin->toolbar = toolbar_create(TOOLBAR_MAIN,
1979 mainwin->toolbar = toolbar_create(TOOLBAR_MAIN,
1983 toolbar_set_learn_button
1987 /* vbox that contains body */
1988 vbox_body = gtk_vbox_new(FALSE, BORDER_WIDTH);
1989 gtk_widget_show(vbox_body);
1990 gtk_container_set_border_width(GTK_CONTAINER(vbox_body), BORDER_WIDTH);
1991 gtk_box_pack_start(GTK_BOX(vbox), vbox_body, TRUE, TRUE, 0);
1993 #ifndef GENERIC_UMPC
1994 hbox_stat = gtk_hbox_new(FALSE, 2);
1995 gtk_box_pack_end(GTK_BOX(vbox_body), hbox_stat, FALSE, FALSE, 0);
1997 warning_icon = gtk_image_new_from_stock
1998 (GTK_STOCK_DIALOG_WARNING, GTK_ICON_SIZE_SMALL_TOOLBAR);
1999 warning_btn = gtk_event_box_new();
2000 gtk_event_box_set_visible_window(GTK_EVENT_BOX(warning_btn), FALSE);
2002 mainwin->warning_btn = warning_btn;
2004 g_signal_connect(G_OBJECT(warning_btn), "button-press-event",
2005 G_CALLBACK(warning_icon_pressed),
2006 (gpointer) mainwin);
2007 g_signal_connect(G_OBJECT(warning_btn), "visibility-notify-event",
2008 G_CALLBACK(warning_visi_notify), mainwin);
2009 g_signal_connect(G_OBJECT(warning_btn), "motion-notify-event",
2010 G_CALLBACK(warning_visi_notify), mainwin);
2011 g_signal_connect(G_OBJECT(warning_btn), "leave-notify-event",
2012 G_CALLBACK(warning_leave_notify), mainwin);
2013 g_signal_connect(G_OBJECT(warning_btn), "enter-notify-event",
2014 G_CALLBACK(warning_enter_notify), mainwin);
2016 gtk_container_add (GTK_CONTAINER(warning_btn), warning_icon);
2018 CLAWS_SET_TIP(warning_btn,
2019 _("Some error(s) happened. Click here to view log."));
2020 gtk_box_pack_start(GTK_BOX(hbox_stat), warning_btn, FALSE, FALSE, 0);
2022 statusbar = statusbar_create();
2023 gtk_box_pack_start(GTK_BOX(hbox_stat), statusbar, TRUE, TRUE, 0);
2025 progressbar = gtk_progress_bar_new();
2026 gtk_widget_set_size_request(progressbar, 120, 1);
2027 gtk_box_pack_start(GTK_BOX(hbox_stat), progressbar, FALSE, FALSE, 0);
2029 online_pixmap = stock_pixmap_widget(hbox_stat, STOCK_PIXMAP_ONLINE);
2030 offline_pixmap = stock_pixmap_widget(hbox_stat, STOCK_PIXMAP_OFFLINE);
2031 online_switch = gtk_button_new ();
2032 CLAWS_SET_TIP(online_switch,
2033 _("You are online. Click the icon to go offline"));
2034 offline_switch = gtk_button_new ();
2035 CLAWS_SET_TIP(offline_switch,
2036 _("You are offline. Click the icon to go online"));
2037 gtk_container_add (GTK_CONTAINER(online_switch), online_pixmap);
2038 gtk_button_set_relief (GTK_BUTTON(online_switch), GTK_RELIEF_NONE);
2039 g_signal_connect (G_OBJECT(online_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
2040 gtk_box_pack_start (GTK_BOX(hbox_stat), online_switch, FALSE, FALSE, 0);
2041 gtk_container_add (GTK_CONTAINER(offline_switch), offline_pixmap);
2042 gtk_button_set_relief (GTK_BUTTON(offline_switch), GTK_RELIEF_NONE);
2043 g_signal_connect (G_OBJECT(offline_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
2044 gtk_box_pack_start (GTK_BOX(hbox_stat), offline_switch, FALSE, FALSE, 0);
2046 statuslabel = gtk_label_new("");
2047 gtk_box_pack_start(GTK_BOX(hbox_stat), statuslabel, FALSE, FALSE, 0);
2049 ac_button = gtk_button_new();
2050 CLAWS_SET_TIP(ac_button, _("Select account"));
2051 GTK_WIDGET_UNSET_FLAGS(ac_button, GTK_CAN_FOCUS);
2052 gtk_widget_set_size_request(ac_button, -1, 0);
2053 gtk_box_pack_end(GTK_BOX(hbox_stat), ac_button, FALSE, FALSE, 0);
2054 g_signal_connect(G_OBJECT(ac_button), "button_press_event",
2055 G_CALLBACK(ac_label_button_pressed), mainwin);
2057 ac_label = gtk_label_new("");
2058 gtk_container_add(GTK_CONTAINER(ac_button), ac_label);
2060 gtk_widget_show_all(hbox_stat);
2062 gtk_widget_hide(offline_switch);
2063 gtk_widget_hide(warning_btn);
2065 online_switch = gtk_button_new ();
2066 offline_switch = gtk_button_new ();
2067 g_signal_connect (G_OBJECT(online_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
2068 g_signal_connect (G_OBJECT(offline_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
2071 mainwin->folderview = folderview = folderview_create();
2072 mainwin->summaryview = summaryview = summary_create(mainwin);
2073 mainwin->messageview = messageview = messageview_create(mainwin);
2075 /* init log instances data before creating log views */
2076 set_log_title(LOG_PROTOCOL, _("Network log"));
2077 set_log_prefs(LOG_PROTOCOL,
2078 &prefs_common.logwin_width,
2079 &prefs_common.logwin_height);
2080 set_log_title(LOG_DEBUG_FILTERING, _("Filtering/processing debug log"));
2081 set_log_prefs(LOG_DEBUG_FILTERING,
2082 &prefs_common.filtering_debugwin_width,
2083 &prefs_common.filtering_debugwin_height);
2085 /* setup log windows */
2086 mainwin->logwin = log_window_create(LOG_PROTOCOL);
2087 log_window_init(mainwin->logwin);
2089 mainwin->filtering_debugwin = log_window_create(LOG_DEBUG_FILTERING);
2090 log_window_set_clipping(mainwin->logwin,
2091 prefs_common.cliplog,
2092 prefs_common.loglength);
2094 log_window_init(mainwin->filtering_debugwin);
2095 log_window_set_clipping(mainwin->filtering_debugwin,
2096 prefs_common.filtering_debug_cliplog,
2097 prefs_common.filtering_debug_loglength);
2098 if (prefs_common.enable_filtering_debug)
2099 log_message(LOG_DEBUG_FILTERING, _("filtering log enabled\n"));
2101 log_message(LOG_DEBUG_FILTERING, _("filtering log disabled\n"));
2103 folderview->mainwin = mainwin;
2104 folderview->summaryview = summaryview;
2106 summaryview->mainwin = mainwin;
2107 summaryview->folderview = folderview;
2108 summaryview->messageview = messageview;
2109 summaryview->window = window;
2111 mainwin->vbox = vbox;
2112 mainwin->menubar = menubar;
2113 mainwin->handlebox = handlebox;
2114 mainwin->vbox_body = vbox_body;
2115 mainwin->online_switch = online_switch;
2116 mainwin->offline_switch = offline_switch;
2117 #ifndef GENERIC_UMPC
2118 messageview->statusbar = statusbar;
2119 mainwin->statusbar = statusbar;
2120 mainwin->hbox_stat = hbox_stat;
2121 mainwin->progressbar = progressbar;
2122 mainwin->statuslabel = statuslabel;
2123 mainwin->online_pixmap = online_pixmap;
2124 mainwin->offline_pixmap = offline_pixmap;
2125 mainwin->ac_button = ac_button;
2126 mainwin->ac_label = ac_label;
2127 /* set context IDs for status bar */
2128 mainwin->mainwin_cid = gtk_statusbar_get_context_id
2129 (GTK_STATUSBAR(statusbar), "Main Window");
2130 mainwin->folderview_cid = gtk_statusbar_get_context_id
2131 (GTK_STATUSBAR(statusbar), "Folder View");
2132 mainwin->summaryview_cid = gtk_statusbar_get_context_id
2133 (GTK_STATUSBAR(statusbar), "Summary View");
2134 mainwin->messageview_cid = gtk_statusbar_get_context_id
2135 (GTK_STATUSBAR(statusbar), "Message View");
2136 messageview->statusbar_cid = mainwin->messageview_cid;
2139 messageview->statusbar = NULL;
2140 mainwin->statusbar = NULL;
2141 mainwin->hbox_stat = NULL;
2142 /* mainwin->progressbar is set in toolbar.c */
2143 mainwin->statuslabel = NULL;
2144 mainwin->online_pixmap = NULL;
2145 mainwin->offline_pixmap = NULL;
2146 mainwin->ac_button = NULL;
2147 mainwin->ac_label = NULL;
2150 /* allocate colors for summary view and folder view */
2151 summaryview->color_marked.red = summaryview->color_marked.green = 0;
2152 summaryview->color_marked.blue = (guint16)65535;
2154 summaryview->color_dim.red = summaryview->color_dim.green =
2155 summaryview->color_dim.blue = COLOR_DIM;
2157 gtkut_convert_int_to_gdk_color(prefs_common.color_new,
2158 &folderview->color_new);
2160 gtkut_convert_int_to_gdk_color(prefs_common.tgt_folder_col,
2161 &folderview->color_op);
2163 summaryview->color_important.red = 0;
2164 summaryview->color_important.green = 0;
2165 summaryview->color_important.blue = (guint16)65535;
2167 color[0] = summaryview->color_marked;
2168 color[1] = summaryview->color_dim;
2169 color[2] = folderview->color_new;
2170 color[3] = folderview->color_op;
2172 colormap = gdk_drawable_get_colormap(window->window);
2173 gdk_colormap_alloc_colors(colormap, color, 4, FALSE, TRUE, success);
2174 for (i = 0; i < 4; i++) {
2175 if (success[i] == FALSE)
2176 g_warning("MainWindow: color allocation %d failed\n", i);
2179 debug_print("done.\n");
2181 messageview->visible = prefs_common.msgview_visible;
2183 main_window_set_widgets(mainwin, prefs_common.layout_mode);
2185 g_signal_connect(G_OBJECT(window), "size_allocate",
2186 G_CALLBACK(main_window_size_allocate_cb),
2189 /* set menu items */
2190 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Encoding/"CS_AUTO, TRUE);
2193 switch (prefs_common.toolbar_style) {
2195 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/Hide");
2198 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/IconOnly");
2201 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/TextOnly");
2204 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/TextBelowIcon");
2206 case TOOLBAR_BOTH_HORIZ:
2207 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/TextBesideIcon");
2209 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), TRUE);
2211 toolbar_set_style(mainwin->toolbar->toolbar,
2213 prefs_common.toolbar_style);
2214 #ifndef GENERIC_UMPC
2215 gtk_widget_hide(mainwin->hbox_stat);
2216 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/StatusBar");
2217 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
2218 prefs_common.show_statusbar);
2220 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/ColumnHeaders");
2221 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
2222 prefs_common.show_col_headers);
2223 /* set account selection menu */
2224 ac_menu = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Configuration/ChangeAccount");
2225 mainwin->ac_menu = ac_menu;
2227 toolbar_main_set_sensitive(mainwin);
2229 /* create actions menu */
2230 main_window_update_actions_menu(mainwin);
2232 main_create_mailing_list_menu (mainwin, NULL);
2234 /* attach accel groups to main window */
2235 #define ADD_MENU_ACCEL_GROUP_TO_WINDOW(menu,win) \
2236 gtk_window_add_accel_group \
2238 gtk_ui_manager_get_accel_group(gtkut_ui_manager())); \
2239 g_signal_connect(G_OBJECT(gtk_ui_manager_get_accel_group(gtkut_ui_manager())), \
2241 G_CALLBACK(main_window_accel_activate), mainwin);
2243 ADD_MENU_ACCEL_GROUP_TO_WINDOW(summaryview->popupmenu, mainwin->window);
2245 #ifndef GENERIC_UMPC
2246 gtk_window_iconify(GTK_WINDOW(mainwin->window));
2249 g_signal_connect(G_OBJECT(window), "window_state_event",
2250 G_CALLBACK(mainwindow_state_event_cb), mainwin);
2251 g_signal_connect(G_OBJECT(window), "visibility_notify_event",
2252 G_CALLBACK(mainwindow_visibility_event_cb), mainwin);
2253 gtk_widget_add_events(GTK_WIDGET(window), GDK_VISIBILITY_NOTIFY_MASK);
2255 if (prefs_common.layout_mode == VERTICAL_LAYOUT ||
2256 prefs_common.layout_mode == SMALL_LAYOUT) {
2257 summary_relayout(mainwin->summaryview);
2259 summary_update_unread(mainwin->summaryview, NULL);
2261 gtk_widget_show(mainwin->window);
2263 /* initialize views */
2264 folderview_init(folderview);
2265 summary_init(summaryview);
2266 messageview_init(messageview);
2268 sslcertwindow_register_hook();
2270 mainwin->lock_count = 0;
2271 mainwin->menu_lock_count = 0;
2272 mainwin->cursor_count = 0;
2274 mainwin->progressindicator_hook =
2275 hooks_register_hook(PROGRESSINDICATOR_HOOKLIST, mainwindow_progressindicator_hook, mainwin);
2278 watch_cursor = gdk_cursor_new(GDK_WATCH);
2280 hand_cursor = gdk_cursor_new(GDK_HAND2);
2282 /* init work_offline */
2283 if (prefs_common.work_offline)
2284 online_switch_clicked (GTK_BUTTON(online_switch), mainwin);
2286 mainwindow_colorlabel_menu_create(mainwin, FALSE);
2287 mainwindow_tags_menu_create(mainwin, FALSE);
2290 main_window_install_maemo_hooks(mainwin);
2293 if (prefs_common.mainwin_fullscreen) {
2294 cm_toggle_menu_set_active_full(mainwin->ui_manager,
2295 "Menu/View/FullScreen",
2302 void main_window_update_actions_menu(MainWindow *mainwin)
2304 action_update_mainwin_menu(mainwin->ui_manager, "/Menu/Tools/Actions", mainwin);
2307 void main_window_cursor_wait(MainWindow *mainwin)
2310 if (mainwin->cursor_count == 0) {
2311 gdk_window_set_cursor(mainwin->window->window, watch_cursor);
2312 textview_cursor_wait(mainwin->messageview->mimeview->textview);
2315 mainwin->cursor_count++;
2320 void main_window_cursor_normal(MainWindow *mainwin)
2322 if (mainwin->cursor_count)
2323 mainwin->cursor_count--;
2325 if (mainwin->cursor_count == 0) {
2326 gdk_window_set_cursor(mainwin->window->window, NULL);
2327 textview_cursor_normal(mainwin->messageview->mimeview->textview);
2332 /* lock / unlock the user-interface */
2333 void main_window_lock(MainWindow *mainwin)
2335 if (mainwin->lock_count == 0 && mainwin->ac_button)
2336 gtk_widget_set_sensitive(mainwin->ac_button, FALSE);
2338 mainwin->lock_count++;
2340 main_window_set_menu_sensitive(mainwin);
2341 toolbar_main_set_sensitive(mainwin);
2344 void main_window_unlock(MainWindow *mainwin)
2346 if (mainwin->lock_count)
2347 mainwin->lock_count--;
2349 main_window_set_menu_sensitive(mainwin);
2350 toolbar_main_set_sensitive(mainwin);
2352 if (mainwin->lock_count == 0 && mainwin->ac_button)
2353 gtk_widget_set_sensitive(mainwin->ac_button, TRUE);
2356 static void main_window_menu_callback_block(MainWindow *mainwin)
2358 mainwin->menu_lock_count++;
2361 static void main_window_menu_callback_unblock(MainWindow *mainwin)
2363 if (mainwin->menu_lock_count)
2364 mainwin->menu_lock_count--;
2367 static guint prefs_tag = 0;
2369 void main_window_reflect_prefs_all(void)
2371 main_window_reflect_prefs_all_real(FALSE);
2374 static gboolean reflect_prefs_timeout_cb(gpointer data)
2376 gboolean pixmap_theme_changed = GPOINTER_TO_INT(data);
2378 MainWindow *mainwin;
2379 #ifndef GENERIC_UMPC
2382 for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2383 mainwin = (MainWindow *)cur->data;
2385 main_window_show_cur_account(mainwin);
2386 main_window_set_menu_sensitive(mainwin);
2387 toolbar_main_set_sensitive(mainwin);
2390 if (pixmap_theme_changed) {
2391 toolbar_update(TOOLBAR_MAIN, mainwin);
2392 messageview_reflect_prefs_pixmap_theme();
2393 compose_reflect_prefs_pixmap_theme();
2394 folderview_reflect_prefs_pixmap_theme(mainwin->folderview);
2395 summary_reflect_prefs_pixmap_theme(mainwin->summaryview);
2396 #ifndef GENERIC_UMPC
2397 pixmap = stock_pixmap_widget(mainwin->hbox_stat, STOCK_PIXMAP_ONLINE);
2398 gtk_container_remove(GTK_CONTAINER(mainwin->online_switch),
2399 mainwin->online_pixmap);
2400 gtk_container_add (GTK_CONTAINER(mainwin->online_switch), pixmap);
2401 gtk_widget_show(pixmap);
2402 mainwin->online_pixmap = pixmap;
2403 pixmap = stock_pixmap_widget(mainwin->hbox_stat, STOCK_PIXMAP_OFFLINE);
2404 gtk_container_remove(GTK_CONTAINER(mainwin->offline_switch),
2405 mainwin->offline_pixmap);
2406 gtk_container_add (GTK_CONTAINER(mainwin->offline_switch), pixmap);
2407 gtk_widget_show(pixmap);
2408 mainwin->offline_pixmap = pixmap;
2410 hooks_invoke(THEME_CHANGED_HOOKLIST, NULL);
2413 headerview_set_font(mainwin->messageview->headerview);
2414 headerview_set_visibility(mainwin->messageview->headerview,
2415 prefs_common.display_header_pane);
2416 textview_reflect_prefs(mainwin->messageview->mimeview->textview);
2417 folderview_reflect_prefs();
2418 summary_reflect_prefs();
2419 #ifndef GENERIC_UMPC
2420 summary_redisplay_msg(mainwin->summaryview);
2422 if (prefs_common.layout_mode == SMALL_LAYOUT) {
2423 if (mainwin->in_folder) {
2424 mainwindow_enter_folder(mainwin);
2426 mainwindow_exit_folder(mainwin);
2434 void main_window_reflect_prefs_all_now(void)
2436 reflect_prefs_timeout_cb(GINT_TO_POINTER(FALSE));
2439 void main_window_reflect_prefs_custom_colors(MainWindow *mainwin)
2444 /* re-create colorlabel submenu */
2445 menu = GTK_MENU_SHELL(mainwin->colorlabel_menu);
2446 g_return_if_fail(menu != NULL);
2448 /* clear items. get item pointers. */
2449 for (cur = menu->children; cur != NULL && cur->data != NULL; cur = cur->next) {
2450 g_signal_handlers_disconnect_matched
2451 (gtk_ui_manager_get_accel_group(mainwin->ui_manager),
2452 G_SIGNAL_MATCH_DATA|G_SIGNAL_MATCH_FUNC,
2453 0, 0, NULL, mainwin_accel_changed_cb, cur->data);
2454 gtk_menu_item_set_submenu(GTK_MENU_ITEM(cur->data), NULL);
2456 mainwindow_colorlabel_menu_create(mainwin, TRUE);
2457 summary_reflect_prefs_custom_colors(mainwin->summaryview);
2461 static gint tags_tag = 0;
2462 static gboolean main_window_reflect_tags_changes_real(gpointer data)
2466 MainWindow *mainwin = (MainWindow *)data;
2468 if (summary_is_locked(mainwin->summaryview)) {
2472 /* re-create tags submenu */
2473 menu = GTK_MENU_SHELL(mainwin->tags_menu);
2474 g_return_val_if_fail(menu != NULL, FALSE);
2476 /* clear items. get item pointers. */
2477 for (cur = menu->children; cur != NULL && cur->data != NULL; cur = cur->next) {
2478 gtk_menu_item_set_submenu(GTK_MENU_ITEM(cur->data), NULL);
2480 mainwindow_tags_menu_create(mainwin, TRUE);
2481 summary_reflect_tags_changes(mainwin->summaryview);
2487 void main_window_reflect_tags_changes(MainWindow *mainwin)
2489 if (tags_tag == 0) {
2490 tags_tag = g_timeout_add(100, main_window_reflect_tags_changes_real,
2495 void main_window_reflect_prefs_all_real(gboolean pixmap_theme_changed)
2497 if (prefs_tag == 0) {
2498 prefs_tag = g_timeout_add(100, reflect_prefs_timeout_cb,
2499 GINT_TO_POINTER(pixmap_theme_changed));
2503 void main_window_set_summary_column(void)
2506 MainWindow *mainwin;
2508 for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2509 mainwin = (MainWindow *)cur->data;
2510 summary_set_column_order(mainwin->summaryview);
2514 void main_window_set_folder_column(void)
2517 MainWindow *mainwin;
2519 for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2520 mainwin = (MainWindow *)cur->data;
2521 folderview_set_column_order(mainwin->folderview);
2525 static void main_window_set_account_selector_menu(MainWindow *mainwin,
2526 GList *account_list)
2529 GtkWidget *menuitem;
2530 PrefsAccount *ac_prefs;
2534 menu = gtk_menu_new();
2535 gtk_menu_set_accel_group (GTK_MENU (menu),
2536 gtk_ui_manager_get_accel_group(mainwin->ui_manager));
2538 for (cur_ac = account_list; cur_ac != NULL; cur_ac = cur_ac->next) {
2539 ac_prefs = (PrefsAccount *)cur_ac->data;
2541 menuitem = gtk_menu_item_new_with_label
2542 (ac_prefs->account_name
2543 ? ac_prefs->account_name : _("Untitled"));
2544 gtk_widget_show(menuitem);
2545 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
2546 g_signal_connect(G_OBJECT(menuitem), "activate",
2547 G_CALLBACK(account_selector_menu_cb),
2549 accel_path = g_strconcat("<Actions>/Menu/Configuration/ChangeAccount/",(ac_prefs->account_name
2550 ? ac_prefs->account_name : _("Untitled")), NULL );
2551 gtk_menu_item_set_accel_path(GTK_MENU_ITEM(menuitem), accel_path);
2554 gtk_menu_item_set_submenu(GTK_MENU_ITEM(mainwin->ac_menu), menu);
2557 static void main_window_set_account_receive_menu(MainWindow *mainwin,
2558 GList *account_list)
2560 GList *cur_ac, *cur_item;
2562 GtkWidget *menuitem;
2563 PrefsAccount *ac_prefs;
2565 menu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(
2566 gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/Receive")));
2568 /* search for separator */
2569 for (cur_item = GTK_MENU_SHELL(menu)->children; cur_item != NULL;
2570 cur_item = cur_item->next) {
2571 if (cur_item->data == gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/Receive/Separator1")) {
2572 cur_item = cur_item->next;
2577 /* destroy all previous menu item */
2578 while (cur_item != NULL) {
2579 GList *next = cur_item->next;
2580 gtk_widget_destroy(GTK_WIDGET(cur_item->data));
2584 for (cur_ac = account_list; cur_ac != NULL; cur_ac = cur_ac->next) {
2585 ac_prefs = (PrefsAccount *)cur_ac->data;
2587 if (ac_prefs->protocol == A_NONE)
2590 menuitem = gtk_menu_item_new_with_label
2591 (ac_prefs->account_name ? ac_prefs->account_name
2593 gtk_widget_show(menuitem);
2594 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
2595 g_signal_connect(G_OBJECT(menuitem), "activate",
2596 G_CALLBACK(account_receive_menu_cb),
2601 static void main_window_set_toolbar_combo_receive_menu(MainWindow *mainwin,
2602 GList *account_list)
2605 GtkWidget *menuitem;
2606 PrefsAccount *ac_prefs;
2607 GtkWidget *menu = NULL;
2609 if (mainwin->toolbar->getall_btn == NULL) /* button doesn't exist */
2612 menu = gtk_menu_tool_button_get_menu(GTK_MENU_TOOL_BUTTON(mainwin->toolbar->getall_btn));
2614 gtk_widget_destroy(menu);
2615 menu = gtk_menu_new();
2617 for (cur_ac = account_list; cur_ac != NULL; cur_ac = cur_ac->next) {
2618 ac_prefs = (PrefsAccount *)cur_ac->data;
2620 if (ac_prefs->protocol == A_NONE)
2623 menuitem = gtk_menu_item_new_with_label
2624 (ac_prefs->account_name
2625 ? ac_prefs->account_name : _("Untitled"));
2626 gtk_widget_show(menuitem);
2627 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
2628 g_signal_connect(G_OBJECT(menuitem), "activate",
2629 G_CALLBACK(account_receive_menu_cb),
2632 gtk_menu_tool_button_set_menu(GTK_MENU_TOOL_BUTTON(mainwin->toolbar->getall_btn), menu);
2635 static void main_window_set_toolbar_combo_compose_menu(MainWindow *mainwin,
2636 GList *account_list)
2638 #ifndef GENERIC_UMPC
2640 GtkWidget *menuitem;
2641 PrefsAccount *ac_prefs;
2642 GtkWidget *menu = NULL;
2644 if (mainwin->toolbar->compose_mail_btn == NULL) /* button doesn't exist */
2647 menu = gtk_menu_tool_button_get_menu(GTK_MENU_TOOL_BUTTON(mainwin->toolbar->compose_mail_btn));
2649 gtk_widget_destroy(menu);
2650 menu = gtk_menu_new();
2652 for (cur_ac = account_list; cur_ac != NULL; cur_ac = cur_ac->next) {
2653 ac_prefs = (PrefsAccount *)cur_ac->data;
2655 menuitem = gtk_menu_item_new_with_label
2656 (ac_prefs->account_name
2657 ? ac_prefs->account_name : _("Untitled"));
2658 gtk_widget_show(menuitem);
2659 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
2660 g_signal_connect(G_OBJECT(menuitem), "activate",
2661 G_CALLBACK(account_compose_menu_cb),
2664 gtk_menu_tool_button_set_menu(GTK_MENU_TOOL_BUTTON(mainwin->toolbar->compose_mail_btn), menu);
2668 void main_window_set_account_menu(GList *account_list)
2671 MainWindow *mainwin;
2673 for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2674 mainwin = (MainWindow *)cur->data;
2675 main_window_set_account_selector_menu(mainwin, account_list);
2676 main_window_set_account_receive_menu(mainwin, account_list);
2677 main_window_set_toolbar_combo_receive_menu(mainwin, account_list);
2678 main_window_set_toolbar_combo_compose_menu(mainwin, account_list);
2680 hooks_invoke(ACCOUNT_LIST_CHANGED_HOOKLIST, NULL);
2683 void main_window_set_account_menu_only_toolbar(GList *account_list)
2686 MainWindow *mainwin;
2688 for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2689 mainwin = (MainWindow *)cur->data;
2690 main_window_set_toolbar_combo_receive_menu(mainwin, account_list);
2691 main_window_set_toolbar_combo_compose_menu(mainwin, account_list);
2695 static void main_window_show_cur_account(MainWindow *mainwin)
2700 ac_name = g_strdup(cur_account
2701 ? (cur_account->account_name
2702 ? cur_account->account_name : _("Untitled"))
2706 buf = g_strdup_printf("%s - %s", ac_name, PROG_VERSION);
2708 buf = g_strdup(PROG_VERSION);
2709 gtk_window_set_title(GTK_WINDOW(mainwin->window), buf);
2712 if (mainwin->ac_label)
2713 gtk_label_set_text(GTK_LABEL(mainwin->ac_label), ac_name);
2714 if (mainwin->ac_button)
2715 gtk_widget_queue_resize(mainwin->ac_button);
2719 #ifndef GENERIC_UMPC
2720 static void main_window_separation_change(MainWindow *mainwin, LayoutType layout_mode)
2722 GtkWidget *folder_wid = GTK_WIDGET_PTR(mainwin->folderview);
2723 GtkWidget *summary_wid = GTK_WIDGET_PTR(mainwin->summaryview);
2724 GtkWidget *message_wid = mainwin->messageview->vbox;
2726 if (layout_mode == prefs_common.layout_mode)
2729 debug_print("Changing window separation type from %d to %d\n",
2730 prefs_common.layout_mode, layout_mode);
2732 /* remove widgets from those containers */
2733 g_object_ref(folder_wid);
2734 g_object_ref(summary_wid);
2735 g_object_ref(message_wid);
2736 gtkut_container_remove
2737 (GTK_CONTAINER(folder_wid->parent), folder_wid);
2738 gtkut_container_remove
2739 (GTK_CONTAINER(summary_wid->parent), summary_wid);
2740 gtkut_container_remove
2741 (GTK_CONTAINER(message_wid->parent), message_wid);
2743 gtk_widget_hide(mainwin->window);
2744 main_window_set_widgets(mainwin, layout_mode);
2745 gtk_widget_show(mainwin->window);
2747 g_object_unref(folder_wid);
2748 g_object_unref(summary_wid);
2749 g_object_unref(message_wid);
2752 void mainwindow_reset_paned(GtkPaned *paned)
2756 if (gtk_paned_get_child1(GTK_PANED(paned)))
2757 gtk_widget_show(gtk_paned_get_child1(GTK_PANED(paned)));
2758 if (gtk_paned_get_child2(GTK_PANED(paned)))
2759 gtk_widget_show(gtk_paned_get_child2(GTK_PANED(paned)));
2762 g_object_get (G_OBJECT(paned),
2765 g_object_get (G_OBJECT(paned),
2769 gtk_paned_set_position(GTK_PANED(paned), mid);
2772 static void mainwin_paned_show_first(GtkPaned *paned)
2775 g_object_get (G_OBJECT(paned),
2779 if (gtk_paned_get_child1(GTK_PANED(paned)))
2780 gtk_widget_show(gtk_paned_get_child1(GTK_PANED(paned)));
2781 if (gtk_paned_get_child2(GTK_PANED(paned)))
2782 gtk_widget_hide(gtk_paned_get_child2(GTK_PANED(paned)));
2783 gtk_paned_set_position(GTK_PANED(paned), max);
2786 static void mainwin_paned_show_last(GtkPaned *paned)
2789 g_object_get (G_OBJECT(paned),
2793 if (gtk_paned_get_child1(GTK_PANED(paned)))
2794 gtk_widget_hide(gtk_paned_get_child1(GTK_PANED(paned)));
2795 if (gtk_paned_get_child2(GTK_PANED(paned)))
2796 gtk_widget_show(gtk_paned_get_child2(GTK_PANED(paned)));
2797 gtk_paned_set_position(GTK_PANED(paned), min);
2800 void main_window_toggle_message_view(MainWindow *mainwin)
2802 SummaryView *summaryview = mainwin->summaryview;
2803 GtkWidget *ppaned = NULL;
2804 GtkWidget *container = NULL;
2806 switch (prefs_common.layout_mode) {
2808 case VERTICAL_LAYOUT:
2810 ppaned = mainwin->vpaned;
2811 container = mainwin->hpaned;
2812 if (ppaned->parent != NULL) {
2813 mainwin->messageview->visible = FALSE;
2814 summaryview->displayed = NULL;
2815 g_object_ref(ppaned);
2816 gtkut_container_remove(GTK_CONTAINER(container), ppaned);
2817 gtk_widget_reparent(GTK_WIDGET_PTR(summaryview), container);
2819 mainwin->messageview->visible = TRUE;
2820 gtk_widget_reparent(GTK_WIDGET_PTR(summaryview), ppaned);
2821 gtk_container_add(GTK_CONTAINER(container), ppaned);
2822 g_object_unref(ppaned);
2826 ppaned = mainwin->hpaned;
2827 container = mainwin->vpaned;
2828 if (mainwin->messageview->vbox->parent != NULL) {
2829 mainwin->messageview->visible = FALSE;
2830 summaryview->displayed = NULL;
2831 g_object_ref(mainwin->messageview->vbox);
2832 gtkut_container_remove(GTK_CONTAINER(container), mainwin->messageview->vbox);
2834 mainwin->messageview->visible = TRUE;
2835 gtk_container_add(GTK_CONTAINER(container), mainwin->messageview->vbox);
2836 g_object_unref(mainwin->messageview->vbox);
2839 case WIDE_MSGLIST_LAYOUT:
2840 g_warning("can't hide messageview in this wide msglist layout");
2844 if (messageview_is_visible(mainwin->messageview))
2845 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
2846 GTK_ARROW_DOWN, GTK_SHADOW_OUT);
2848 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
2849 GTK_ARROW_UP, GTK_SHADOW_OUT);
2851 if (mainwin->messageview->visible == FALSE)
2852 messageview_clear(mainwin->messageview);
2854 main_window_set_menu_sensitive(mainwin);
2856 prefs_common.msgview_visible = mainwin->messageview->visible;
2858 if (messageview_is_visible(mainwin->messageview)) {
2859 gtk_widget_queue_resize(mainwin->hpaned);
2860 gtk_widget_queue_resize(mainwin->vpaned);
2862 summary_grab_focus(summaryview);
2863 if (!summary_is_list(summaryview)) {
2864 summary_show(summaryview, summaryview->folder_item);
2868 void main_window_get_size(MainWindow *mainwin)
2870 GtkAllocation *allocation;
2872 if (mainwin_list == NULL || mainwin->messageview == NULL) {
2873 debug_print("called after messageview "
2874 "has been deallocated!\n");
2878 allocation = &(GTK_WIDGET_PTR(mainwin->summaryview)->allocation);
2880 if (prefs_common.mainwin_fullscreen) {
2881 debug_print("mainwin in full screen state. "
2882 "Keeping original settings\n");
2884 if (allocation->width > 1 && allocation->height > 1 && !prefs_common.mainwin_fullscreen) {
2885 prefs_common.summaryview_width = allocation->width;
2887 if (messageview_is_visible(mainwin->messageview))
2888 prefs_common.summaryview_height = allocation->height;
2890 prefs_common.mainview_width = allocation->width;
2893 allocation = &mainwin->window->allocation;
2894 if (allocation->width > 1 && allocation->height > 1 &&
2895 !prefs_common.mainwin_maximised && !prefs_common.mainwin_fullscreen) {
2896 prefs_common.mainview_height = allocation->height;
2897 prefs_common.mainwin_width = allocation->width;
2898 prefs_common.mainwin_height = allocation->height;
2901 allocation = &(GTK_WIDGET_PTR(mainwin->folderview)->allocation);
2902 if (allocation->width > 1 && allocation->height > 1 &&
2903 !prefs_common.mainwin_fullscreen) {
2904 prefs_common.folderview_width = allocation->width;
2905 prefs_common.folderview_height = allocation->height;
2908 allocation = &(GTK_WIDGET_PTR(mainwin->messageview)->allocation);
2909 if (allocation->width > 1 && allocation->height > 1 &&
2910 !prefs_common.mainwin_fullscreen) {
2911 prefs_common.msgview_width = allocation->width;
2912 prefs_common.msgview_height = allocation->height;
2915 /* debug_print("summaryview size: %d x %d\n",
2916 prefs_common.summaryview_width,
2917 prefs_common.summaryview_height);
2918 debug_print("folderview size: %d x %d\n",
2919 prefs_common.folderview_width,
2920 prefs_common.folderview_height);
2921 debug_print("messageview size: %d x %d\n",
2922 prefs_common.msgview_width,
2923 prefs_common.msgview_height); */
2926 void main_window_get_position(MainWindow *mainwin)
2930 if (prefs_common.mainwin_maximised || prefs_common.mainwin_fullscreen)
2933 gtkut_widget_get_uposition(mainwin->window, &x, &y);
2935 prefs_common.mainview_x = x;
2936 prefs_common.mainview_y = y;
2937 prefs_common.mainwin_x = x;
2938 prefs_common.mainwin_y = y;
2940 debug_print("main window position: %d, %d\n", x, y);
2943 void main_window_progress_on(MainWindow *mainwin)
2945 gtk_progress_bar_set_text(GTK_PROGRESS_BAR(mainwin->progressbar), "");
2948 void main_window_progress_off(MainWindow *mainwin)
2950 gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(mainwin->progressbar), 0.0);
2951 gtk_progress_bar_set_text(GTK_PROGRESS_BAR(mainwin->progressbar), "");
2954 static gboolean main_window_empty_trash(MainWindow *mainwin, gboolean confirm, gboolean for_quit)
2956 if (confirm && procmsg_have_trashed_mails_fast()) {
2960 val = alertpanel(_("Empty trash"),
2961 _("Delete all messages in trash folders?"),
2962 GTK_STOCK_NO, "+" GTK_STOCK_YES, _("Don't quit"));
2964 val = alertpanel(_("Empty trash"),
2965 _("Delete all messages in trash folders?"),
2966 GTK_STOCK_NO, "+" GTK_STOCK_YES, NULL);
2967 if (val == G_ALERTALTERNATE) {
2968 debug_print("will empty trash\n");
2969 } else if (val == G_ALERTDEFAULT) {
2970 debug_print("will not empty trash\n");
2973 return FALSE; /* cancel exit */
2975 manage_window_focus_in(mainwin->window, NULL, NULL);
2978 procmsg_empty_all_trash();
2980 if (mainwin->summaryview->folder_item &&
2981 mainwin->summaryview->folder_item->stype == F_TRASH)
2982 gtk_widget_grab_focus(mainwin->folderview->ctree);
2986 static void main_window_add_mailbox(MainWindow *mainwin)
2991 path = input_dialog(_("Add mailbox"),
2992 _("Input the location of mailbox.\n"
2993 "If an existing mailbox is specified, it will be\n"
2994 "scanned automatically."),
2997 if (folder_find_from_path(path)) {
2998 alertpanel_error(_("The mailbox '%s' already exists."), path);
3002 folder = folder_new(folder_get_class_from_string("mh"),
3003 !strcmp(path, "Mail") ? _("Mailbox") :
3004 g_path_get_basename(path), path);
3007 if (folder->klass->create_tree(folder) < 0) {
3008 alertpanel_error(_("Creation of the mailbox failed.\n"
3009 "Maybe some files already exist, or you don't have the permission to write there."));
3010 folder_destroy(folder);
3015 folder_set_ui_func(folder, scan_tree_func, mainwin);
3016 folder_scan_tree(folder, TRUE);
3017 folder_set_ui_func(folder, NULL, NULL);
3020 SensitiveCond main_window_get_current_state(MainWindow *mainwin)
3022 SensitiveCond state = 0;
3023 SummarySelection selection;
3024 FolderItem *item = mainwin->summaryview->folder_item;
3025 GList *account_list = account_get_list();
3028 selection = summary_get_selection_type(mainwin->summaryview);
3030 if (mainwin->lock_count == 0 && !claws_is_starting())
3031 state |= M_UNLOCKED;
3032 if (selection != SUMMARY_NONE)
3033 state |= M_MSG_EXIST;
3034 if (item && item->path && folder_item_parent(item) && !item->no_select) {
3036 /* if (item->folder->type != F_NEWS) */
3037 state |= M_ALLOW_DELETE;
3039 if (prefs_common.immediate_exec == 0
3040 && mainwin->lock_count == 0)
3041 state |= M_DELAY_EXEC;
3043 if ((selection == SUMMARY_NONE && item->hide_read_msgs)
3044 || selection != SUMMARY_NONE)
3045 state |= M_HIDE_READ_MSG;
3047 if (mainwin->summaryview->threaded)
3048 state |= M_THREADED;
3050 state |= M_UNTHREADED;
3051 if (selection == SUMMARY_SELECTED_SINGLE ||
3052 selection == SUMMARY_SELECTED_MULTIPLE)
3053 state |= M_TARGET_EXIST;
3054 if (selection == SUMMARY_SELECTED_SINGLE)
3055 state |= M_SINGLE_TARGET_EXIST;
3056 if (mainwin->summaryview->folder_item &&
3057 mainwin->summaryview->folder_item->folder->klass->type == F_NEWS)
3060 state |= M_NOT_NEWS;
3061 if (prefs_common.actions_list && g_slist_length(prefs_common.actions_list))
3062 state |= M_ACTIONS_EXIST;
3064 tmp = tags_get_list();
3065 if (tmp && g_slist_length(tmp))
3066 state |= M_TAGS_EXIST;
3069 if (procmsg_have_queued_mails_fast() && !procmsg_is_sending())
3070 state |= M_HAVE_QUEUED_MAILS;
3072 if (selection == SUMMARY_SELECTED_SINGLE &&
3074 (folder_has_parent_of_type(item, F_DRAFT) ||
3075 folder_has_parent_of_type(item, F_OUTBOX) ||
3076 folder_has_parent_of_type(item, F_QUEUE))))
3077 state |= M_ALLOW_REEDIT;
3079 state |= M_HAVE_ACCOUNT;
3081 if (any_folder_want_synchronise())
3082 state |= M_WANT_SYNC;
3084 if (item && item->prefs->processing && selection != SUMMARY_NONE)
3085 state |= M_HAVE_PROCESSING;
3087 if (g_list_length(account_list) > 1)
3088 state |= M_HAVE_MULTI_ACCOUNT;
3090 for ( ; account_list != NULL; account_list = account_list->next) {
3091 if (((PrefsAccount*)account_list->data)->protocol == A_NNTP) {
3092 state |= M_HAVE_NEWS_ACCOUNT;
3097 if (procmsg_spam_can_learn() &&
3098 (mainwin->summaryview->folder_item &&
3099 mainwin->summaryview->folder_item->folder->klass->type != F_UNKNOWN &&
3100 mainwin->summaryview->folder_item->folder->klass->type != F_NEWS)) {
3101 state |= M_CAN_LEARN_SPAM;
3104 if (mainwin->summaryview->folder_item) {
3105 state |= M_FOLDER_SELECTED;
3108 if (inc_is_active())
3109 state |= M_INC_ACTIVE;
3110 if (imap_cancel_all_enabled())
3111 state |= M_INC_ACTIVE;
3113 if (mainwin->summaryview->deleted > 0 ||
3114 mainwin->summaryview->moved > 0 ||
3115 mainwin->summaryview->copied > 0)
3116 state |= M_DELAY_EXEC;
3118 if (summary_is_list(mainwin->summaryview))
3119 state |= M_SUMMARY_ISLIST;
3121 if (prefs_common.layout_mode != SMALL_LAYOUT || mainwin->in_folder)
3122 state |= M_IN_MSGLIST;
3124 for (account_list = account_get_list(); account_list != NULL; account_list = account_list->next) {
3125 PrefsAccount *account = account_list->data;
3126 if (account->session_passwd || account->session_smtp_passwd) {
3127 state |= M_SESSION_PASSWORDS;
3137 void main_window_set_menu_sensitive(MainWindow *mainwin)
3139 SensitiveCond state;
3141 SummaryView *summaryview;
3147 static const struct {