Fix bug #3574: Template addressing
[claws.git] / src / mainwindow.c
blobe03c55e2a10b73e56558f5c21df41a7d3e8be532
1 /*
2 Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3 Copyright (C) 1999-2016 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/>.
19 #include "defs.h"
21 #include <glib.h>
22 #include <glib/gi18n.h>
23 #include <gdk/gdkkeysyms.h>
24 #include <gtk/gtk.h>
25 #include <string.h>
26 #include <stdarg.h>
28 #include "main.h"
29 #include "mainwindow.h"
30 #include "folderview.h"
31 #include "folder_item_prefs.h"
32 #include "foldersel.h"
33 #include "summaryview.h"
34 #include "summary_search.h"
35 #include "messageview.h"
36 #include "mimeview.h"
37 #include "message_search.h"
38 #include "headerview.h"
39 #include "menu.h"
40 #include "stock_pixmap.h"
41 #include "folder.h"
42 #include "inc.h"
43 #include "log.h"
44 #include "compose.h"
45 #include "procmsg.h"
46 #include "import.h"
47 #include "export.h"
48 #include "edittags.h"
49 #include "password.h"
50 #include "prefs_common.h"
51 #include "prefs_actions.h"
52 #include "prefs_filtering.h"
53 #include "prefs_account.h"
54 #include "prefs_summary_column.h"
55 #include "prefs_folder_column.h"
56 #include "prefs_template.h"
57 #include "action.h"
58 #include "account.h"
59 #ifndef USE_ALT_ADDRBOOK
60 #include "addressbook.h"
61 #else
62 #include "addressbook-dbus.h"
63 #endif
64 #include "logwindow.h"
65 #include "manage_window.h"
66 #include "alertpanel.h"
67 #include "statusbar.h"
68 #include "inputdialog.h"
69 #include "utils.h"
70 #include "gtkutils.h"
71 #include "codeconv.h"
72 #include "about.h"
73 #include "manual.h"
74 #include "version.h"
75 #include "ssl_manager.h"
76 #include "sslcertwindow.h"
77 #include "prefs_gtk.h"
78 #include "pluginwindow.h"
79 #include "hooks.h"
80 #include "progressindicator.h"
81 #include "localfolder.h"
82 #include "filtering.h"
83 #include "folderutils.h"
84 #include "foldersort.h"
85 #include "icon_legend.h"
86 #include "colorlabel.h"
87 #include "tags.h"
88 #include "textview.h"
89 #include "imap.h"
90 #include "news.h"
91 #include "socket.h"
92 #include "printing.h"
93 #include "send_message.h"
94 #ifdef G_OS_WIN32
95 #include "w32lib.h"
96 #endif
98 #define AC_LABEL_WIDTH 240
100 /* list of all instantiated MainWindow */
101 static GList *mainwin_list = NULL;
103 static GdkCursor *watch_cursor = NULL;
104 static GdkCursor *hand_cursor = NULL;
106 static gint iconified_count = 0;
108 static void main_window_menu_callback_block (MainWindow *mainwin);
109 static void main_window_menu_callback_unblock (MainWindow *mainwin);
111 static void main_window_show_cur_account (MainWindow *mainwin);
112 #ifndef GENERIC_UMPC
113 static void main_window_separation_change (MainWindow *mainwin,
114 LayoutType layout_mode);
115 #endif
116 static void main_window_set_widgets (MainWindow *mainwin,
117 LayoutType layout_mode);
119 static void toolbar_child_attached (GtkWidget *widget,
120 GtkWidget *child,
121 gpointer data);
122 static void toolbar_child_detached (GtkWidget *widget,
123 GtkWidget *child,
124 gpointer data);
125 #ifndef GENERIC_UMPC
126 static gboolean ac_label_button_pressed (GtkWidget *widget,
127 GdkEventButton *event,
128 gpointer data);
129 #endif
130 static gint main_window_close_cb (GtkWidget *widget,
131 GdkEventAny *event,
132 gpointer data);
134 static void main_window_size_allocate_cb (GtkWidget *widget,
135 GtkAllocation *allocation,
136 gpointer data);
137 static void folder_window_size_allocate_cb (GtkWidget *widget,
138 GtkAllocation *allocation,
139 gpointer data);
140 static void message_window_size_allocate_cb (GtkWidget *widget,
141 GtkAllocation *allocation,
142 gpointer data);
144 static void update_folderview_cb (GtkAction *action,
145 gpointer data);
146 static void add_mailbox_cb (GtkAction *action,
147 gpointer data);
148 static void foldersort_cb (GtkAction *action,
149 gpointer data);
150 static void import_mbox_cb (GtkAction *action,
151 gpointer data);
152 static void export_mbox_cb (GtkAction *action,
153 gpointer data);
154 static void export_list_mbox_cb (GtkAction *action,
155 gpointer data);
156 static void empty_trash_cb (GtkAction *action,
157 gpointer data);
158 static void save_as_cb (GtkAction *action,
159 gpointer data);
160 static void page_setup_cb (GtkAction *action,
161 gpointer data);
162 static void print_cb (GtkAction *action,
163 gpointer data);
164 static void app_exit_cb (GtkAction *action,
165 gpointer data);
168 static void search_cb (GtkAction *action,
169 gpointer data);
170 static void search_folder_cb (GtkAction *action,
171 gpointer data);
173 static void toggle_message_cb (GtkAction *action,
174 gpointer data);
175 static void toggle_toolbar_cb (GtkAction *action, GtkRadioAction *current, gpointer data);
176 static void toggle_col_headers_cb(GtkAction *action,
177 gpointer data);
178 #ifndef GENERIC_UMPC
179 static void toggle_statusbar_cb (GtkAction *action,
180 gpointer data);
181 static void set_layout_cb (GtkAction *action, GtkRadioAction *current, gpointer data);
182 #endif
183 static void addressbook_open_cb (GtkAction *action,
184 gpointer data);
185 static void log_window_show_cb (GtkAction *action,
186 gpointer data);
187 static void filtering_debug_window_show_cb (GtkAction *action,
188 gpointer data);
190 static void inc_cancel_cb (GtkAction *action,
191 gpointer data);
192 static void send_cancel_cb (GtkAction *action,
193 gpointer data);
195 static void open_msg_cb (GtkAction *action,
196 gpointer data);
198 static void view_source_cb (GtkAction *action,
199 gpointer data);
201 static void show_all_header_cb (GtkAction *action,
202 gpointer data);
203 static void toggle_fullscreen_cb (GtkAction *action,
204 gpointer data);
205 static void toggle_menubar_cb (GtkAction *action,
206 gpointer data);
208 static void hide_quotes_cb(GtkAction *action,
209 gpointer data);
211 static void move_to_cb (GtkAction *action,
212 gpointer data);
213 static void copy_to_cb (GtkAction *action,
214 gpointer data);
215 static void delete_cb (GtkAction *action,
216 gpointer data);
217 static void delete_trash_cb (GtkAction *action,
218 gpointer data);
220 static void cancel_cb (GtkAction *action,
221 gpointer data);
223 static void mark_cb (GtkAction *action,
224 gpointer data);
225 static void unmark_cb (GtkAction *action,
226 gpointer data);
228 static void mark_as_unread_cb (GtkAction *action,
229 gpointer data);
230 static void mark_as_read_cb (GtkAction *action,
231 gpointer data);
232 static void mark_all_read_cb (GtkAction *action,
233 gpointer data);
234 static void mark_as_spam_cb (GtkAction *action,
235 gpointer data);
236 static void mark_as_ham_cb (GtkAction *action,
237 gpointer data);
239 static void ignore_thread_cb (GtkAction *action,
240 gpointer data);
241 static void unignore_thread_cb (GtkAction *action,
242 gpointer data);
243 static void watch_thread_cb (GtkAction *action,
244 gpointer data);
245 static void unwatch_thread_cb (GtkAction *action,
246 gpointer data);
247 static void lock_msgs_cb (GtkAction *action,
248 gpointer data);
249 static void unlock_msgs_cb (GtkAction *action,
250 gpointer data);
252 static void reedit_cb (GtkAction *action,
253 gpointer data);
255 static void add_address_cb (GtkAction *action,
256 gpointer data);
258 static void set_charset_cb (GtkAction *action, GtkRadioAction *current, gpointer data);
260 static void set_decode_cb (GtkAction *action, GtkRadioAction *current, gpointer data);
262 static void hide_read_messages (GtkAction *action,
263 gpointer data);
264 static void hide_read_threads (GtkAction *action,
265 gpointer data);
266 static void hide_del_messages (GtkAction *action,
267 gpointer data);
269 static void thread_cb (GtkAction *action,
270 gpointer data);
271 static void expand_threads_cb (GtkAction *action,
272 gpointer data);
273 static void collapse_threads_cb (GtkAction *action,
274 gpointer data);
276 static void set_summary_display_item_cb (GtkAction *action,
277 gpointer data);
278 static void set_folder_display_item_cb (GtkAction *action,
279 gpointer data);
280 static void sort_summary_cb (GtkAction *action, GtkRadioAction *current, gpointer data);
281 static void sort_summary_type_cb (GtkAction *action, GtkRadioAction *current, gpointer data);
282 static void attract_by_subject_cb(GtkAction *action,
283 gpointer data);
285 static void delete_duplicated_cb (GtkAction *action,
286 gpointer data);
287 static void delete_duplicated_all_cb (GtkAction *action,
288 gpointer data);
289 static void filter_cb (GtkAction *action,
290 gpointer data);
291 static void filter_list_cb (GtkAction *action,
292 gpointer data);
293 static void process_cb (GtkAction *action,
294 gpointer data);
295 static void execute_summary_cb (GtkAction *action,
296 gpointer data);
297 static void expunge_summary_cb (GtkAction *action,
298 gpointer data);
299 static void update_summary_cb (GtkAction *action,
300 gpointer data);
302 static void prev_cb (GtkAction *action,
303 gpointer data);
304 static void next_cb (GtkAction *action,
305 gpointer data);
306 static void next_unread_cb (GtkAction *action,
307 gpointer data);
308 static void prev_unread_cb (GtkAction *action,
309 gpointer data);
311 static void prev_new_cb (GtkAction *action,
312 gpointer data);
313 static void next_new_cb (GtkAction *action,
314 gpointer data);
315 static void prev_marked_cb (GtkAction *action,
316 gpointer data);
317 static void next_marked_cb (GtkAction *action,
318 gpointer data);
319 static void prev_labeled_cb (GtkAction *action,
320 gpointer data);
321 static void next_labeled_cb (GtkAction *action,
322 gpointer data);
323 static void prev_history_cb (GtkAction *action,
324 gpointer data);
325 static void next_history_cb (GtkAction *action,
326 gpointer data);
327 static void parent_cb (GtkAction *action,
328 gpointer data);
330 static void goto_folder_cb (GtkAction *action,
331 gpointer data);
332 static void goto_unread_folder_cb(GtkAction *action,
333 gpointer data);
335 static void scroll_prev_line_cb (GtkAction *action,
336 gpointer data);
337 static void scroll_next_line_cb (GtkAction *action,
338 gpointer data);
339 static void scroll_prev_page_cb (GtkAction *action,
340 gpointer data);
341 static void scroll_next_page_cb (GtkAction *action,
342 gpointer data);
344 static void copy_cb (GtkAction *action,
345 gpointer data);
346 static void allsel_cb (GtkAction *action,
347 gpointer data);
348 static void select_thread_cb (GtkAction *action,
349 gpointer data);
350 static void trash_thread_cb (GtkAction *action,
351 gpointer data);
352 static void delete_thread_cb (GtkAction *action,
353 gpointer data);
355 static void create_filter_cb (GtkAction *action,
356 gpointer data);
357 static void create_processing_cb (GtkAction *action,
358 gpointer data);
359 static void open_urls_cb (GtkAction *action,
360 gpointer data);
362 static void prefs_template_open_cb (GtkAction *action,
363 gpointer data);
364 static void prefs_actions_open_cb (GtkAction *action,
365 gpointer data);
366 static void prefs_tags_open_cb (GtkAction *action,
367 gpointer data);
368 static void prefs_account_open_cb (GtkAction *action,
369 gpointer data);
371 static void prefs_pre_processing_open_cb (GtkAction *action,
372 gpointer data);
374 static void prefs_post_processing_open_cb (GtkAction *action,
375 gpointer data);
377 static void prefs_filtering_open_cb (GtkAction *action,
378 gpointer data);
379 #ifdef USE_GNUTLS
380 static void ssl_manager_open_cb (GtkAction *action,
381 gpointer data);
382 #endif
383 static void new_account_cb (GtkAction *action,
384 gpointer data);
386 static void account_selector_menu_cb (GtkMenuItem *menuitem,
387 gpointer data);
388 static void account_receive_menu_cb (GtkMenuItem *menuitem,
389 gpointer data);
390 #ifndef GENERIC_UMPC
391 static void account_compose_menu_cb (GtkMenuItem *menuitem,
392 gpointer data);
393 #endif
394 static void prefs_open_cb (GtkAction *action,
395 gpointer data);
396 static void plugins_open_cb (GtkAction *action,
397 gpointer data);
399 static void online_switch_clicked(GtkButton *btn,
400 gpointer data);
402 static void manual_open_cb (GtkAction *action,
403 gpointer data);
404 static void manual_faq_open_cb (GtkAction *action,
405 gpointer data);
407 static void legend_open_cb (GtkAction *action,
408 gpointer data);
410 #ifdef G_OS_WIN32
411 static void set_default_client_cb (GtkAction *action,
412 gpointer data);
413 #endif
415 static void scan_tree_func (Folder *folder,
416 FolderItem *item,
417 gpointer data);
419 static void toggle_work_offline_cb(GtkAction *action,
420 gpointer data);
422 static void addr_harvest_cb ( GtkAction *action,
423 gpointer data );
425 static void addr_harvest_msg_cb ( GtkAction *action,
426 gpointer data );
427 static void sync_cb ( GtkAction *action,
428 gpointer data );
430 static void forget_session_passwords_cb (GtkAction *action,
431 gpointer data );
432 #ifndef PASSWORD_CRYPTO_OLD
433 static void forget_master_passphrase_cb (GtkAction *action,
434 gpointer data );
435 #endif
436 static gboolean mainwindow_focus_in_event (GtkWidget *widget,
437 GdkEventFocus *focus,
438 gpointer data);
439 static gboolean mainwindow_visibility_event_cb (GtkWidget *widget,
440 GdkEventVisibility *state,
441 gpointer data);
442 static gboolean mainwindow_state_event_cb (GtkWidget *widget,
443 GdkEventWindowState *state,
444 gpointer data);
445 static void main_window_reply_cb (GtkAction *action,
446 gpointer data);
447 static gboolean mainwindow_progressindicator_hook (gpointer source,
448 gpointer userdata);
450 static gint mailing_list_create_submenu(MainWindow *mainwindow,
451 MsgInfo *msginfo);
453 static gint mailing_list_populate_submenu(GtkWidget *menu, const gchar * list_header);
455 static void get_url_part(const gchar **buf, gchar *url_decoded);
457 static void mailing_list_compose(GtkWidget *w, gpointer *data);
459 static void mailing_list_open_uri(GtkWidget *w, gpointer *data);
460 #define SEPARATE_ACTION 500
461 static void mainwindow_quicksearch (GtkAction *action,
462 gpointer data);
463 static gboolean any_folder_want_synchronise(void);
465 static void save_part_as_cb(GtkAction *action, gpointer data);
466 static void view_part_as_text_cb(GtkAction *action, gpointer data);
467 static void open_part_cb(GtkAction *action, gpointer data);
468 #ifndef G_OS_WIN32
469 static void open_part_with_cb(GtkAction *action, gpointer data);
470 #endif
471 static void check_signature_cb(GtkAction *action, gpointer data);
472 static void goto_next_part_cb(GtkAction *action, gpointer data);
473 static void goto_prev_part_cb(GtkAction *action, gpointer data);
474 #define DO_ACTION(name, act) { if (!strcmp(a_name, name)) action = act; }
476 static void mainwindow_nothing_cb (GtkAction *action, gpointer data)
481 static void about_cb(GtkAction *gaction, gpointer data)
483 about_show();
486 static void mw_inc_mail_cb (GtkAction *gaction, gpointer data)
488 inc_mail_cb(data, 0, NULL);
490 static void mw_inc_all_account_mail_cb (GtkAction *gaction, gpointer data)
492 inc_all_account_mail_cb(data, 0, NULL);
494 static void mw_send_queue_cb (GtkAction *gaction, gpointer data)
496 send_queue_cb(data, 0, NULL);
498 static void mw_compose_mail_cb (GtkAction *gaction, gpointer data)
500 compose_mail_cb(data, 0, NULL);
502 static void mw_compose_news_cb (GtkAction *gaction, gpointer data)
504 compose_news_cb(data, 0, NULL);
507 static GtkActionEntry mainwin_entries[] =
509 {"Menu", NULL, "Menu" },
510 /* menus */
511 {"File", NULL, N_("_File") },
512 {"Edit", NULL, N_("_Edit") },
513 {"View", NULL, N_("_View") },
514 {"Message", NULL, N_("_Message") },
515 {"Tools", NULL, N_("_Tools") },
516 {"Configuration", NULL, N_("_Configuration") },
517 {"Help", NULL, N_("_Help") },
519 /* File menu */
520 {"File/AddMailbox", NULL, N_("_Add mailbox") },
521 {"File/AddMailbox/MH", NULL, N_("MH..."), NULL, NULL, G_CALLBACK(add_mailbox_cb) },
522 {"File/---", NULL, "---" },
524 {"File/SortMailboxes", NULL, N_("Change mailbox order..."), NULL, NULL, G_CALLBACK(foldersort_cb) },
526 /* {"File/---", NULL, "---" }, */
527 {"File/ImportMbox", NULL, N_("_Import mbox file..."), NULL, NULL, G_CALLBACK(import_mbox_cb) },
528 {"File/ExportMbox", NULL, N_("_Export to mbox file..."), NULL, NULL, G_CALLBACK(export_mbox_cb) },
529 {"File/ExportSelMbox", NULL, N_("_Export selected to mbox file..."), NULL, NULL, G_CALLBACK(export_list_mbox_cb) },
530 /* {"File/---", NULL, "---" }, */
531 {"File/EmptyTrashes", NULL, N_("Empty all _Trash folders"), "<shift>D", NULL, G_CALLBACK(empty_trash_cb) },
532 /* {"File/---", NULL, "---" }, */
534 {"File/SaveAs", NULL, N_("_Save email as..."), "<control>S", NULL, G_CALLBACK(save_as_cb) },
535 {"File/SavePartAs", NULL, N_("_Save part as..."), "Y", NULL, G_CALLBACK(save_part_as_cb) },
536 /* {"File/---", NULL, "---" }, */
538 {"File/PageSetup", NULL, N_("Page setup..."), NULL, NULL, G_CALLBACK(page_setup_cb) },
539 {"File/Print", NULL, N_("_Print..."), "<control>P", NULL, G_CALLBACK(print_cb) },
540 /* {"File/---", NULL, "---" }, */
541 {"File/SynchroniseFolders", NULL, N_("Synchronise folders"), "<control><shift>S", NULL, G_CALLBACK(sync_cb) },
542 /* {"File/---", NULL, "---" }, */
543 {"File/Exit", NULL, N_("E_xit"), "<control>Q", NULL, G_CALLBACK(app_exit_cb) },
545 /* Edit menu */
546 {"Edit/Copy", NULL, N_("_Copy"), "<control>C", NULL, G_CALLBACK(copy_cb) },
547 {"Edit/SelectAll", NULL, N_("Select _all"), "<control>A", NULL, G_CALLBACK(allsel_cb) },
548 {"Edit/SelectThread", NULL, N_("Select _thread"), NULL, NULL, G_CALLBACK(select_thread_cb) },
549 {"Edit/---", NULL, "---" },
550 {"Edit/Find", NULL, N_("_Find in current message..."), "<control>F", NULL, G_CALLBACK(search_cb) },
551 {"Edit/SearchFolder", NULL, N_("_Search folder..."), "<shift><control>F", NULL, G_CALLBACK(search_folder_cb) },
552 {"Edit/QuickSearch", NULL, N_("_Quick search"), "slash", NULL, G_CALLBACK(mainwindow_quicksearch) },
554 /* View menu */
555 {"View/ShowHide", NULL, N_("Show or hi_de") },
556 {"View/ShowHide/Toolbar", NULL, N_("_Toolbar") },
558 {"View/SetColumns", NULL, N_("Set displayed _columns") },
559 {"View/SetColumns/Folderlist", NULL, N_("In _folder list..."), NULL, NULL, G_CALLBACK(set_folder_display_item_cb) },
560 {"View/SetColumns/Messagelist", NULL, N_("In _message list..."), NULL, NULL, G_CALLBACK(set_summary_display_item_cb) },
561 {"View/---", NULL, "---" },
564 #ifndef GENERIC_UMPC
565 {"View/Layout", NULL, N_("La_yout") },
567 #endif
568 {"View/Sort", NULL, N_("_Sort") },
569 {"View/Sort/---", NULL, "---" },
570 {"View/Sort/AttractSubj", NULL, N_("_Attract by subject"), NULL, NULL, G_CALLBACK(attract_by_subject_cb) },
572 {"View/ExpandThreads", NULL, N_("E_xpand all threads"), NULL, NULL, G_CALLBACK(expand_threads_cb) },
573 {"View/CollapseThreads", NULL, N_("Co_llapse all threads"), NULL, NULL, G_CALLBACK(collapse_threads_cb) },
575 {"View/Goto", NULL, N_("_Go to") },
576 {"View/Goto/Prev", NULL, N_("_Previous message"), "P", NULL, G_CALLBACK(prev_cb) },
577 {"View/Goto/Next", NULL, N_("_Next message"), "N", NULL, G_CALLBACK(next_cb) },
578 {"View/Goto/---", NULL, "---", NULL, NULL, NULL },
579 {"View/Goto/PrevUnread", NULL, N_("P_revious unread message"), "<shift>P", NULL, G_CALLBACK(prev_unread_cb) },
580 {"View/Goto/NextUnread", NULL, N_("N_ext unread message"), "<shift>N", NULL, G_CALLBACK(next_unread_cb) },
581 /* {"View/Goto/---", NULL, "---", NULL, NULL, NULL }, */
582 {"View/Goto/PrevNew", NULL, N_("Previous ne_w message"), NULL, NULL, G_CALLBACK(prev_new_cb) },
583 {"View/Goto/NextNew", NULL, N_("Ne_xt new message"), NULL, NULL, G_CALLBACK(next_new_cb) },
584 /* {"View/Goto/---", NULL, "---", NULL, NULL, NULL }, */
585 {"View/Goto/PrevMarked", NULL, N_("Previous _marked message"), NULL, NULL, G_CALLBACK(prev_marked_cb) },
586 {"View/Goto/NextMarked", NULL, N_("Next m_arked message"), NULL, NULL, G_CALLBACK(next_marked_cb) },
587 /* {"View/Goto/---", NULL, "---", NULL, NULL, NULL }, */
588 {"View/Goto/PrevLabeled", NULL, N_("Previous _labeled message"), NULL, NULL, G_CALLBACK(prev_labeled_cb) },
589 {"View/Goto/NextLabeled", NULL, N_("Next la_beled message"), NULL, NULL, G_CALLBACK(next_labeled_cb) },
590 /* {"View/Goto/---", NULL, "---", NULL, NULL, NULL }, */
591 {"View/Goto/PrevHistory", NULL, N_("Previous opened message"), "<alt>Left", NULL, G_CALLBACK(prev_history_cb) },
592 {"View/Goto/NextHistory", NULL, N_("Next opened message"), "<alt>Right", NULL, G_CALLBACK(next_history_cb) },
593 /* {"View/Goto/---", NULL, "---", NULL, NULL, NULL }, */
594 {"View/Goto/ParentMessage", NULL, N_("Parent message"), "<control>Up", NULL, G_CALLBACK(parent_cb) },
595 /* {"View/Goto/---", NULL, "---", NULL, NULL, NULL }, */
596 {"View/Goto/NextUnreadFolder", NULL, N_("Next unread _folder"), "<shift>G", NULL, G_CALLBACK(goto_unread_folder_cb) },
597 {"View/Goto/Folder", NULL, N_("F_older..."), "G", NULL, G_CALLBACK(goto_folder_cb) },
598 /* {"View/Goto/---", NULL, "---", NULL, NULL, NULL }, */
599 {"View/Goto/NextPart", NULL, N_("Next part"), "A", NULL, G_CALLBACK(goto_next_part_cb) },
600 {"View/Goto/PrevPart", NULL, N_("Previous part"), "Z", NULL, G_CALLBACK(goto_prev_part_cb) },
602 /* {"View/Scroll/---", NULL, "---", NULL, NULL, NULL }, */
603 {"View/Scroll", NULL, N_("Message scroll") },
604 {"View/Scroll/PrevLine", NULL, N_("Previous line"), NULL, NULL, G_CALLBACK(scroll_prev_line_cb) },
605 {"View/Scroll/NextLine", NULL, N_("Next line"), NULL, NULL, G_CALLBACK(scroll_next_line_cb) },
606 {"View/Scroll/PrevPage", NULL, N_("Previous page"), NULL, NULL, G_CALLBACK(scroll_prev_page_cb) },
607 {"View/Scroll/NextPage", NULL, N_("Next page"), NULL, NULL, G_CALLBACK(scroll_next_page_cb) },
609 /* {"View/---", NULL, "---", NULL, NULL, NULL }, */
610 {"View/Encoding", NULL, N_("Character _encoding") }, /* set_charset_cb */
611 {"View/Encoding/---", NULL, "---" },
612 #define ENC_ACTION(cs_char,c_char,string) \
613 { "View/Encoding/" cs_char, NULL, N_(string), NULL, NULL, c_char }
615 {"View/Encoding/Western", NULL, N_("Western European") },
616 {"View/Encoding/Baltic", NULL, N_("Baltic") },
617 {"View/Encoding/Hebrew", NULL, N_("Hebrew") },
618 {"View/Encoding/Arabic", NULL, N_("Arabic") },
619 {"View/Encoding/Cyrillic", NULL, N_("Cyrillic") },
620 {"View/Encoding/Japanese", NULL, N_("Japanese") },
621 {"View/Encoding/Chinese", NULL, N_("Chinese") },
622 {"View/Encoding/Korean", NULL, N_("Korean") },
623 {"View/Encoding/Thai", NULL, N_("Thai") },
625 {"View/Decode", NULL, N_("Decode") }, /* set_decode_cb */
626 {"View/Decode/---", NULL, "---" },
628 #define DEC_ACTION(cs_type,c_type,string) \
629 { "View/Decode/" cs_type, NULL, N_(string), NULL, NULL, c_type }
631 /* {"View/---", NULL, "---", NULL, NULL, NULL }, */
632 {"View/OpenNewWindow", NULL, N_("Open in new _window"), "<control><alt>N", NULL, G_CALLBACK(open_msg_cb) },
633 {"View/MessageSource", NULL, N_("Mess_age source"), "<control>U", NULL, G_CALLBACK(view_source_cb) },
634 /* {"View/---", NULL, "---", NULL, NULL, NULL }, */
635 {"View/Part", NULL, N_("Message part") },
636 {"View/Part/AsText", NULL, N_("View as text"), "T", NULL, G_CALLBACK(view_part_as_text_cb) },
637 {"View/Part/Open", NULL, N_("Open"), "L", NULL, G_CALLBACK(open_part_cb) },
638 #ifndef G_OS_WIN32
639 {"View/Part/OpenWith", NULL, N_("Open with..."), "O", NULL, G_CALLBACK(open_part_with_cb) },
640 #endif
641 /* {"View/---", NULL, "---", NULL, NULL, NULL }, */
643 {"View/Quotes", NULL, N_("Quotes") },
644 /* {"View/---", NULL, "---", NULL, NULL, NULL }, */
645 {"View/UpdateSummary", NULL, N_("_Update summary"), "<control><alt>U", NULL, G_CALLBACK(update_summary_cb) },
647 /* Message menu */
648 {"Message/Receive", NULL, N_("Recei_ve") },
649 {"Message/Receive/CurrentAccount", NULL, N_("Get from _current account"), "<control>I", NULL, G_CALLBACK(mw_inc_mail_cb) },
650 {"Message/Receive/AllAccounts", NULL, N_("Get from _all accounts"), "<shift><control>I", NULL, G_CALLBACK(mw_inc_all_account_mail_cb) },
651 {"Message/Receive/CancelReceiving", NULL, N_("Cancel receivin_g"), NULL, NULL, G_CALLBACK(inc_cancel_cb) },
652 {"Message/Receive/---", NULL, "---" },
653 {"Message/Receive/PlaceHolder", NULL, "PlaceHolder,", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
654 {"Message/SendQueue", NULL, N_("_Send queued messages"), NULL, NULL, G_CALLBACK(mw_send_queue_cb) },
655 {"Message/CancelSending", NULL, N_("Cancel sending"), NULL, NULL, G_CALLBACK(send_cancel_cb) },
657 {"Message/---", NULL, "---" },
659 {"Message/ComposeEmail", NULL, N_("Compose a_n email message"), "<control>M", NULL, G_CALLBACK(mw_compose_mail_cb) },
660 {"Message/ComposeNews", NULL, N_("Compose a news message"), NULL, NULL, G_CALLBACK(mw_compose_news_cb) },
662 {"Message/Reply", NULL, N_("_Reply"), "<control>R", NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_REPLY */
663 {"Message/ReplyTo", NULL, N_("Repl_y to") },
664 {"Message/ReplyTo/All", NULL, N_("_All"), "<control><shift>R", NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_REPLY_TO_ALL */
665 {"Message/ReplyTo/Sender", NULL, N_("_Sender"), NULL, NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_REPLY_TO_SENDER */
666 {"Message/ReplyTo/List", NULL, N_("Mailing _list"), "<control>L", NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_REPLY_TO_LIST */
667 {"Message/FollowupReply", NULL, N_("Follow-up and reply to"), NULL, NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_FOLLOWUP_AND_REPLY_TO */
668 /*{"Message/---", NULL, "---" },*/
670 {"Message/Forward", NULL, N_("_Forward"), "<control><alt>F", NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_FORWARD_INLINE */
671 {"Message/ForwardAtt", NULL, N_("For_ward as attachment"), NULL, NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_FORWARD_AS_ATTACH */
672 {"Message/Redirect", NULL, N_("Redirec_t"), NULL, NULL, G_CALLBACK(main_window_reply_cb) }, /* COMPOSE_REDIRECT */
674 {"Message/MailingList", NULL, N_("Mailing-_List") },
675 {"Message/MailingList/Post", NULL, N_("Post") },
676 {"Message/MailingList/Post/PlaceHolder", NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
677 {"Message/MailingList/Help", NULL, N_("Help") },
678 {"Message/MailingList/Help/PlaceHolder", NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
679 {"Message/MailingList/Subscribe", NULL, N_("Subscribe") },
680 {"Message/MailingList/Subscribe/PlaceHolder", NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
681 {"Message/MailingList/Unsubscribe", NULL, N_("Unsubscribe") },
682 {"Message/MailingList/Unsubscribe/PlaceHolder", NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
683 {"Message/MailingList/ViewArchive", NULL, N_("View archive") },
684 {"Message/MailingList/ViewArchive/PlaceHolder", NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
685 {"Message/MailingList/ContactOwner", NULL, N_("Contact owner") },
686 {"Message/MailingList/ContactOwner/PlaceHolder", NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
687 /* separation */
689 {"Message/Move", NULL, N_("M_ove..."), "<control>O", NULL, G_CALLBACK(move_to_cb) },
690 {"Message/Copy", NULL, N_("_Copy..."), "<shift><control>O", NULL, G_CALLBACK(copy_to_cb) },
691 {"Message/Trash", NULL, N_("Move to _trash"), "<control>D", NULL, G_CALLBACK(delete_trash_cb) },
692 {"Message/Delete", NULL, N_("_Delete..."), NULL, NULL, G_CALLBACK(delete_cb) },
693 {"Message/TrashThread", NULL, N_("Move thread to tr_ash"), NULL, NULL, G_CALLBACK(trash_thread_cb) },
694 {"Message/DeleteThread", NULL, N_("Delete t_hread"), NULL, NULL, G_CALLBACK(delete_thread_cb) },
695 {"Message/CancelNews", NULL, N_("Cancel a news message"), NULL, NULL, G_CALLBACK(cancel_cb) },
696 /* separation */
698 {"Message/Mark", NULL, N_("_Mark") },
699 {"Message/Mark/Mark", NULL, N_("_Mark"), "<shift>asterisk", NULL, G_CALLBACK(mark_cb) },
700 {"Message/Mark/Unmark", NULL, N_("_Unmark"), "U", NULL, G_CALLBACK(unmark_cb) },
701 {"Message/Mark/---", NULL, "---", NULL, NULL, NULL },
703 {"Message/Mark/MarkUnread", NULL, N_("Mark as unr_ead"), "<shift>exclam", NULL, G_CALLBACK(mark_as_unread_cb) },
704 {"Message/Mark/MarkRead", NULL, N_("Mark as rea_d"), NULL, NULL, G_CALLBACK(mark_as_read_cb) },
705 /* separation */
706 {"Message/Mark/MarkAllRead", NULL, N_("Mark all read"), NULL, NULL, G_CALLBACK(mark_all_read_cb) },
707 /* separation */
708 {"Message/Mark/IgnoreThread", NULL, N_("Ignore thread"), NULL, NULL, G_CALLBACK(ignore_thread_cb) },
709 {"Message/Mark/UnignoreThread", NULL, N_("Unignore thread"), NULL, NULL, G_CALLBACK(unignore_thread_cb) },
710 {"Message/Mark/WatchThread", NULL, N_("Watch thread"), NULL, NULL, G_CALLBACK(watch_thread_cb) },
711 {"Message/Mark/UnwatchThread", NULL, N_("Unwatch thread"), NULL, NULL, G_CALLBACK(unwatch_thread_cb) },
712 /* separation */
714 {"Message/Mark/MarkSpam", NULL, N_("Mark as _spam"), NULL, NULL, G_CALLBACK(mark_as_spam_cb) },
715 {"Message/Mark/MarkHam", NULL, N_("Mark as _ham"), NULL, NULL, G_CALLBACK(mark_as_ham_cb) },
716 /* separation */
718 {"Message/Mark/Lock", NULL, N_("Lock"), NULL, NULL, G_CALLBACK(lock_msgs_cb) },
719 {"Message/Mark/Unlock", NULL, N_("Unlock"), NULL, NULL, G_CALLBACK(unlock_msgs_cb) },
721 {"Message/ColorLabel", NULL, N_("Color la_bel") },
722 {"Message/Tags", NULL, N_("Ta_gs") },
723 /*{"Message/---", NULL, "---" },*/
725 {"Message/Reedit", NULL, N_("Re-_edit"), NULL, NULL, G_CALLBACK(reedit_cb) },
726 /*{"Message/---", NULL, "---" },*/
728 {"Message/CheckSignature", NULL, N_("Check signature"), "C", NULL, G_CALLBACK(check_signature_cb) },
730 /* Tools menu */
732 {"Tools/AddressBook", NULL, N_("_Address book"), "<control><shift>A", NULL, G_CALLBACK(addressbook_open_cb) },
733 {"Tools/AddSenderToAB", NULL, N_("Add sender to address boo_k"), NULL, NULL, G_CALLBACK(add_address_cb) },
735 {"Tools/CollectAddresses", NULL, N_("C_ollect addresses") },
736 {"Tools/CollectAddresses/FromFolder", NULL, N_("From current _folder..."), NULL, NULL, G_CALLBACK(addr_harvest_cb) },
737 {"Tools/CollectAddresses/FromSelected", NULL, N_("From selected _messages..."), NULL, NULL, G_CALLBACK(addr_harvest_msg_cb) },
738 {"Tools/---", NULL, "---", NULL, NULL, NULL },
740 {"Tools/FilterFolder", NULL, N_("_Filter all messages in folder"), NULL, NULL, G_CALLBACK(filter_cb) },
741 {"Tools/FilterSelected", NULL, N_("Filter _selected messages"), NULL, NULL, G_CALLBACK(filter_list_cb) },
742 {"Tools/RunProcessing", NULL, N_("Run folder pr_ocessing rules"), NULL, NULL, G_CALLBACK(process_cb) },
744 {"Tools/CreateFilterRule", NULL, N_("_Create filter rule") },
745 {"Tools/CreateFilterRule/Automatically",NULL, N_("_Automatically"), NULL, NULL, G_CALLBACK(create_filter_cb) }, /* FILTER_BY_AUTO */
746 {"Tools/CreateFilterRule/ByFrom", NULL, N_("By _From"), NULL, NULL, G_CALLBACK(create_filter_cb) }, /* FILTER_BY_FROM */
747 {"Tools/CreateFilterRule/ByTo", NULL, N_("By _To"), NULL, NULL, G_CALLBACK(create_filter_cb) }, /* FILTER_BY_TO */
748 {"Tools/CreateFilterRule/BySubject", NULL, N_("By _Subject"), NULL, NULL, G_CALLBACK(create_filter_cb) }, /* FILTER_BY_SUBJECT */
750 {"Tools/CreateProcessingRule", NULL, N_("Create processing rule") },
751 {"Tools/CreateProcessingRule/Automatically", NULL, N_("_Automatically"), NULL, NULL, G_CALLBACK(create_processing_cb) },
752 {"Tools/CreateProcessingRule/ByFrom", NULL, N_("By _From"), NULL, NULL, G_CALLBACK(create_processing_cb) },
753 {"Tools/CreateProcessingRule/ByTo", NULL, N_("By _To"), NULL, NULL, G_CALLBACK(create_processing_cb) },
754 {"Tools/CreateProcessingRule/BySubject",NULL, N_("By _Subject"), NULL, NULL, G_CALLBACK(create_processing_cb) },
755 /* {"Tools/---", NULL, "---", NULL, NULL, NULL }, */
757 {"Tools/ListUrls", NULL, N_("List _URLs..."), "<control><shift>U", NULL, G_CALLBACK(open_urls_cb) },
759 /* {"Tools/---", NULL, "---", NULL, NULL, NULL }, */
760 {"Tools/Actions", NULL, N_("Actio_ns") },
761 {"Tools/Actions/PlaceHolder", NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
762 /* {"Tools/---", NULL, "---", NULL, NULL, NULL }, */
764 {"Tools/CheckNewMessages", NULL, N_("Ch_eck for new messages in all folders"), NULL, NULL, G_CALLBACK(update_folderview_cb) },
765 {"Tools/DeleteDuplicates", NULL, N_("Delete du_plicated messages") },
766 {"Tools/DeleteDuplicates/SelFolder", NULL, N_("In selected folder"), NULL, NULL, G_CALLBACK(delete_duplicated_cb) },
767 {"Tools/DeleteDuplicates/AllFolders", NULL, N_("In all folders"), NULL, NULL, G_CALLBACK(delete_duplicated_all_cb) },
768 /* {"Tools/---", NULL, "---", NULL, NULL, NULL }, */
770 {"Tools/Execute", NULL, N_("E_xecute"), "X", NULL, G_CALLBACK(execute_summary_cb) },
771 {"Tools/Expunge", NULL, N_("Exp_unge"), "<control>E", NULL, G_CALLBACK(expunge_summary_cb) },
772 #ifdef USE_GNUTLS
773 /* {"Tools/---", NULL, "---", NULL, NULL, NULL }, */
774 {"Tools/SSLCertificates", NULL, N_("SSL/TLS cer_tificates"), NULL, NULL, G_CALLBACK(ssl_manager_open_cb) },
775 #endif
776 /* {"Tools/---", NULL, "---", NULL, NULL, NULL }, */
777 #ifndef G_OS_WIN32
778 {"Tools/FilteringLog", NULL, N_("Filtering Lo_g"), NULL, NULL, G_CALLBACK(filtering_debug_window_show_cb) },
779 #endif
780 {"Tools/NetworkLog", NULL, N_("Network _Log"), "<shift><control>L", NULL, G_CALLBACK(log_window_show_cb) },
781 /* {"Tools/---", NULL, "---", NULL, NULL, NULL }, */
782 {"Tools/ForgetSessionPasswords", NULL, N_("_Forget all session passwords"), NULL, NULL, G_CALLBACK(forget_session_passwords_cb) },
783 #ifndef PASSWORD_CRYPTO_OLD
784 {"Tools/ForgetMasterPassphrase", NULL, N_("Forget _master passphrase"), NULL, NULL, G_CALLBACK(forget_master_passphrase_cb) },
785 #endif
787 /* Configuration menu */
788 {"Configuration/ChangeAccount", NULL, N_("C_hange current account") },
789 {"Configuration/ChangeAccount/PlaceHolder", NULL, "Placeholder", NULL, NULL, G_CALLBACK(mainwindow_nothing_cb) },
790 {"Configuration/AccountPrefs", NULL, N_("_Preferences for current account..."), NULL, NULL, G_CALLBACK(prefs_account_open_cb) },
791 {"Configuration/CreateAccount", NULL, N_("Create _new account..."), NULL, NULL, G_CALLBACK(new_account_cb) },
792 {"Configuration/EditAccounts", NULL, N_("_Edit accounts..."), NULL, NULL, G_CALLBACK(account_edit_open) },
793 {"Configuration/---", NULL, "---", NULL, NULL, NULL },
795 {"Configuration/Preferences", NULL, N_("P_references..."), NULL, NULL, G_CALLBACK(prefs_open_cb) },
796 {"Configuration/PreProcessing", NULL, N_("Pre-pr_ocessing..."), NULL, NULL, G_CALLBACK(prefs_pre_processing_open_cb) },
797 {"Configuration/PostProcessing", NULL, N_("Post-pro_cessing..."), NULL, NULL, G_CALLBACK(prefs_post_processing_open_cb) },
798 {"Configuration/Filtering", NULL, N_("_Filtering..."), NULL, NULL, G_CALLBACK(prefs_filtering_open_cb) },
799 {"Configuration/Templates", NULL, N_("_Templates..."), NULL, NULL, G_CALLBACK(prefs_template_open_cb) },
800 {"Configuration/Actions", NULL, N_("_Actions..."), NULL, NULL, G_CALLBACK(prefs_actions_open_cb) },
801 {"Configuration/Tags", NULL, N_("Tag_s..."), NULL, NULL, G_CALLBACK(prefs_tags_open_cb) },
802 /*{"Configuration/---", NULL, "---", NULL, NULL, NULL }, */
803 {"Configuration/Plugins", NULL, N_("Plu_gins..."), NULL, NULL, G_CALLBACK(plugins_open_cb) },
805 /* Help menu */
806 {"Help/Manual", NULL, N_("_Manual"), NULL, NULL, G_CALLBACK(manual_open_cb) },
807 {"Help/FAQ", NULL, N_("_Online User-contributed FAQ"), NULL, NULL, G_CALLBACK(manual_faq_open_cb) },
808 {"Help/IconLegend", NULL, N_("Icon _Legend"), NULL, NULL, G_CALLBACK(legend_open_cb) },
809 #ifdef G_OS_WIN32
810 {"Help/SetDefault", NULL, N_("Set as default client"), NULL, NULL, G_CALLBACK(set_default_client_cb) },
811 #endif
812 {"Help/---", NULL, "---" },
813 {"Help/About", NULL, N_("_About"), NULL, NULL, G_CALLBACK(about_cb) },
816 static GtkToggleActionEntry mainwin_toggle_entries[] = {
817 {"File/OfflineMode", NULL, N_("Offline _mode"), "<control>W", NULL, G_CALLBACK(toggle_work_offline_cb) }, /*toggle*/
818 {"View/ShowHide/MenuBar", NULL, N_("Men_ubar"), "<control>F12", NULL, G_CALLBACK(toggle_menubar_cb) }, /* toggle */
819 {"View/ShowHide/MessageView", NULL, N_("_Message view"), "V", NULL, G_CALLBACK(toggle_message_cb) }, /* toggle */
820 #ifndef GENERIC_UMPC
821 {"View/ShowHide/StatusBar", NULL, N_("Status _bar"), NULL, NULL, G_CALLBACK(toggle_statusbar_cb) }, /* toggle */
822 #endif
823 {"View/ShowHide/ColumnHeaders", NULL, N_("Column headers"), NULL, NULL, G_CALLBACK(toggle_col_headers_cb) }, /* toggle */
824 {"View/ThreadView", NULL, N_("Th_read view"), "<control>T", NULL, G_CALLBACK(thread_cb) }, /* toggle */
825 {"View/HideReadThreads", NULL, N_("Hide read threads"), NULL, NULL, G_CALLBACK(hide_read_threads) }, /* toggle */
826 {"View/HideReadMessages", NULL, N_("_Hide read messages"), NULL, NULL, G_CALLBACK(hide_read_messages) }, /* toggle */
827 {"View/HideDelMessages", NULL, N_("Hide deleted messages"), NULL, NULL, G_CALLBACK(hide_del_messages) }, /* toggle */
828 {"View/FullScreen", NULL, N_("_Fullscreen"), "F11", NULL, G_CALLBACK(toggle_fullscreen_cb) }, /* toggle */
829 {"View/AllHeaders", NULL, N_("Show all _headers"), "<control>H", NULL, G_CALLBACK(show_all_header_cb) }, /* toggle */
830 {"View/Quotes/CollapseAll", NULL, N_("_Collapse all"), "<control><shift>Q", NULL, G_CALLBACK(hide_quotes_cb) }, /* 1 toggle */
831 {"View/Quotes/Collapse2", NULL, N_("Collapse from level _2"), NULL, NULL, G_CALLBACK(hide_quotes_cb) }, /* 2 toggle */
832 {"View/Quotes/Collapse3", NULL, N_("Collapse from level _3"), NULL, NULL, G_CALLBACK(hide_quotes_cb) }, /* 3 toggle */
835 static GtkRadioActionEntry mainwin_showhide_radio_entries[] = { /* toggle_toolbar_cb */
836 {"View/ShowHide/Toolbar/TextBelowIcon", NULL, N_("Text _below icons"), NULL, NULL, TOOLBAR_BOTH }, /* radio TOOLBAR_BOTH */
837 {"View/ShowHide/Toolbar/TextBesideIcon",NULL, N_("Text be_side icons"), NULL, NULL, TOOLBAR_BOTH_HORIZ }, /* radio TOOLBAR_BOTH_HORIZ */
838 {"View/ShowHide/Toolbar/IconOnly", NULL, N_("_Icons only"), NULL, NULL, TOOLBAR_ICON }, /* radio TOOLBAR_ICON */
839 {"View/ShowHide/Toolbar/TextOnly", NULL, N_("_Text only"), NULL, NULL, TOOLBAR_TEXT }, /* radio TOOLBAR_TEXT */
840 #ifndef GENERIC_UMPC
841 {"View/ShowHide/Toolbar/Hide", NULL, N_("_Hide"), NULL, NULL, TOOLBAR_NONE }, /* radio TOOLBAR_NONE */
842 #endif
844 #ifndef GENERIC_UMPC
845 static GtkRadioActionEntry mainwin_layout_radio_entries[] = { /* set_layout_cb */
846 {"View/Layout/Standard", NULL, N_("_Standard"), NULL, NULL, NORMAL_LAYOUT }, /* radio NORMAL_LAYOUT */
847 {"View/Layout/ThreeColumns", NULL, N_("_Three columns"), NULL, NULL, VERTICAL_LAYOUT }, /* radio VERTICAL_LAYOUT */
848 {"View/Layout/WideMessage", NULL, N_("_Wide message"), NULL, NULL, WIDE_LAYOUT }, /* radio WIDE_LAYOUT */
849 {"View/Layout/WideMessageList", NULL, N_("W_ide message list"), NULL, NULL, WIDE_MSGLIST_LAYOUT }, /* radio WIDE_MSGLIST_LAYOUT */
850 {"View/Layout/SmallScreen", NULL, N_("S_mall screen"), NULL, NULL, SMALL_LAYOUT }, /* radio SMALL_LAYOUT */
852 #endif
853 static GtkRadioActionEntry mainwin_sort_radio_entries[] = { /* sort_summary_cb */
854 {"View/Sort/Number", NULL, N_("By _number"), NULL, NULL, SORT_BY_NUMBER }, /* radio SORT_BY_NUMBER */
855 {"View/Sort/Size", NULL, N_("By s_ize"), NULL, NULL, SORT_BY_SIZE }, /* radio SORT_BY_SIZE */
856 {"View/Sort/Date", NULL, N_("By _date"), NULL, NULL, SORT_BY_DATE }, /* radio SORT_BY_DATE */
857 {"View/Sort/ThreadDate", NULL, N_("By thread date"), NULL, NULL, SORT_BY_THREAD_DATE }, /* radio SORT_BY_THREAD_DATE */
858 {"View/Sort/From", NULL, N_("By _From"), NULL, NULL, SORT_BY_FROM }, /* radio SORT_BY_FROM */
859 {"View/Sort/To", NULL, N_("By _To"), NULL, NULL, SORT_BY_TO }, /* radio SORT_BY_TO */
860 {"View/Sort/Subject", NULL, N_("By s_ubject"), NULL, NULL, SORT_BY_SUBJECT }, /* radio SORT_BY_SUBJECT */
861 {"View/Sort/Color", NULL, N_("By _color label"), NULL, NULL, SORT_BY_LABEL }, /* radio SORT_BY_LABEL */
862 {"View/Sort/Tag", NULL, N_("By tag"), NULL, NULL, SORT_BY_TAGS }, /* radio SORT_BY_TAGS */
863 {"View/Sort/Mark", NULL, N_("By _mark"), NULL, NULL, SORT_BY_MARK }, /* radio SORT_BY_MARK */
864 {"View/Sort/Status", NULL, N_("By _status"), NULL, NULL, SORT_BY_STATUS }, /* radio SORT_BY_STATUS */
865 {"View/Sort/Attachment", NULL, N_("By a_ttachment"), NULL, NULL, SORT_BY_MIME }, /* radio SORT_BY_MIME */
866 {"View/Sort/Score", NULL, N_("By score"), NULL, NULL, SORT_BY_SCORE }, /* radio SORT_BY_SCORE */
867 {"View/Sort/Locked", NULL, N_("By locked"), NULL, NULL, SORT_BY_LOCKED }, /* radio SORT_BY_LOCKED */
868 {"View/Sort/DontSort", NULL, N_("D_on't sort"), NULL, NULL, SORT_BY_NONE }, /* radio SORT_BY_NONE */
871 static GtkRadioActionEntry mainwin_sorttype_radio_entries[] = { /* sort_summary_type_cb */
872 {"View/Sort/Ascending", NULL, N_("Ascending"), NULL, NULL, SORT_ASCENDING }, /* radio SORT_ASCENDING */
873 {"View/Sort/Descending", NULL, N_("Descending"), NULL, NULL, SORT_DESCENDING }, /* radio SORT_DESCENDING */
876 static GtkRadioActionEntry mainwin_radio_enc_entries[] =
878 ENC_ACTION(CS_AUTO, C_AUTO, N_("_Automatic")), /* RADIO set_charset_cb */
879 ENC_ACTION(CS_US_ASCII, C_US_ASCII, N_("7bit ASCII (US-ASC_II)")), /* RADIO set_charset_cb */
880 ENC_ACTION(CS_UTF_8, C_UTF_8, N_("Unicode (_UTF-8)")), /* RADIO set_charset_cb */
881 ENC_ACTION("Western/"CS_ISO_8859_1, C_ISO_8859_1, "ISO-8859-_1"), /* RADIO set_charset_cb */
882 ENC_ACTION("Western/"CS_ISO_8859_15, C_ISO_8859_15, "ISO-8859-15"), /* RADIO set_charset_cb */
883 ENC_ACTION("Western/"CS_WINDOWS_1252, C_WINDOWS_1252, "Windows-1252"), /* RADIO set_charset_cb */
884 ENC_ACTION(CS_ISO_8859_2, C_ISO_8859_2, N_("Central European (ISO-8859-_2)")), /* RADIO set_charset_cb */
885 ENC_ACTION("Baltic/"CS_ISO_8859_13, C_ISO_8859_13, "ISO-8859-13"), /* RADIO set_charset_cb */
886 ENC_ACTION("Baltic/"CS_ISO_8859_4, C_ISO_8859_14, "ISO-8859-_4"), /* RADIO set_charset_cb */
887 ENC_ACTION(CS_ISO_8859_7, C_ISO_8859_7, N_("Greek (ISO-8859-_7)")), /* RADIO set_charset_cb */
888 ENC_ACTION("Hebrew/"CS_ISO_8859_8, C_ISO_8859_8, "ISO-8859-_8"), /* RADIO set_charset_cb */
889 ENC_ACTION("Hebrew/"CS_WINDOWS_1255, C_WINDOWS_1255, "Windows-1255"), /* RADIO set_charset_cb */
890 ENC_ACTION("Arabic/"CS_ISO_8859_6, C_ISO_8859_6, "ISO-8859-_6"), /* RADIO set_charset_cb */
891 ENC_ACTION("Arabic/"CS_WINDOWS_1256, C_WINDOWS_1256, "Windows-1256"), /* RADIO set_charset_cb */
892 ENC_ACTION(CS_ISO_8859_9, C_ISO_8859_9, N_("Turkish (ISO-8859-_9)")), /* RADIO set_charset_cb */
893 ENC_ACTION("Cyrillic/"CS_ISO_8859_5, C_ISO_8859_5, "ISO-8859-_5"), /* RADIO set_charset_cb */
894 ENC_ACTION("Cyrillic/"CS_KOI8_R, C_KOI8_R, "KOI8-_R"), /* RADIO set_charset_cb */
895 ENC_ACTION("Cyrillic/"CS_MACCYR, C_MACCYR, "_Mac-Cyrillic"), /* RADIO set_charset_cb */
896 ENC_ACTION("Cyrillic/"CS_KOI8_U, C_KOI8_U, "KOI8-_U"), /* RADIO set_charset_cb */
897 ENC_ACTION("Cyrillic/"CS_WINDOWS_1251, C_WINDOWS_1251, "Windows-1251"), /* RADIO set_charset_cb */
898 ENC_ACTION("Japanese/"CS_ISO_2022_JP, C_ISO_2022_JP, "ISO-2022-_JP"), /* RADIO set_charset_cb */
899 ENC_ACTION("Japanese/"CS_ISO_2022_JP_2, C_ISO_2022_JP_2, "ISO-2022-JP-_2"), /* RADIO set_charset_cb */
900 ENC_ACTION("Japanese/"CS_EUC_JP, C_EUC_JP, "_EUC-JP"), /* RADIO set_charset_cb */
901 ENC_ACTION("Japanese/"CS_SHIFT_JIS, C_SHIFT_JIS, "_Shift-JIS"), /* RADIO set_charset_cb */
902 ENC_ACTION("Chinese/"CS_GB18030, C_GB18030, "_GB18030"), /* RADIO set_charset_cb */
903 ENC_ACTION("Chinese/"CS_GB2312, C_GB2312, "_GB2312"), /* RADIO set_charset_cb */
904 ENC_ACTION("Chinese/"CS_GBK, C_GBK, "GB_K"), /* RADIO set_charset_cb */
905 ENC_ACTION("Chinese/"CS_BIG5, C_BIG5, "_Big5-JP"), /* RADIO set_charset_cb */
906 ENC_ACTION("Chinese/"CS_EUC_TW, C_EUC_TW, "EUC-_TW"), /* RADIO set_charset_cb */
907 ENC_ACTION("Korean/"CS_EUC_KR, C_EUC_KR, "_EUC-KR"), /* RADIO set_charset_cb */
908 ENC_ACTION("Korean/"CS_ISO_2022_KR, C_ISO_2022_KR, "_ISO-2022-KR"), /* RADIO set_charset_cb */
909 ENC_ACTION("Thai/"CS_TIS_620, C_TIS_620, "_TIS-620-KR"), /* RADIO set_charset_cb */
910 ENC_ACTION("Thai/"CS_WINDOWS_874, C_WINDOWS_874, "_Windows-874"), /* RADIO set_charset_cb */
913 static GtkRadioActionEntry mainwin_radio_dec_entries[] =
915 DEC_ACTION("AutoDetect", 0, N_("_Auto detect")), /* set_decode_cb */
916 /* --- */
917 DEC_ACTION("8bit", ENC_8BIT, "_8bit"),
918 DEC_ACTION("QP", ENC_QUOTED_PRINTABLE, "_Quoted printable"),
919 DEC_ACTION("B64", ENC_BASE64, "_Base64"),
920 DEC_ACTION("Uuencode", ENC_X_UUENCODE, "_Uuencode"),
923 static gboolean offline_ask_sync = TRUE;
924 static guint lastkey;
925 static gboolean is_obscured = FALSE;
927 static gboolean main_window_accel_activate (GtkAccelGroup *accelgroup,
928 GObject *arg1,
929 guint value,
930 GdkModifierType mod,
931 gpointer user_data)
933 MainWindow *mainwin = (MainWindow *)user_data;
935 if (mainwin->summaryview &&
936 mainwin->summaryview->quicksearch &&
937 quicksearch_has_focus(mainwin->summaryview->quicksearch) &&
938 (mod == 0 || mod == GDK_SHIFT_MASK)) {
939 quicksearch_pass_key(mainwin->summaryview->quicksearch, lastkey, mod);
940 return TRUE;
942 return FALSE;
945 #define N_COLOR_LABELS colorlabel_get_color_count()
947 static void mainwindow_colorlabel_menu_item_activate_item_cb(GtkMenuItem *menu_item,
948 gpointer data)
950 MainWindow *mainwin;
951 GtkMenuShell *menu;
952 GtkCheckMenuItem **items;
953 gint n;
954 GList *children, *cur;
955 GSList *sel;
957 mainwin = (MainWindow *)data;
958 cm_return_if_fail(mainwin != NULL);
960 sel = summary_get_selection(mainwin->summaryview);
961 if (!sel) return;
963 menu = GTK_MENU_SHELL(mainwin->colorlabel_menu);
964 cm_return_if_fail(menu != NULL);
966 Xalloca(items, (N_COLOR_LABELS + 1) * sizeof(GtkWidget *), return);
968 /* NOTE: don't return prematurely because we set the "dont_toggle"
969 * state for check menu items. This would be bad! */
970 g_object_set_data(G_OBJECT(menu), "dont_toggle",
971 GINT_TO_POINTER(1));
973 /* clear items. get item pointers. */
974 children = gtk_container_get_children(GTK_CONTAINER(menu));
975 for (n = 0, cur = children; cur != NULL && cur->data != NULL; cur = cur->next) {
976 if (GTK_IS_CHECK_MENU_ITEM(cur->data)) {
977 gtk_check_menu_item_set_active
978 (GTK_CHECK_MENU_ITEM(cur->data), FALSE);
979 items[n] = GTK_CHECK_MENU_ITEM(cur->data);
980 n++;
984 g_list_free(children);
986 if (n == (N_COLOR_LABELS + 1)) {
987 /* iterate all messages and set the state of the appropriate
988 * items */
989 for (; sel != NULL; sel = sel->next) {
990 MsgInfo *msginfo;
991 gint clabel;
993 msginfo = (MsgInfo *)sel->data;
994 if (msginfo) {
995 clabel = MSG_GET_COLORLABEL_VALUE(msginfo->flags);
996 if (!gtk_check_menu_item_get_active(items[clabel]))
997 gtk_check_menu_item_set_active
998 (items[clabel], TRUE);
1001 } else
1002 g_warning("invalid number of color elements (%d)", n);
1004 g_slist_free(sel);
1005 /* reset "dont_toggle" state */
1006 g_object_set_data(G_OBJECT(menu), "dont_toggle",
1007 GINT_TO_POINTER(0));
1010 static void mainwindow_colorlabel_menu_item_activate_cb(GtkWidget *widget,
1011 gpointer data)
1013 guint color = GPOINTER_TO_UINT(data);
1014 MainWindow *mainwin;
1016 mainwin = g_object_get_data(G_OBJECT(widget), "mainwin");
1017 cm_return_if_fail(mainwin != NULL);
1019 /* "dont_toggle" state set? */
1020 if (g_object_get_data(G_OBJECT(mainwin->colorlabel_menu),
1021 "dont_toggle"))
1022 return;
1024 summary_set_colorlabel(mainwin->summaryview, color, NULL);
1027 static void mainwindow_tags_menu_item_activate_item_cb(GtkMenuItem *menu_item,
1028 gpointer data)
1030 MainWindow *mainwin;
1031 GtkMenuShell *menu;
1032 GList *children, *cur;
1033 GSList *sel;
1034 GHashTable *menu_table = g_hash_table_new_full(
1035 g_direct_hash,
1036 g_direct_equal,
1037 NULL, NULL);
1038 GHashTable *menu_allsel_table = g_hash_table_new_full(
1039 g_direct_hash,
1040 g_direct_equal,
1041 NULL, NULL);
1042 gint sel_len;
1043 mainwin = (MainWindow *)data;
1044 cm_return_if_fail(mainwin != NULL);
1046 sel = summary_get_selection(mainwin->summaryview);
1047 if (!sel) return;
1049 menu = GTK_MENU_SHELL(mainwin->tags_menu);
1050 cm_return_if_fail(menu != NULL);
1052 /* NOTE: don't return prematurely because we set the "dont_toggle"
1053 * state for check menu items */
1054 g_object_set_data(G_OBJECT(menu), "dont_toggle",
1055 GINT_TO_POINTER(1));
1057 /* clear items. get item pointers. */
1058 children = gtk_container_get_children(GTK_CONTAINER(menu));
1059 for (cur = children; cur != NULL && cur->data != NULL; cur = cur->next) {
1060 if (GTK_IS_CHECK_MENU_ITEM(cur->data)) {
1061 gint id = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(cur->data),
1062 "tag_id"));
1063 gtk_check_menu_item_set_active
1064 (GTK_CHECK_MENU_ITEM(cur->data), FALSE);
1066 g_hash_table_insert(menu_table, GINT_TO_POINTER(id), GTK_CHECK_MENU_ITEM(cur->data));
1067 g_hash_table_insert(menu_allsel_table, GINT_TO_POINTER(id), GINT_TO_POINTER(0));
1071 g_list_free(children);
1073 /* iterate all messages and set the state of the appropriate
1074 * items */
1075 sel_len = 0;
1076 for (; sel != NULL; sel = sel->next) {
1077 MsgInfo *msginfo;
1078 GSList *tags = NULL;
1079 GtkCheckMenuItem *item;
1080 msginfo = (MsgInfo *)sel->data;
1081 sel_len++;
1082 if (msginfo) {
1083 tags = msginfo->tags;
1084 if (!tags)
1085 continue;
1087 for (; tags; tags = tags->next) {
1088 gint num_checked = GPOINTER_TO_INT(g_hash_table_lookup(menu_allsel_table, tags->data));
1089 item = g_hash_table_lookup(menu_table, GINT_TO_POINTER(tags->data));
1090 if (item && !gtk_check_menu_item_get_active(item)) {
1091 gtk_check_menu_item_set_active
1092 (item, TRUE);
1094 num_checked++;
1095 g_hash_table_replace(menu_allsel_table, tags->data, GINT_TO_POINTER(num_checked));
1100 children = gtk_container_get_children(GTK_CONTAINER(menu));
1101 for (cur = children; cur != NULL && cur->data != NULL; cur = cur->next) {
1102 if (GTK_IS_CHECK_MENU_ITEM(cur->data)) {
1103 gint id = GPOINTER_TO_INT(g_object_get_data(G_OBJECT(cur->data),
1104 "tag_id"));
1105 gint num_checked = GPOINTER_TO_INT(g_hash_table_lookup(menu_allsel_table, GINT_TO_POINTER(id)));
1106 if (num_checked < sel_len && num_checked > 0)
1107 gtk_check_menu_item_set_inconsistent(GTK_CHECK_MENU_ITEM(cur->data), TRUE);
1108 else
1109 gtk_check_menu_item_set_inconsistent(GTK_CHECK_MENU_ITEM(cur->data), FALSE);
1112 g_list_free(children);
1113 g_slist_free(sel);
1114 g_hash_table_destroy(menu_table);
1115 g_hash_table_destroy(menu_allsel_table);
1116 /* reset "dont_toggle" state */
1117 g_object_set_data(G_OBJECT(menu), "dont_toggle",
1118 GINT_TO_POINTER(0));
1121 static void mainwindow_tags_menu_item_activate_cb(GtkWidget *widget,
1122 gpointer data)
1124 gint id = GPOINTER_TO_INT(data);
1125 gboolean set = gtk_check_menu_item_get_active(GTK_CHECK_MENU_ITEM(widget));
1126 MainWindow *mainwin;
1128 mainwin = g_object_get_data(G_OBJECT(widget), "mainwin");
1129 cm_return_if_fail(mainwin != NULL);
1131 /* "dont_toggle" state set? */
1132 if (g_object_get_data(G_OBJECT(mainwin->tags_menu),
1133 "dont_toggle"))
1134 return;
1136 if (!set)
1137 id = -id;
1138 summary_set_tag(mainwin->summaryview, id, NULL);
1141 void mainwin_accel_changed_cb (GtkAccelGroup *accelgroup, guint keyval, GdkModifierType modifier,
1142 GClosure *closure, GtkMenuItem *item)
1144 GList *closures = gtk_widget_list_accel_closures(GTK_WIDGET(item));
1145 GList *cur;
1146 for (cur = closures; cur; cur = cur->next) {
1147 if (closure == cur->data) {
1148 GtkLabel *label = g_object_get_data(G_OBJECT(item), "accel_label");
1149 gchar *new_accel;
1151 if (keyval == GDK_KEY_Delete) {
1152 const gchar *accel_path;
1153 accel_path = gtk_menu_item_get_accel_path(item);
1154 keyval = 0; modifier = 0;
1155 gtk_accel_map_change_entry (accel_path, keyval, modifier, TRUE);
1157 new_accel = gtk_accelerator_get_label(keyval, modifier);
1158 gtk_label_set_text(label, new_accel);
1159 g_free(new_accel);
1162 g_list_free(closures);
1165 static void mainwindow_colorlabel_menu_create(MainWindow *mainwin, gboolean refresh)
1167 GtkWidget *label_menuitem;
1168 GtkWidget *menu;
1169 GtkWidget *item;
1170 gint i;
1171 gchar *accel_path = NULL;
1173 label_menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/ColorLabel");
1174 g_signal_connect(G_OBJECT(label_menuitem), "activate",
1175 G_CALLBACK(mainwindow_colorlabel_menu_item_activate_item_cb),
1176 mainwin);
1177 gtk_widget_show(label_menuitem);
1179 menu = gtk_menu_new();
1180 gtk_menu_set_accel_group (GTK_MENU (menu),
1181 gtk_ui_manager_get_accel_group(mainwin->ui_manager));
1183 /* create sub items. for the menu item activation callback we pass the
1184 * index of label_colors[] as data parameter. for the None color we
1185 * pass an invalid (high) value. also we attach a data pointer so we
1186 * can always get back the Mainwindow pointer. */
1188 item = gtk_check_menu_item_new_with_label(_("None"));
1189 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1190 g_signal_connect(G_OBJECT(item), "activate",
1191 G_CALLBACK(mainwindow_colorlabel_menu_item_activate_cb),
1192 GUINT_TO_POINTER(0));
1193 g_object_set_data(G_OBJECT(item), "mainwin", mainwin);
1194 gtk_widget_show(item);
1196 accel_path = g_strdup_printf("<ClawsColorLabels>/None");
1197 gtk_menu_item_set_accel_path(GTK_MENU_ITEM(item), accel_path);
1198 g_free(accel_path);
1199 gtk_accel_map_add_entry("<ClawsColorLabels>/None", GDK_KEY_0, GDK_CONTROL_MASK);
1200 item = gtk_menu_item_new();
1201 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1202 gtk_widget_show(item);
1204 /* create pixmap/label menu items */
1205 for (i = 0; i < N_COLOR_LABELS; i++) {
1206 item = colorlabel_create_check_color_menu_item(
1207 i, refresh, MAINWIN_COLORMENU);
1208 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1209 g_signal_connect(G_OBJECT(item), "activate",
1210 G_CALLBACK(mainwindow_colorlabel_menu_item_activate_cb),
1211 GUINT_TO_POINTER(i + 1));
1212 g_object_set_data(G_OBJECT(item), "mainwin",
1213 mainwin);
1214 gtk_widget_show(item);
1215 accel_path = g_strdup_printf("<ClawsColorLabels>/%d", i+1);
1216 gtk_menu_item_set_accel_path(GTK_MENU_ITEM(item), accel_path);
1217 if (i < 9)
1218 gtk_accel_map_add_entry(accel_path, GDK_KEY_1+i, GDK_CONTROL_MASK);
1219 g_free(accel_path);
1220 g_signal_connect (gtk_ui_manager_get_accel_group(mainwin->ui_manager),
1221 "accel-changed", G_CALLBACK (mainwin_accel_changed_cb), item);
1225 gtk_widget_show(menu);
1226 gtk_menu_item_set_submenu(GTK_MENU_ITEM(label_menuitem), menu);
1227 mainwin->colorlabel_menu = menu;
1230 static void mainwindow_tags_menu_item_apply_tags_activate_cb(GtkWidget *widget,
1231 gpointer data)
1233 MainWindow *mainwin;
1235 mainwin = g_object_get_data(G_OBJECT(widget), "mainwin");
1236 cm_return_if_fail(mainwin != NULL);
1238 /* "dont_toggle" state set? */
1239 if (g_object_get_data(G_OBJECT(mainwin->tags_menu),
1240 "dont_toggle"))
1241 return;
1243 tag_apply_open(summary_get_selection(mainwin->summaryview));
1246 static gint mainwin_tag_cmp_list(gconstpointer a, gconstpointer b)
1248 gint id_a = GPOINTER_TO_INT(a);
1249 gint id_b = GPOINTER_TO_INT(b);
1250 const gchar *tag_a = tags_get_tag(id_a);
1251 const gchar *tag_b = tags_get_tag(id_b);
1254 if (tag_a == NULL)
1255 return tag_b == NULL ? 0:1;
1257 if (tag_b == NULL)
1258 return 1;
1260 return g_utf8_collate(tag_a, tag_b);
1263 static void mainwindow_tags_menu_create(MainWindow *mainwin, gboolean refresh)
1265 GtkWidget *label_menuitem;
1266 GtkWidget *menu;
1267 GtkWidget *item;
1268 GSList *cur = tags_get_list();
1269 GSList *orig = NULL;
1270 gboolean existing_tags = FALSE;
1271 gchar *accel_path;
1272 cur = orig = g_slist_sort(cur, mainwin_tag_cmp_list);
1274 label_menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/Tags");
1275 g_signal_connect(G_OBJECT(label_menuitem), "activate",
1276 G_CALLBACK(mainwindow_tags_menu_item_activate_item_cb),
1277 mainwin);
1279 gtk_widget_show(label_menuitem);
1281 menu = gtk_menu_new();
1282 gtk_menu_set_accel_group (GTK_MENU (menu),
1283 gtk_ui_manager_get_accel_group(mainwin->ui_manager));
1285 /* create tags menu items */
1286 for (; cur; cur = cur->next) {
1287 gint id = GPOINTER_TO_INT(cur->data);
1288 const gchar *tag = tags_get_tag(id);
1290 item = gtk_check_menu_item_new_with_label(tag);
1291 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1292 g_signal_connect(G_OBJECT(item), "activate",
1293 G_CALLBACK(mainwindow_tags_menu_item_activate_cb),
1294 GINT_TO_POINTER(id));
1295 g_object_set_data(G_OBJECT(item), "mainwin",
1296 mainwin);
1297 g_object_set_data(G_OBJECT(item), "tag_id",
1298 GINT_TO_POINTER(id));
1299 gtk_widget_show(item);
1300 accel_path = g_strconcat("<ClawsTags>/",tag, NULL);
1301 gtk_menu_item_set_accel_path(GTK_MENU_ITEM(item), accel_path);
1302 g_free(accel_path);
1303 existing_tags = TRUE;
1305 if (existing_tags) {
1306 /* separator */
1307 item = gtk_menu_item_new();
1308 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1309 gtk_widget_show(item);
1312 item = gtk_menu_item_new_with_label(_("Apply tags..."));
1313 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
1314 g_signal_connect(G_OBJECT(item), "activate",
1315 G_CALLBACK(mainwindow_tags_menu_item_apply_tags_activate_cb),
1316 NULL);
1317 g_object_set_data(G_OBJECT(item), "mainwin",
1318 mainwin);
1319 gtk_widget_show(item);
1320 accel_path = g_strdup_printf("<ClawsTags>/ApplyTags");
1321 gtk_menu_item_set_accel_path(GTK_MENU_ITEM(item), accel_path);
1322 g_free(accel_path);
1323 gtk_accel_map_add_entry("<ClawsTags>/ApplyTags", GDK_KEY_T, GDK_CONTROL_MASK|GDK_SHIFT_MASK);
1324 g_slist_free(orig);
1325 gtk_widget_show(menu);
1326 gtk_menu_item_set_submenu(GTK_MENU_ITEM(label_menuitem), menu);
1327 mainwin->tags_menu = menu;
1329 #ifndef GENERIC_UMPC
1330 static gboolean warning_icon_pressed(GtkWidget *widget, GdkEventButton *evt,
1331 MainWindow *mainwindow)
1333 if (evt && evt->button == 1) {
1334 log_window_show_error(mainwindow->logwin);
1335 gtk_widget_hide(mainwindow->warning_btn);
1337 return FALSE;
1340 static gboolean warning_visi_notify(GtkWidget *widget,
1341 GdkEventVisibility *event,
1342 MainWindow *mainwindow)
1344 gdk_window_set_cursor(gtk_widget_get_window(mainwindow->warning_btn), hand_cursor);
1345 return FALSE;
1348 static gboolean warning_leave_notify(GtkWidget *widget,
1349 GdkEventCrossing *event,
1350 MainWindow *mainwindow)
1352 gdk_window_set_cursor(gtk_widget_get_window(mainwindow->warning_btn), NULL);
1353 return FALSE;
1356 static gboolean warning_enter_notify(GtkWidget *widget,
1357 GdkEventCrossing *event,
1358 MainWindow *mainwindow)
1360 gdk_window_set_cursor(gtk_widget_get_window(mainwindow->warning_btn), hand_cursor);
1361 return FALSE;
1363 #endif
1364 void mainwindow_show_error(void)
1366 MainWindow *mainwin = mainwindow_get_mainwindow();
1367 gtk_widget_show(mainwin->warning_btn);
1370 void mainwindow_clear_error(MainWindow *mainwin)
1372 gtk_widget_hide(mainwin->warning_btn);
1375 #define BREAK_ON_MODIFIER_KEY() \
1376 if ((event->state & (GDK_MOD1_MASK|GDK_CONTROL_MASK)) != 0) break
1378 static gboolean mainwindow_key_pressed (GtkWidget *widget, GdkEventKey *event,
1379 gpointer data)
1381 MainWindow *mainwin = (MainWindow*) data;
1383 if (!mainwin || !event)
1384 return FALSE;
1386 if (quicksearch_has_focus(mainwin->summaryview->quicksearch))
1388 lastkey = event->keyval;
1389 return FALSE;
1392 switch (event->keyval) {
1393 case GDK_KEY_Q: /* Quit */
1394 BREAK_ON_MODIFIER_KEY();
1396 if (gtk_window_is_active(GTK_WINDOW(mainwin->window))) {
1397 app_exit_cb(NULL, mainwin);
1399 return FALSE;
1400 case GDK_KEY_space:
1401 BREAK_ON_MODIFIER_KEY();
1402 if (gtk_window_is_active(GTK_WINDOW(mainwin->window))) {
1403 if (mainwin->folderview != NULL && mainwin->summaryview != NULL
1404 && ((!mainwin->summaryview->displayed
1405 && !mainwin->summaryview->selected)
1406 || (mainwin->summaryview->folder_item
1407 && mainwin->summaryview->folder_item->total_msgs == 0))) {
1408 g_signal_stop_emission_by_name(G_OBJECT(widget),
1409 "key_press_event");
1410 folderview_select_next_with_flag(mainwin->folderview, MSG_UNREAD);
1413 break;
1414 default:
1415 break;
1417 return FALSE;
1420 #undef BREAK_ON_MODIFIER_KEY
1422 MainWindow *main_window_create()
1424 MainWindow *mainwin;
1425 GtkWidget *window;
1426 GtkWidget *vbox;
1427 GtkWidget *menubar;
1428 GtkWidget *handlebox;
1429 GtkWidget *vbox_body;
1430 GtkWidget *menuitem;
1431 #ifndef GENERIC_UMPC
1432 GtkWidget *hbox_stat;
1433 GtkWidget *statusbar;
1434 GtkWidget *progressbar;
1435 GtkWidget *statuslabel;
1436 GtkWidget *ac_button;
1437 GtkWidget *ac_label;
1438 GtkWidget *online_pixmap;
1439 GtkWidget *offline_pixmap;
1440 GtkWidget *warning_icon;
1441 GtkWidget *warning_btn;
1442 #endif
1443 GtkWidget *online_switch;
1444 GtkWidget *offline_switch;
1445 FolderView *folderview;
1446 SummaryView *summaryview;
1447 MessageView *messageview;
1448 #if !GTK_CHECK_VERSION(3, 0, 0)
1449 GdkColormap *colormap;
1450 gboolean success[4];
1451 #endif
1452 GdkColor color[4];
1453 GtkWidget *ac_menu;
1454 gint i;
1456 static GdkGeometry geometry;
1458 debug_print("Creating main window...\n");
1459 mainwin = g_new0(MainWindow, 1);
1461 /* main window */
1462 window = GTK_WIDGET(gtkut_window_new(GTK_WINDOW_TOPLEVEL, "mainwindow"));
1463 gtk_window_set_title(GTK_WINDOW(window), PROG_VERSION_FRIENDLY);
1464 gtk_window_set_resizable(GTK_WINDOW(window), TRUE);
1465 #ifdef GENERIC_UMPC
1466 prefs_common.layout_mode = SMALL_LAYOUT;
1467 #endif
1468 if (!geometry.min_height) {
1469 geometry.min_width = 320;
1470 geometry.min_height = 200;
1472 gtk_window_set_geometry_hints(GTK_WINDOW(window), NULL, &geometry,
1473 GDK_HINT_MIN_SIZE);
1475 g_signal_connect(G_OBJECT(window), "delete_event",
1476 G_CALLBACK(main_window_close_cb), mainwin);
1477 MANAGE_WINDOW_SIGNALS_CONNECT(window);
1478 g_signal_connect(G_OBJECT(window), "focus_in_event",
1479 G_CALLBACK(mainwindow_focus_in_event),
1480 mainwin);
1481 g_signal_connect(G_OBJECT(window), "key_press_event",
1482 G_CALLBACK(mainwindow_key_pressed), mainwin);
1484 gtk_widget_realize(window);
1485 gtk_widget_add_events(window, GDK_KEY_PRESS_MASK|GDK_KEY_RELEASE_MASK);
1488 gtkut_widget_set_app_icon(window);
1490 vbox = gtk_vbox_new(FALSE, 0);
1491 gtk_widget_show(vbox);
1492 gtk_container_add(GTK_CONTAINER(window), vbox);
1494 /* menu bar */
1496 mainwin->ui_manager = gtk_ui_manager_new();
1497 mainwin->action_group = cm_menu_create_action_group_full(mainwin->ui_manager,"Menu", mainwin_entries,
1498 G_N_ELEMENTS(mainwin_entries), (gpointer)mainwin);
1499 gtk_action_group_add_toggle_actions(mainwin->action_group, mainwin_toggle_entries,
1500 G_N_ELEMENTS(mainwin_toggle_entries), (gpointer)mainwin);
1501 gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_showhide_radio_entries,
1502 G_N_ELEMENTS(mainwin_showhide_radio_entries), C_AUTO, G_CALLBACK(toggle_toolbar_cb), (gpointer)mainwin);
1503 #ifndef GENERIC_UMPC
1504 gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_layout_radio_entries,
1505 G_N_ELEMENTS(mainwin_layout_radio_entries), C_AUTO, G_CALLBACK(set_layout_cb), (gpointer)mainwin);
1506 #endif
1507 gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_sort_radio_entries,
1508 G_N_ELEMENTS(mainwin_sort_radio_entries), C_AUTO, G_CALLBACK(sort_summary_cb), (gpointer)mainwin);
1509 gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_sorttype_radio_entries,
1510 G_N_ELEMENTS(mainwin_sorttype_radio_entries), C_AUTO, G_CALLBACK(sort_summary_type_cb), (gpointer)mainwin);
1511 gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_radio_enc_entries,
1512 G_N_ELEMENTS(mainwin_radio_enc_entries), C_AUTO, G_CALLBACK(set_charset_cb), (gpointer)mainwin);
1513 gtk_action_group_add_radio_actions(mainwin->action_group, mainwin_radio_dec_entries,
1514 G_N_ELEMENTS(mainwin_radio_dec_entries), C_AUTO, G_CALLBACK(set_decode_cb), (gpointer)mainwin);
1516 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/", "Menu", NULL, GTK_UI_MANAGER_MENUBAR)
1517 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "File", "File", GTK_UI_MANAGER_MENU)
1518 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Edit", "Edit", GTK_UI_MANAGER_MENU)
1519 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "View", "View", GTK_UI_MANAGER_MENU)
1520 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Message", "Message", GTK_UI_MANAGER_MENU)
1521 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Tools", "Tools", GTK_UI_MANAGER_MENU)
1522 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Configuration", "Configuration", GTK_UI_MANAGER_MENU)
1523 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu", "Help", "Help", GTK_UI_MANAGER_MENU)
1525 /* File menu */
1526 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "AddMailbox", "File/AddMailbox", GTK_UI_MANAGER_MENU)
1527 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File/AddMailbox", "MH", "File/AddMailbox/MH", GTK_UI_MANAGER_MENUITEM)
1528 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator1", "File/---", GTK_UI_MANAGER_SEPARATOR)
1529 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "SortMailboxes", "File/SortMailboxes", GTK_UI_MANAGER_MENUITEM)
1530 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator2", "File/---", GTK_UI_MANAGER_SEPARATOR)
1531 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "ImportMbox", "File/ImportMbox", GTK_UI_MANAGER_MENUITEM)
1532 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "ExportMbox", "File/ExportMbox", GTK_UI_MANAGER_MENUITEM)
1533 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "ExportSelMbox", "File/ExportSelMbox", GTK_UI_MANAGER_MENUITEM)
1534 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator3", "File/---", GTK_UI_MANAGER_SEPARATOR)
1535 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "EmptyTrashes", "File/EmptyTrashes", GTK_UI_MANAGER_MENUITEM)
1536 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator4", "File/---", GTK_UI_MANAGER_SEPARATOR)
1537 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "SaveAs", "File/SaveAs", GTK_UI_MANAGER_MENUITEM)
1538 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "SavePartAs", "File/SavePartAs", GTK_UI_MANAGER_MENUITEM)
1539 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator5", "File/---", GTK_UI_MANAGER_SEPARATOR)
1540 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "PageSetup", "File/PageSetup", GTK_UI_MANAGER_MENUITEM)
1541 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Print", "File/Print", GTK_UI_MANAGER_MENUITEM)
1542 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator6", "File/---", GTK_UI_MANAGER_SEPARATOR)
1543 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "OfflineMode", "File/OfflineMode", GTK_UI_MANAGER_MENUITEM)
1544 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "SynchroniseFolders", "File/SynchroniseFolders", GTK_UI_MANAGER_MENUITEM)
1545 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Separator7", "File/---", GTK_UI_MANAGER_SEPARATOR)
1546 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/File", "Exit", "File/Exit", GTK_UI_MANAGER_MENUITEM)
1548 /* Edit menu */
1549 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "Copy", "Edit/Copy", GTK_UI_MANAGER_MENUITEM)
1550 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "SelectAll", "Edit/SelectAll", GTK_UI_MANAGER_MENUITEM)
1551 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "SelectThread", "Edit/SelectThread", GTK_UI_MANAGER_MENUITEM)
1552 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "Separator1", "Edit/---", GTK_UI_MANAGER_SEPARATOR)
1553 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "Find", "Edit/Find", GTK_UI_MANAGER_MENUITEM)
1554 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "SearchFolder", "Edit/SearchFolder", GTK_UI_MANAGER_MENUITEM)
1555 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Edit", "QuickSearch", "Edit/QuickSearch", GTK_UI_MANAGER_MENUITEM)
1557 /* View menu */
1558 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "ShowHide", "View/ShowHide", GTK_UI_MANAGER_MENU)
1559 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "MenuBar", "View/ShowHide/MenuBar", GTK_UI_MANAGER_MENUITEM)
1560 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "Toolbar", "View/ShowHide/Toolbar", GTK_UI_MANAGER_MENU)
1561 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "TextBelowIcon", "View/ShowHide/Toolbar/TextBelowIcon", GTK_UI_MANAGER_MENUITEM)
1562 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "TextBesideIcon", "View/ShowHide/Toolbar/TextBesideIcon", GTK_UI_MANAGER_MENUITEM)
1563 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "IconOnly", "View/ShowHide/Toolbar/IconOnly", GTK_UI_MANAGER_MENUITEM)
1564 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "TextOnly", "View/ShowHide/Toolbar/TextOnly", GTK_UI_MANAGER_MENUITEM)
1565 #ifndef GENERIC_UMPC
1566 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar", "Hide", "View/ShowHide/Toolbar/Hide", GTK_UI_MANAGER_MENUITEM)
1567 #endif
1568 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "MessageView", "View/ShowHide/MessageView", GTK_UI_MANAGER_MENUITEM)
1569 #ifndef GENERIC_UMPC
1570 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "StatusBar", "View/ShowHide/StatusBar", GTK_UI_MANAGER_MENUITEM)
1571 #endif
1572 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/ShowHide", "ColumnHeaders", "View/ShowHide/ColumnHeaders", GTK_UI_MANAGER_MENUITEM)
1573 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "SetColumns", "View/SetColumns", GTK_UI_MANAGER_MENU)
1574 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/SetColumns", "Folderlist", "View/SetColumns/Folderlist", GTK_UI_MANAGER_MENUITEM)
1575 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/SetColumns", "Messagelist", "View/SetColumns/Messagelist", GTK_UI_MANAGER_MENUITEM)
1576 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator1", "View/---", GTK_UI_MANAGER_SEPARATOR)
1578 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "FullScreen", "View/FullScreen", GTK_UI_MANAGER_MENUITEM)
1579 #ifndef GENERIC_UMPC
1580 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Layout", "View/Layout", GTK_UI_MANAGER_MENU)
1581 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "Standard", "View/Layout/Standard", GTK_UI_MANAGER_MENUITEM)
1582 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "ThreeColumns", "View/Layout/ThreeColumns", GTK_UI_MANAGER_MENUITEM)
1583 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "WideMessage", "View/Layout/WideMessage", GTK_UI_MANAGER_MENUITEM)
1584 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "WideMessageList", "View/Layout/WideMessageList", GTK_UI_MANAGER_MENUITEM)
1585 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Layout", "SmallScreen", "View/Layout/SmallScreen", GTK_UI_MANAGER_MENUITEM)
1586 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator2", "View/---", GTK_UI_MANAGER_SEPARATOR)
1587 #endif
1589 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Sort", "View/Sort", GTK_UI_MANAGER_MENU)
1590 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Number", "View/Sort/Number", GTK_UI_MANAGER_MENUITEM)
1591 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Size", "View/Sort/Size", GTK_UI_MANAGER_MENUITEM)
1592 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Date", "View/Sort/Date", GTK_UI_MANAGER_MENUITEM)
1593 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "ThreadDate", "View/Sort/ThreadDate", GTK_UI_MANAGER_MENUITEM)
1594 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "From", "View/Sort/From", GTK_UI_MANAGER_MENUITEM)
1595 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "To", "View/Sort/To", GTK_UI_MANAGER_MENUITEM)
1596 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Subject", "View/Sort/Subject", GTK_UI_MANAGER_MENUITEM)
1597 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Color", "View/Sort/Color", GTK_UI_MANAGER_MENUITEM)
1598 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Tag", "View/Sort/Tag", GTK_UI_MANAGER_MENUITEM)
1599 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Mark", "View/Sort/Mark", GTK_UI_MANAGER_MENUITEM)
1600 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Status", "View/Sort/Status", GTK_UI_MANAGER_MENUITEM)
1601 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Attachment", "View/Sort/Attachment", GTK_UI_MANAGER_MENUITEM)
1602 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Score", "View/Sort/Score", GTK_UI_MANAGER_MENUITEM)
1603 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Locked", "View/Sort/Locked", GTK_UI_MANAGER_MENUITEM)
1604 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "DontSort", "View/Sort/DontSort", GTK_UI_MANAGER_MENUITEM)
1605 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Separator1", "View/Sort/---", GTK_UI_MANAGER_SEPARATOR)
1606 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Ascending", "View/Sort/Ascending", GTK_UI_MANAGER_MENUITEM)
1607 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Descending", "View/Sort/Descending", GTK_UI_MANAGER_MENUITEM)
1608 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "Separator2", "View/Sort/---", GTK_UI_MANAGER_SEPARATOR)
1609 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Sort", "AttractSubj", "View/Sort/AttractSubj", GTK_UI_MANAGER_MENUITEM)
1611 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "ThreadView", "View/ThreadView", GTK_UI_MANAGER_MENUITEM)
1612 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "ExpandThreads", "View/ExpandThreads", GTK_UI_MANAGER_MENUITEM)
1613 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "CollapseThreads", "View/CollapseThreads", GTK_UI_MANAGER_MENUITEM)
1614 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "HideReadThreads", "View/HideReadThreads", GTK_UI_MANAGER_MENUITEM)
1615 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "HideReadMessages", "View/HideReadMessages", GTK_UI_MANAGER_MENUITEM)
1616 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "HideDelMessages", "View/HideDelMessages", GTK_UI_MANAGER_MENUITEM)
1617 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator3", "View/---", GTK_UI_MANAGER_SEPARATOR)
1619 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Goto", "View/Goto", GTK_UI_MANAGER_MENU)
1620 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Prev", "View/Goto/Prev", GTK_UI_MANAGER_MENUITEM)
1621 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Next", "View/Goto/Next", GTK_UI_MANAGER_MENUITEM)
1622 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator1", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1623 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevUnread", "View/Goto/PrevUnread", GTK_UI_MANAGER_MENUITEM)
1624 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextUnread", "View/Goto/NextUnread", GTK_UI_MANAGER_MENUITEM)
1625 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator2", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1626 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevNew", "View/Goto/PrevNew", GTK_UI_MANAGER_MENUITEM)
1627 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextNew", "View/Goto/NextNew", GTK_UI_MANAGER_MENUITEM)
1628 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator3", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1629 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevMarked", "View/Goto/PrevMarked", GTK_UI_MANAGER_MENUITEM)
1630 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextMarked", "View/Goto/NextMarked", GTK_UI_MANAGER_MENUITEM)
1631 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator4", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1632 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevLabeled", "View/Goto/PrevLabeled", GTK_UI_MANAGER_MENUITEM)
1633 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextLabeled", "View/Goto/NextLabeled", GTK_UI_MANAGER_MENUITEM)
1634 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator5", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1635 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevHistory", "View/Goto/PrevHistory", GTK_UI_MANAGER_MENUITEM)
1636 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextHistory", "View/Goto/NextHistory", GTK_UI_MANAGER_MENUITEM)
1637 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator6", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1638 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "ParentMessage", "View/Goto/ParentMessage", GTK_UI_MANAGER_MENUITEM)
1639 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator7", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1640 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextUnreadFolder", "View/Goto/NextUnreadFolder", GTK_UI_MANAGER_MENUITEM)
1641 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Folder", "View/Goto/Folder", GTK_UI_MANAGER_MENUITEM)
1642 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "Separator8", "View/Goto/---", GTK_UI_MANAGER_SEPARATOR)
1643 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "NextPart", "View/Goto/NextPart", GTK_UI_MANAGER_MENUITEM)
1644 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Goto", "PrevPart", "View/Goto/PrevPart", GTK_UI_MANAGER_MENUITEM)
1645 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Scroll", "View/Scroll", GTK_UI_MANAGER_MENU)
1646 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Scroll", "PrevLine", "View/Scroll/PrevLine", GTK_UI_MANAGER_MENUITEM)
1647 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Scroll", "NextLine", "View/Scroll/NextLine", GTK_UI_MANAGER_MENUITEM)
1648 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Scroll", "PrevPage", "View/Scroll/PrevPage", GTK_UI_MANAGER_MENUITEM)
1649 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Scroll", "NextPage", "View/Scroll/NextPage", GTK_UI_MANAGER_MENUITEM)
1650 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator4", "View/---", GTK_UI_MANAGER_SEPARATOR)
1652 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Encoding", "View/Encoding", GTK_UI_MANAGER_MENU)
1653 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_AUTO, "View/Encoding/"CS_AUTO, GTK_UI_MANAGER_MENUITEM)
1654 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Separator1", "View/Encoding/---", GTK_UI_MANAGER_SEPARATOR)
1655 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_US_ASCII, "View/Encoding/"CS_US_ASCII, GTK_UI_MANAGER_MENUITEM)
1656 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_UTF_8, "View/Encoding/"CS_UTF_8, GTK_UI_MANAGER_MENUITEM)
1657 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Separator2", "View/Encoding/---", GTK_UI_MANAGER_SEPARATOR)
1659 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Western", "View/Encoding/Western", GTK_UI_MANAGER_MENU)
1660 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)
1661 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)
1662 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Western", CS_WINDOWS_1252, "View/Encoding/Western/"CS_WINDOWS_1252, GTK_UI_MANAGER_MENUITEM)
1664 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_ISO_8859_2, "View/Encoding/"CS_ISO_8859_2, GTK_UI_MANAGER_MENUITEM)
1666 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Baltic", "View/Encoding/Baltic", GTK_UI_MANAGER_MENU)
1667 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)
1668 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)
1670 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_ISO_8859_7, "View/Encoding/"CS_ISO_8859_7, GTK_UI_MANAGER_MENUITEM)
1672 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Hebrew", "View/Encoding/Hebrew", GTK_UI_MANAGER_MENU)
1673 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)
1674 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Hebrew", CS_WINDOWS_1255, "View/Encoding/Hebrew/"CS_WINDOWS_1255, GTK_UI_MANAGER_MENUITEM)
1676 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Arabic", "View/Encoding/Arabic", GTK_UI_MANAGER_MENU)
1677 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)
1678 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Arabic", CS_WINDOWS_1256, "View/Encoding/Arabic/"CS_WINDOWS_1256, GTK_UI_MANAGER_MENUITEM)
1680 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", CS_ISO_8859_9, "View/Encoding/"CS_ISO_8859_9, GTK_UI_MANAGER_MENUITEM)
1682 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Cyrillic", "View/Encoding/Cyrillic", GTK_UI_MANAGER_MENU)
1683 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)
1684 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_KOI8_R, "View/Encoding/Cyrillic/"CS_KOI8_R, GTK_UI_MANAGER_MENUITEM)
1685 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_MACCYR, "View/Encoding/Cyrillic/"CS_MACCYR, GTK_UI_MANAGER_MENUITEM)
1686 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_KOI8_U, "View/Encoding/Cyrillic/"CS_KOI8_U, GTK_UI_MANAGER_MENUITEM)
1687 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Cyrillic", CS_WINDOWS_1251, "View/Encoding/Cyrillic/"CS_WINDOWS_1251, GTK_UI_MANAGER_MENUITEM)
1689 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Japanese", "View/Encoding/Japanese", GTK_UI_MANAGER_MENU)
1690 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)
1691 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)
1692 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Japanese", CS_EUC_JP, "View/Encoding/Japanese/"CS_EUC_JP, GTK_UI_MANAGER_MENUITEM)
1693 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Japanese", CS_SHIFT_JIS, "View/Encoding/Japanese/"CS_SHIFT_JIS, GTK_UI_MANAGER_MENUITEM)
1695 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Chinese", "View/Encoding/Chinese", GTK_UI_MANAGER_MENU)
1696 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_GB18030, "View/Encoding/Chinese/"CS_GB18030, GTK_UI_MANAGER_MENUITEM)
1697 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_GB2312, "View/Encoding/Chinese/"CS_GB2312, GTK_UI_MANAGER_MENUITEM)
1698 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_GBK, "View/Encoding/Chinese/"CS_GBK, GTK_UI_MANAGER_MENUITEM)
1699 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_BIG5, "View/Encoding/Chinese/"CS_BIG5, GTK_UI_MANAGER_MENUITEM)
1700 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Chinese", CS_EUC_TW, "View/Encoding/Chinese/"CS_EUC_TW, GTK_UI_MANAGER_MENUITEM)
1702 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Korean", "View/Encoding/Korean", GTK_UI_MANAGER_MENU)
1703 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Korean", CS_EUC_KR, "View/Encoding/Korean/"CS_EUC_KR, GTK_UI_MANAGER_MENUITEM)
1704 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)
1706 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding", "Thai", "View/Encoding/Thai", GTK_UI_MANAGER_MENU)
1707 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Thai", CS_TIS_620, "View/Encoding/Thai/"CS_TIS_620, GTK_UI_MANAGER_MENUITEM)
1708 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Encoding/Thai", CS_WINDOWS_874, "View/Encoding/Thai/"CS_WINDOWS_874, GTK_UI_MANAGER_MENUITEM)
1710 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Decode", "View/Decode", GTK_UI_MANAGER_MENU)
1711 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "AutoDetect", "View/Decode/AutoDetect", GTK_UI_MANAGER_MENUITEM)
1712 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "Separator1", "View/Decode/---", GTK_UI_MANAGER_SEPARATOR)
1713 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "8bit", "View/Decode/8bit", GTK_UI_MANAGER_MENUITEM)
1714 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "QP", "View/Decode/QP", GTK_UI_MANAGER_MENUITEM)
1715 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "B64", "View/Decode/B64", GTK_UI_MANAGER_MENUITEM)
1716 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Decode", "Uuencode", "View/Decode/Uuencode", GTK_UI_MANAGER_MENUITEM)
1717 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator5", "View/---", GTK_UI_MANAGER_SEPARATOR)
1719 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "OpenNewWindow", "View/OpenNewWindow", GTK_UI_MANAGER_MENUITEM)
1720 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "MessageSource", "View/MessageSource", GTK_UI_MANAGER_MENUITEM)
1721 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "AllHeaders", "View/AllHeaders", GTK_UI_MANAGER_MENUITEM)
1722 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Quotes", "View/Quotes", GTK_UI_MANAGER_MENU)
1723 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Quotes", "CollapseAll", "View/Quotes/CollapseAll", GTK_UI_MANAGER_MENUITEM)
1724 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Quotes", "Collapse2", "View/Quotes/Collapse2", GTK_UI_MANAGER_MENUITEM)
1725 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Quotes", "Collapse3", "View/Quotes/Collapse3", GTK_UI_MANAGER_MENUITEM)
1726 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Part", "View/Part", GTK_UI_MANAGER_MENU)
1727 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Part", "AsText", "View/Part/AsText", GTK_UI_MANAGER_MENUITEM)
1728 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Part", "Open", "View/Part/Open", GTK_UI_MANAGER_MENUITEM)
1729 #ifndef G_OS_WIN32
1730 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View/Part", "OpenWith", "View/Part/OpenWith", GTK_UI_MANAGER_MENUITEM)
1731 #endif
1732 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "Separator8", "View/---", GTK_UI_MANAGER_SEPARATOR)
1733 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/View", "UpdateSummary", "View/UpdateSummary", GTK_UI_MANAGER_MENUITEM)
1735 /* Message menu */
1736 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Receive", "Message/Receive", GTK_UI_MANAGER_MENU)
1737 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "CurrentAccount", "Message/Receive/CurrentAccount", GTK_UI_MANAGER_MENUITEM)
1738 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "AllAccounts", "Message/Receive/AllAccounts", GTK_UI_MANAGER_MENUITEM)
1739 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "CancelReceiving", "Message/Receive/CancelReceiving", GTK_UI_MANAGER_MENUITEM)
1740 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "Separator1", "Message/Receive/---", GTK_UI_MANAGER_SEPARATOR)
1741 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Receive", "PlaceHolder", "Message/Receive/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1742 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "SendQueue", "Message/SendQueue", GTK_UI_MANAGER_MENUITEM)
1743 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "CancelSending", "Message/CancelSending", GTK_UI_MANAGER_MENUITEM)
1744 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator1", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1746 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ComposeEmail", "Message/ComposeEmail", GTK_UI_MANAGER_MENUITEM)
1747 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ComposeNews", "Message/ComposeNews", GTK_UI_MANAGER_MENUITEM)
1748 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Reply", "Message/Reply", GTK_UI_MANAGER_MENUITEM)
1749 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ReplyTo", "Message/ReplyTo", GTK_UI_MANAGER_MENU)
1750 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/ReplyTo", "All", "Message/ReplyTo/All", GTK_UI_MANAGER_MENUITEM)
1751 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/ReplyTo", "Sender", "Message/ReplyTo/Sender", GTK_UI_MANAGER_MENUITEM)
1752 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/ReplyTo", "List", "Message/ReplyTo/List", GTK_UI_MANAGER_MENUITEM)
1753 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "FollowupReply", "Message/FollowupReply", GTK_UI_MANAGER_MENUITEM)
1754 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator2", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1756 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Forward", "Message/Forward", GTK_UI_MANAGER_MENUITEM)
1757 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ForwardAtt", "Message/ForwardAtt", GTK_UI_MANAGER_MENUITEM)
1758 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Redirect", "Message/Redirect", GTK_UI_MANAGER_MENUITEM)
1759 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "MailingList", "Message/MailingList", GTK_UI_MANAGER_MENU)
1760 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "Post", "Message/MailingList/Post", GTK_UI_MANAGER_MENU)
1761 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "Help", "Message/MailingList/Help", GTK_UI_MANAGER_MENU)
1762 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "Subscribe", "Message/MailingList/Subscribe", GTK_UI_MANAGER_MENU)
1763 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "Unsubscribe", "Message/MailingList/Unsubscribe", GTK_UI_MANAGER_MENU)
1764 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "ViewArchive", "Message/MailingList/ViewArchive", GTK_UI_MANAGER_MENU)
1765 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList", "ContactOwner", "Message/MailingList/ContactOwner", GTK_UI_MANAGER_MENU)
1766 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/Post", "PlaceHolder", "Message/MailingList/Post/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1767 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/Help", "PlaceHolder", "Message/MailingList/Help/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1768 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/Subscribe", "PlaceHolder", "Message/MailingList/Subscribe/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1769 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/Unsubscribe", "PlaceHolder", "Message/MailingList/Unsubscribe/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1770 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/ViewArchive", "PlaceHolder", "Message/MailingList/ViewArchive/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1771 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/MailingList/ContactOwner", "PlaceHolder", "Message/MailingList/ContactOwner/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1772 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator3", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1774 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Move", "Message/Move", GTK_UI_MANAGER_MENUITEM)
1775 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Copy", "Message/Copy", GTK_UI_MANAGER_MENUITEM)
1776 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Trash", "Message/Trash", GTK_UI_MANAGER_MENUITEM)
1777 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Delete", "Message/Delete", GTK_UI_MANAGER_MENUITEM)
1778 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "TrashThread", "Message/TrashThread", GTK_UI_MANAGER_MENUITEM)
1779 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "DeleteThread", "Message/DeleteThread", GTK_UI_MANAGER_MENUITEM)
1780 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "CancelNews", "Message/CancelNews", GTK_UI_MANAGER_MENUITEM)
1781 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator4", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1783 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Mark", "Message/Mark", GTK_UI_MANAGER_MENU)
1784 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Mark", "Message/Mark/Mark", GTK_UI_MANAGER_MENUITEM)
1785 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Unmark", "Message/Mark/Unmark", GTK_UI_MANAGER_MENUITEM)
1786 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator1", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1787 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkUnread", "Message/Mark/MarkUnread", GTK_UI_MANAGER_MENUITEM)
1788 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkRead", "Message/Mark/MarkRead", GTK_UI_MANAGER_MENUITEM)
1789 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator2", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1790 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkAllRead", "Message/Mark/MarkAllRead", GTK_UI_MANAGER_MENUITEM)
1791 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator3", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1792 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "IgnoreThread", "Message/Mark/IgnoreThread", GTK_UI_MANAGER_MENUITEM)
1793 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "UnignoreThread", "Message/Mark/UnignoreThread", GTK_UI_MANAGER_MENUITEM)
1794 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "WatchThread", "Message/Mark/WatchThread", GTK_UI_MANAGER_MENUITEM)
1795 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "UnwatchThread", "Message/Mark/UnwatchThread", GTK_UI_MANAGER_MENUITEM)
1796 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator4", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1797 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkSpam", "Message/Mark/MarkSpam", GTK_UI_MANAGER_MENUITEM)
1798 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "MarkHam", "Message/Mark/MarkHam", GTK_UI_MANAGER_MENUITEM)
1799 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Separator5", "Message/Mark/---", GTK_UI_MANAGER_SEPARATOR)
1800 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Lock", "Message/Mark/Lock", GTK_UI_MANAGER_MENUITEM)
1801 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message/Mark", "Unlock", "Message/Mark/Unlock", GTK_UI_MANAGER_MENUITEM)
1802 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "ColorLabel", "Message/ColorLabel", GTK_UI_MANAGER_MENUITEM)
1803 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Tags", "Message/Tags", GTK_UI_MANAGER_MENUITEM)
1804 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator5", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1806 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Reedit", "Message/Reedit", GTK_UI_MANAGER_MENUITEM)
1807 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "Separator6", "Message/---", GTK_UI_MANAGER_SEPARATOR)
1808 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Message", "CheckSignature", "Message/CheckSignature", GTK_UI_MANAGER_MENUITEM)
1810 /* Tools menu */
1811 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "AddressBook", "Tools/AddressBook", GTK_UI_MANAGER_MENUITEM)
1812 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "AddSenderToAB", "Tools/AddSenderToAB", GTK_UI_MANAGER_MENUITEM)
1813 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "CollectAddresses", "Tools/CollectAddresses", GTK_UI_MANAGER_MENU)
1814 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CollectAddresses", "FromFolder", "Tools/CollectAddresses/FromFolder", GTK_UI_MANAGER_MENUITEM)
1815 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CollectAddresses", "FromSelected", "Tools/CollectAddresses/FromSelected", GTK_UI_MANAGER_MENUITEM)
1816 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator1", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1818 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "FilterFolder", "Tools/FilterFolder", GTK_UI_MANAGER_MENUITEM)
1819 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "FilterSelected", "Tools/FilterSelected", GTK_UI_MANAGER_MENUITEM)
1820 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "RunProcessing", "Tools/RunProcessing", GTK_UI_MANAGER_MENUITEM)
1821 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "CreateFilterRule", "Tools/CreateFilterRule", GTK_UI_MANAGER_MENU)
1822 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateFilterRule", "Automatically", "Tools/CreateFilterRule/Automatically", GTK_UI_MANAGER_MENUITEM)
1823 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateFilterRule", "ByFrom", "Tools/CreateFilterRule/ByFrom", GTK_UI_MANAGER_MENUITEM)
1824 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateFilterRule", "ByTo", "Tools/CreateFilterRule/ByTo", GTK_UI_MANAGER_MENUITEM)
1825 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateFilterRule", "BySubject", "Tools/CreateFilterRule/BySubject", GTK_UI_MANAGER_MENUITEM)
1827 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "CreateProcessingRule", "Tools/CreateProcessingRule", GTK_UI_MANAGER_MENU)
1828 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateProcessingRule", "Automatically", "Tools/CreateProcessingRule/Automatically", GTK_UI_MANAGER_MENUITEM)
1829 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateProcessingRule", "ByFrom", "Tools/CreateProcessingRule/ByFrom", GTK_UI_MANAGER_MENUITEM)
1830 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateProcessingRule", "ByTo", "Tools/CreateProcessingRule/ByTo", GTK_UI_MANAGER_MENUITEM)
1831 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/CreateProcessingRule", "BySubject", "Tools/CreateProcessingRule/BySubject", GTK_UI_MANAGER_MENUITEM)
1832 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator2", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1834 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "ListUrls", "Tools/ListUrls", GTK_UI_MANAGER_MENUITEM)
1835 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator3", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1837 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Actions", "Tools/Actions", GTK_UI_MANAGER_MENU)
1838 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/Actions", "PlaceHolder", "Tools/Actions/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1839 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator4", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1841 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "CheckNewMessages", "Tools/CheckNewMessages", GTK_UI_MANAGER_MENUITEM)
1842 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "DeleteDuplicates", "Tools/DeleteDuplicates", GTK_UI_MANAGER_MENU)
1843 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/DeleteDuplicates", "SelFolder", "Tools/DeleteDuplicates/SelFolder", GTK_UI_MANAGER_MENUITEM)
1844 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools/DeleteDuplicates", "AllFolders", "Tools/DeleteDuplicates/AllFolders", GTK_UI_MANAGER_MENUITEM)
1845 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator5", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1847 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Execute", "Tools/Execute", GTK_UI_MANAGER_MENUITEM)
1848 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Expunge", "Tools/Expunge", GTK_UI_MANAGER_MENUITEM)
1849 #ifdef USE_GNUTLS
1850 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator6", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1851 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "SSLCertificates", "Tools/SSLCertificates", GTK_UI_MANAGER_MENUITEM)
1852 #endif
1853 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator7", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1854 #ifndef G_OS_WIN32
1855 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "FilteringLog", "Tools/FilteringLog", GTK_UI_MANAGER_MENUITEM)
1856 #endif
1857 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "NetworkLog", "Tools/NetworkLog", GTK_UI_MANAGER_MENUITEM)
1858 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator8", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1859 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "ForgetSessionPasswords", "Tools/ForgetSessionPasswords", GTK_UI_MANAGER_MENUITEM)
1860 #ifndef PASSWORD_CRYPTO_OLD
1861 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "ForgetMasterPassphrase", "Tools/ForgetMasterPassphrase", GTK_UI_MANAGER_MENUITEM)
1862 #endif
1863 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Tools", "Separator9", "Tools/---", GTK_UI_MANAGER_SEPARATOR)
1865 /* Configuration menu */
1866 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "ChangeAccount", "Configuration/ChangeAccount", GTK_UI_MANAGER_MENU)
1867 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration/ChangeAccount", "PlaceHolder", "Configuration/ChangeAccount/PlaceHolder", GTK_UI_MANAGER_MENUITEM)
1868 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "AccountPrefs", "Configuration/AccountPrefs", GTK_UI_MANAGER_MENUITEM)
1869 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "CreateAccount", "Configuration/CreateAccount", GTK_UI_MANAGER_MENUITEM)
1870 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "EditAccounts", "Configuration/EditAccounts", GTK_UI_MANAGER_MENUITEM)
1871 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Separator1", "Configuration/---", GTK_UI_MANAGER_SEPARATOR)
1873 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Preferences", "Configuration/Preferences", GTK_UI_MANAGER_MENUITEM)
1874 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "PreProcessing", "Configuration/PreProcessing", GTK_UI_MANAGER_MENUITEM)
1875 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "PostProcessing", "Configuration/PostProcessing", GTK_UI_MANAGER_MENUITEM)
1876 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Filtering", "Configuration/Filtering", GTK_UI_MANAGER_MENUITEM)
1877 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Templates", "Configuration/Templates", GTK_UI_MANAGER_MENUITEM)
1878 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Actions", "Configuration/Actions", GTK_UI_MANAGER_MENUITEM)
1879 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Tags", "Configuration/Tags", GTK_UI_MANAGER_MENUITEM)
1881 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Separator2", "Configuration/---", GTK_UI_MANAGER_SEPARATOR)
1882 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Configuration", "Plugins", "Configuration/Plugins", GTK_UI_MANAGER_MENUITEM)
1884 /* Help menu */
1885 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "Manual", "Help/Manual", GTK_UI_MANAGER_MENUITEM)
1886 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "FAQ", "Help/FAQ", GTK_UI_MANAGER_MENUITEM)
1887 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "IconLegend", "Help/IconLegend", GTK_UI_MANAGER_MENUITEM)
1888 #ifdef G_OS_WIN32
1889 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "Separator1", "Help/---", GTK_UI_MANAGER_SEPARATOR)
1890 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "SetDefault", "Help/SetDefault", GTK_UI_MANAGER_MENUITEM)
1891 #endif
1892 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "Separator2", "Help/---", GTK_UI_MANAGER_SEPARATOR)
1893 MENUITEM_ADDUI_MANAGER(mainwin->ui_manager, "/Menu/Help", "About", "Help/About", GTK_UI_MANAGER_MENUITEM)
1896 menubar = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu");
1897 if (prefs_common.mainwin_menubar)
1898 gtk_widget_show_all(menubar);
1899 else
1900 gtk_widget_hide(menubar);
1901 gtk_window_add_accel_group(GTK_WINDOW(window), gtk_ui_manager_get_accel_group(mainwin->ui_manager));
1903 gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, TRUE, 0);
1905 if (prefs_common.toolbar_detachable) {
1906 handlebox = gtk_handle_box_new();
1907 gtk_widget_show(handlebox);
1908 gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
1909 g_signal_connect(G_OBJECT(handlebox), "child_attached",
1910 G_CALLBACK(toolbar_child_attached), mainwin);
1911 g_signal_connect(G_OBJECT(handlebox), "child_detached",
1912 G_CALLBACK(toolbar_child_detached), mainwin);
1913 } else {
1914 handlebox = gtk_hbox_new(FALSE, 0);
1915 gtk_widget_show(handlebox);
1916 gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
1918 /* link window to mainwin->window to avoid gdk warnings */
1919 mainwin->window = window;
1920 mainwin_list = g_list_append(mainwin_list, mainwin);
1922 mainwin->toolbar = toolbar_create(TOOLBAR_MAIN,
1923 handlebox,
1924 (gpointer)mainwin);
1925 toolbar_set_learn_button
1926 (mainwin->toolbar,
1927 LEARN_SPAM);
1929 /* vbox that contains body */
1930 vbox_body = gtk_vbox_new(FALSE, BORDER_WIDTH);
1931 gtk_widget_show(vbox_body);
1932 gtk_container_set_border_width(GTK_CONTAINER(vbox_body), BORDER_WIDTH);
1933 gtk_box_pack_start(GTK_BOX(vbox), vbox_body, TRUE, TRUE, 0);
1935 #ifndef GENERIC_UMPC
1936 hbox_stat = gtk_hbox_new(FALSE, 2);
1937 gtk_box_pack_end(GTK_BOX(vbox_body), hbox_stat, FALSE, FALSE, 0);
1939 warning_icon = gtk_image_new_from_stock
1940 (GTK_STOCK_DIALOG_WARNING, GTK_ICON_SIZE_SMALL_TOOLBAR);
1941 warning_btn = gtk_event_box_new();
1942 gtk_event_box_set_visible_window(GTK_EVENT_BOX(warning_btn), FALSE);
1944 mainwin->warning_btn = warning_btn;
1946 g_signal_connect(G_OBJECT(warning_btn), "button-press-event",
1947 G_CALLBACK(warning_icon_pressed),
1948 (gpointer) mainwin);
1949 g_signal_connect(G_OBJECT(warning_btn), "motion-notify-event",
1950 G_CALLBACK(warning_visi_notify), mainwin);
1951 g_signal_connect(G_OBJECT(warning_btn), "leave-notify-event",
1952 G_CALLBACK(warning_leave_notify), mainwin);
1953 g_signal_connect(G_OBJECT(warning_btn), "enter-notify-event",
1954 G_CALLBACK(warning_enter_notify), mainwin);
1956 gtk_container_add (GTK_CONTAINER(warning_btn), warning_icon);
1958 CLAWS_SET_TIP(warning_btn,
1959 _("Some error(s) happened. Click here to view log."));
1960 gtk_box_pack_start(GTK_BOX(hbox_stat), warning_btn, FALSE, FALSE, 0);
1962 statusbar = statusbar_create();
1963 gtk_box_pack_start(GTK_BOX(hbox_stat), statusbar, TRUE, TRUE, 0);
1965 progressbar = gtk_progress_bar_new();
1966 gtk_widget_set_size_request(progressbar, 120, 1);
1967 gtk_box_pack_start(GTK_BOX(hbox_stat), progressbar, FALSE, FALSE, 0);
1969 online_pixmap = stock_pixmap_widget(STOCK_PIXMAP_ONLINE);
1970 offline_pixmap = stock_pixmap_widget(STOCK_PIXMAP_OFFLINE);
1971 online_switch = gtk_button_new ();
1972 gtkut_widget_set_can_focus(online_switch, FALSE);
1973 CLAWS_SET_TIP(online_switch,
1974 _("You are online. Click the icon to go offline"));
1975 offline_switch = gtk_button_new ();
1976 CLAWS_SET_TIP(offline_switch,
1977 _("You are offline. Click the icon to go online"));
1978 gtk_container_add (GTK_CONTAINER(online_switch), online_pixmap);
1979 gtk_button_set_relief (GTK_BUTTON(online_switch), GTK_RELIEF_NONE);
1980 g_signal_connect (G_OBJECT(online_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
1981 gtk_box_pack_start (GTK_BOX(hbox_stat), online_switch, FALSE, FALSE, 0);
1982 gtk_container_add (GTK_CONTAINER(offline_switch), offline_pixmap);
1983 gtk_button_set_relief (GTK_BUTTON(offline_switch), GTK_RELIEF_NONE);
1984 g_signal_connect (G_OBJECT(offline_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
1985 gtk_box_pack_start (GTK_BOX(hbox_stat), offline_switch, FALSE, FALSE, 0);
1987 statuslabel = gtk_label_new("");
1988 gtk_box_pack_start(GTK_BOX(hbox_stat), statuslabel, FALSE, FALSE, 0);
1990 ac_button = gtk_button_new();
1991 CLAWS_SET_TIP(ac_button, _("Select account"));
1992 gtkut_widget_set_can_focus(ac_button, FALSE);
1993 gtk_widget_set_size_request(ac_button, -1, 0);
1994 gtk_box_pack_end(GTK_BOX(hbox_stat), ac_button, FALSE, FALSE, 0);
1995 g_signal_connect(G_OBJECT(ac_button), "button_press_event",
1996 G_CALLBACK(ac_label_button_pressed), mainwin);
1998 ac_label = gtk_label_new("");
1999 gtk_container_add(GTK_CONTAINER(ac_button), ac_label);
2001 gtk_widget_show_all(hbox_stat);
2003 gtk_widget_hide(offline_switch);
2004 gtk_widget_hide(progressbar);
2005 gtk_widget_hide(warning_btn);
2006 #else
2007 online_switch = gtk_button_new ();
2008 offline_switch = gtk_button_new ();
2009 g_signal_connect (G_OBJECT(online_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
2010 g_signal_connect (G_OBJECT(offline_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
2011 #endif
2012 /* create views */
2013 mainwin->folderview = folderview = folderview_create();
2014 mainwin->summaryview = summaryview = summary_create(mainwin);
2015 mainwin->messageview = messageview = messageview_create(mainwin);
2017 /* init log instances data before creating log views */
2018 set_log_title(LOG_PROTOCOL, _("Network log"));
2019 set_log_prefs(LOG_PROTOCOL,
2020 &prefs_common.logwin_width,
2021 &prefs_common.logwin_height);
2022 set_log_title(LOG_DEBUG_FILTERING, _("Filtering/Processing debug log"));
2023 set_log_prefs(LOG_DEBUG_FILTERING,
2024 &prefs_common.filtering_debugwin_width,
2025 &prefs_common.filtering_debugwin_height);
2027 /* setup log windows */
2028 mainwin->logwin = log_window_create(LOG_PROTOCOL);
2029 log_window_init(mainwin->logwin);
2031 mainwin->filtering_debugwin = log_window_create(LOG_DEBUG_FILTERING);
2032 log_window_set_clipping(mainwin->logwin,
2033 prefs_common.cliplog,
2034 prefs_common.loglength);
2036 log_window_init(mainwin->filtering_debugwin);
2037 log_window_set_clipping(mainwin->filtering_debugwin,
2038 prefs_common.filtering_debug_cliplog,
2039 prefs_common.filtering_debug_loglength);
2040 if (prefs_common.enable_filtering_debug)
2041 log_message(LOG_DEBUG_FILTERING, _("filtering log enabled\n"));
2042 else
2043 log_message(LOG_DEBUG_FILTERING, _("filtering log disabled\n"));
2045 folderview->mainwin = mainwin;
2046 folderview->summaryview = summaryview;
2048 summaryview->mainwin = mainwin;
2049 summaryview->folderview = folderview;
2050 summaryview->messageview = messageview;
2051 summaryview->window = window;
2053 mainwin->vbox = vbox;
2054 mainwin->menubar = menubar;
2055 mainwin->handlebox = handlebox;
2056 mainwin->vbox_body = vbox_body;
2057 mainwin->online_switch = online_switch;
2058 mainwin->offline_switch = offline_switch;
2059 #ifndef GENERIC_UMPC
2060 messageview->statusbar = statusbar;
2061 mainwin->statusbar = statusbar;
2062 mainwin->hbox_stat = hbox_stat;
2063 mainwin->progressbar = progressbar;
2064 mainwin->statuslabel = statuslabel;
2065 mainwin->online_pixmap = online_pixmap;
2066 mainwin->offline_pixmap = offline_pixmap;
2067 mainwin->ac_button = ac_button;
2068 mainwin->ac_label = ac_label;
2069 /* set context IDs for status bar */
2070 mainwin->mainwin_cid = gtk_statusbar_get_context_id
2071 (GTK_STATUSBAR(statusbar), "Main Window");
2072 mainwin->folderview_cid = gtk_statusbar_get_context_id
2073 (GTK_STATUSBAR(statusbar), "Folder View");
2074 mainwin->summaryview_cid = gtk_statusbar_get_context_id
2075 (GTK_STATUSBAR(statusbar), "Summary View");
2076 mainwin->messageview_cid = gtk_statusbar_get_context_id
2077 (GTK_STATUSBAR(statusbar), "Message View");
2078 messageview->statusbar_cid = mainwin->messageview_cid;
2080 #else
2081 messageview->statusbar = NULL;
2082 mainwin->statusbar = NULL;
2083 mainwin->hbox_stat = NULL;
2084 /* mainwin->progressbar is set in toolbar.c */
2085 mainwin->statuslabel = NULL;
2086 mainwin->online_pixmap = NULL;
2087 mainwin->offline_pixmap = NULL;
2088 mainwin->ac_button = NULL;
2089 mainwin->ac_label = NULL;
2090 #endif
2092 /* allocate colors for summary view and folder view */
2093 summaryview->color_marked.red = summaryview->color_marked.green = 0;
2094 summaryview->color_marked.blue = (guint16)65535;
2096 summaryview->color_dim.red = summaryview->color_dim.green =
2097 summaryview->color_dim.blue = COLOR_DIM;
2099 gtkut_convert_int_to_gdk_color(prefs_common.color_new,
2100 &folderview->color_new);
2102 gtkut_convert_int_to_gdk_color(prefs_common.tgt_folder_col,
2103 &folderview->color_op);
2105 summaryview->color_important.red = 0;
2106 summaryview->color_important.green = 0;
2107 summaryview->color_important.blue = (guint16)65535;
2109 color[0] = summaryview->color_marked;
2110 color[1] = summaryview->color_dim;
2111 color[2] = folderview->color_new;
2112 color[3] = folderview->color_op;
2114 #if !GTK_CHECK_VERSION(3, 0, 0)
2115 colormap = gdk_drawable_get_colormap(gtk_widget_get_window(window));
2116 gdk_colormap_alloc_colors(colormap, color, 4, FALSE, TRUE, success);
2117 for (i = 0; i < 4; i++) {
2118 if (success[i] == FALSE)
2119 g_warning("MainWindow: color allocation %d failed", i);
2121 #endif
2123 debug_print("done.\n");
2125 messageview->visible = prefs_common.msgview_visible;
2127 main_window_set_widgets(mainwin, prefs_common.layout_mode);
2129 g_signal_connect(G_OBJECT(window), "size_allocate",
2130 G_CALLBACK(main_window_size_allocate_cb),
2131 mainwin);
2133 /* set menu items */
2134 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Encoding/"CS_AUTO, TRUE);
2136 menuitem = NULL;
2137 switch (prefs_common.toolbar_style) {
2138 case TOOLBAR_NONE:
2139 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/Hide");
2140 break;
2141 case TOOLBAR_ICON:
2142 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/IconOnly");
2143 break;
2144 case TOOLBAR_TEXT:
2145 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/TextOnly");
2146 break;
2147 case TOOLBAR_BOTH:
2148 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/TextBelowIcon");
2149 break;
2150 case TOOLBAR_BOTH_HORIZ:
2151 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/Toolbar/TextBesideIcon");
2153 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), TRUE);
2155 toolbar_set_style(mainwin->toolbar->toolbar,
2156 mainwin->handlebox,
2157 prefs_common.toolbar_style);
2158 #ifndef GENERIC_UMPC
2159 gtk_widget_hide(mainwin->hbox_stat);
2160 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/StatusBar");
2161 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
2162 prefs_common.show_statusbar);
2163 #endif
2164 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/ShowHide/ColumnHeaders");
2165 gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
2166 prefs_common.show_col_headers);
2167 /* set account selection menu */
2168 ac_menu = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Configuration/ChangeAccount");
2169 mainwin->ac_menu = ac_menu;
2171 toolbar_main_set_sensitive(mainwin);
2173 /* create actions menu */
2174 main_window_update_actions_menu(mainwin);
2176 main_create_mailing_list_menu (mainwin, NULL);
2178 /* attach accel groups to main window */
2179 #define ADD_MENU_ACCEL_GROUP_TO_WINDOW(menu,win) \
2180 gtk_window_add_accel_group \
2181 (GTK_WINDOW(win), \
2182 gtk_ui_manager_get_accel_group(gtkut_ui_manager())); \
2183 g_signal_connect(G_OBJECT(gtk_ui_manager_get_accel_group(gtkut_ui_manager())), \
2184 "accel_activate", \
2185 G_CALLBACK(main_window_accel_activate), mainwin);
2187 ADD_MENU_ACCEL_GROUP_TO_WINDOW(summaryview->popupmenu, mainwin->window);
2189 g_signal_connect(G_OBJECT(window), "window_state_event",
2190 G_CALLBACK(mainwindow_state_event_cb), mainwin);
2191 g_signal_connect(G_OBJECT(window), "visibility_notify_event",
2192 G_CALLBACK(mainwindow_visibility_event_cb), mainwin);
2193 gtk_widget_add_events(GTK_WIDGET(window), GDK_VISIBILITY_NOTIFY_MASK);
2195 if (prefs_common.layout_mode == VERTICAL_LAYOUT ||
2196 prefs_common.layout_mode == SMALL_LAYOUT) {
2197 summary_relayout(mainwin->summaryview);
2199 summary_update_unread(mainwin->summaryview, NULL);
2201 /* initialize views */
2202 folderview_init(folderview);
2203 summary_init(summaryview);
2204 messageview_init(messageview);
2205 #ifdef USE_GNUTLS
2206 sslcertwindow_register_hook();
2207 #endif
2208 mainwin->lock_count = 0;
2209 mainwin->menu_lock_count = 0;
2210 mainwin->cursor_count = 0;
2212 mainwin->progressindicator_hook =
2213 hooks_register_hook(PROGRESSINDICATOR_HOOKLIST, mainwindow_progressindicator_hook, mainwin);
2215 if (!watch_cursor)
2216 watch_cursor = gdk_cursor_new(GDK_WATCH);
2217 if (!hand_cursor)
2218 hand_cursor = gdk_cursor_new(GDK_HAND2);
2220 /* init work_offline */
2221 if (prefs_common.work_offline)
2222 online_switch_clicked (GTK_BUTTON(online_switch), mainwin);
2224 mainwindow_colorlabel_menu_create(mainwin, FALSE);
2225 mainwindow_tags_menu_create(mainwin, FALSE);
2227 if (prefs_common.mainwin_fullscreen) {
2228 cm_toggle_menu_set_active_full(mainwin->ui_manager,
2229 "Menu/View/FullScreen",
2230 TRUE);
2232 if (prefs_common.mainwin_menubar)
2233 cm_toggle_menu_set_active_full(mainwin->ui_manager,"Menu/View/ShowHide/MenuBar", TRUE);
2235 return mainwin;
2238 void main_window_update_actions_menu(MainWindow *mainwin)
2240 action_update_mainwin_menu(mainwin->ui_manager, "/Menu/Tools/Actions", mainwin);
2243 void main_window_cursor_wait(MainWindow *mainwin)
2246 if (mainwin->cursor_count == 0) {
2247 gdk_window_set_cursor(gtk_widget_get_window(mainwin->window), watch_cursor);
2248 textview_cursor_wait(mainwin->messageview->mimeview->textview);
2251 mainwin->cursor_count++;
2253 gdk_flush();
2256 void main_window_cursor_normal(MainWindow *mainwin)
2258 if (mainwin->cursor_count)
2259 mainwin->cursor_count--;
2261 if (mainwin->cursor_count == 0) {
2262 gdk_window_set_cursor(gtk_widget_get_window(mainwin->window), NULL);
2263 textview_cursor_normal(mainwin->messageview->mimeview->textview);
2265 gdk_flush();
2268 /* lock / unlock the user-interface */
2269 void main_window_lock(MainWindow *mainwin)
2271 if (mainwin->lock_count == 0 && mainwin->ac_button)
2272 gtk_widget_set_sensitive(mainwin->ac_button, FALSE);
2274 mainwin->lock_count++;
2276 main_window_set_menu_sensitive(mainwin);
2277 toolbar_main_set_sensitive(mainwin);
2280 void main_window_unlock(MainWindow *mainwin)
2282 if (mainwin->lock_count)
2283 mainwin->lock_count--;
2285 main_window_set_menu_sensitive(mainwin);
2286 toolbar_main_set_sensitive(mainwin);
2288 if (mainwin->lock_count == 0 && mainwin->ac_button)
2289 gtk_widget_set_sensitive(mainwin->ac_button, TRUE);
2292 static void main_window_menu_callback_block(MainWindow *mainwin)
2294 mainwin->menu_lock_count++;
2297 static void main_window_menu_callback_unblock(MainWindow *mainwin)
2299 if (mainwin->menu_lock_count)
2300 mainwin->menu_lock_count--;
2303 static guint prefs_tag = 0;
2305 void main_window_reflect_prefs_all(void)
2307 main_window_reflect_prefs_all_real(FALSE);
2310 static gboolean reflect_prefs_timeout_cb(gpointer data)
2312 gboolean pixmap_theme_changed = GPOINTER_TO_INT(data);
2313 GList *cur;
2314 MainWindow *mainwin;
2315 #ifndef GENERIC_UMPC
2316 GtkWidget *pixmap;
2317 #endif
2318 for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2319 mainwin = (MainWindow *)cur->data;
2321 main_window_show_cur_account(mainwin);
2322 main_window_set_menu_sensitive(mainwin);
2323 toolbar_main_set_sensitive(mainwin);
2325 /* pixmap themes */
2326 if (pixmap_theme_changed) {
2327 toolbar_update(TOOLBAR_MAIN, mainwin);
2328 messageview_reflect_prefs_pixmap_theme();
2329 compose_reflect_prefs_pixmap_theme();
2330 folderview_reinit_fonts(mainwin->folderview);
2331 summary_reflect_prefs_pixmap_theme(mainwin->summaryview);
2332 foldersel_reflect_prefs_pixmap_theme();
2333 #ifndef USE_ALT_ADDRBOOK
2334 addressbook_reflect_prefs_pixmap_theme();
2335 #endif
2336 #ifndef GENERIC_UMPC
2337 pixmap = stock_pixmap_widget(STOCK_PIXMAP_ONLINE);
2338 gtk_container_remove(GTK_CONTAINER(mainwin->online_switch),
2339 mainwin->online_pixmap);
2340 gtk_container_add (GTK_CONTAINER(mainwin->online_switch), pixmap);
2341 gtk_widget_show(pixmap);
2342 mainwin->online_pixmap = pixmap;
2343 pixmap = stock_pixmap_widget(STOCK_PIXMAP_OFFLINE);
2344 gtk_container_remove(GTK_CONTAINER(mainwin->offline_switch),
2345 mainwin->offline_pixmap);
2346 gtk_container_add (GTK_CONTAINER(mainwin->offline_switch), pixmap);
2347 gtk_widget_show(pixmap);
2348 mainwin->offline_pixmap = pixmap;
2349 #endif
2350 hooks_invoke(THEME_CHANGED_HOOKLIST, NULL);
2353 headerview_set_font(mainwin->messageview->headerview);
2354 headerview_set_visibility(mainwin->messageview->headerview,
2355 prefs_common.display_header_pane);
2356 textview_reflect_prefs(mainwin->messageview->mimeview->textview);
2357 folderview_reflect_prefs();
2358 summary_reflect_prefs();
2359 #ifndef GENERIC_UMPC
2360 summary_redisplay_msg(mainwin->summaryview);
2361 #endif
2362 if (prefs_common.layout_mode == SMALL_LAYOUT) {
2363 if (mainwin->in_folder) {
2364 mainwindow_enter_folder(mainwin);
2365 } else {
2366 mainwindow_exit_folder(mainwin);
2370 prefs_tag = 0;
2371 return FALSE;
2374 void main_window_reflect_prefs_all_now(void)
2376 reflect_prefs_timeout_cb(GINT_TO_POINTER(FALSE));
2379 void main_window_reflect_prefs_custom_colors(MainWindow *mainwin)
2381 GtkMenuShell *menu;
2382 GList *children, *cur;
2384 /* re-create colorlabel submenu */
2385 menu = GTK_MENU_SHELL(mainwin->colorlabel_menu);
2386 cm_return_if_fail(menu != NULL);
2388 /* clear items. get item pointers. */
2389 children = gtk_container_get_children(GTK_CONTAINER(menu));
2390 for (cur = children; cur != NULL && cur->data != NULL; cur = cur->next) {
2391 g_signal_handlers_disconnect_matched
2392 (gtk_ui_manager_get_accel_group(mainwin->ui_manager),
2393 G_SIGNAL_MATCH_DATA|G_SIGNAL_MATCH_FUNC,
2394 0, 0, NULL, mainwin_accel_changed_cb, cur->data);
2395 gtk_menu_item_set_submenu(GTK_MENU_ITEM(cur->data), NULL);
2397 g_list_free(children);
2398 mainwindow_colorlabel_menu_create(mainwin, TRUE);
2399 summary_reflect_prefs_custom_colors(mainwin->summaryview);
2400 folderview_reinit_fonts(mainwin->folderview);
2403 static gint tags_tag = 0;
2404 static gboolean main_window_reflect_tags_changes_real(gpointer data)
2406 GtkMenuShell *menu;
2407 GList *children, *cur;
2408 MainWindow *mainwin = (MainWindow *)data;
2410 if (summary_is_locked(mainwin->summaryview)) {
2411 return TRUE;
2413 /* re-create tags submenu */
2414 menu = GTK_MENU_SHELL(mainwin->tags_menu);
2415 cm_return_val_if_fail(menu != NULL, FALSE);
2417 /* clear items. get item pointers. */
2418 children = gtk_container_get_children(GTK_CONTAINER(menu));
2419 for (cur = children; cur != NULL && cur->data != NULL; cur = cur->next) {
2420 gtk_menu_item_set_submenu(GTK_MENU_ITEM(cur->data), NULL);
2422 g_list_free(children);
2423 mainwindow_tags_menu_create(mainwin, TRUE);
2424 summary_reflect_tags_changes(mainwin->summaryview);
2426 tags_tag = 0;
2427 return FALSE;
2430 void main_window_reflect_tags_changes(MainWindow *mainwin)
2432 if (tags_tag == 0) {
2433 tags_tag = g_timeout_add(100, main_window_reflect_tags_changes_real,
2434 mainwin);
2438 void main_window_reflect_prefs_all_real(gboolean pixmap_theme_changed)
2440 if (prefs_tag == 0) {
2441 prefs_tag = g_timeout_add(100, reflect_prefs_timeout_cb,
2442 GINT_TO_POINTER(pixmap_theme_changed));
2446 void main_window_set_summary_column(void)
2448 GList *cur;
2449 MainWindow *mainwin;
2451 for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2452 mainwin = (MainWindow *)cur->data;
2453 summary_set_column_order(mainwin->summaryview);
2457 void main_window_set_folder_column(void)
2459 GList *cur;
2460 MainWindow *mainwin;
2462 for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2463 mainwin = (MainWindow *)cur->data;
2464 folderview_set_column_order(mainwin->folderview);
2468 static void main_window_set_account_selector_menu(MainWindow *mainwin,
2469 GList *account_list)
2471 GList *cur_ac;
2472 GtkWidget *menuitem;
2473 PrefsAccount *ac_prefs;
2474 GtkWidget *menu;
2475 gchar *accel_path;
2477 menu = gtk_menu_new();
2478 gtk_menu_set_accel_group (GTK_MENU (menu),
2479 gtk_ui_manager_get_accel_group(mainwin->ui_manager));
2481 for (cur_ac = account_list; cur_ac != NULL; cur_ac = cur_ac->next) {
2482 ac_prefs = (PrefsAccount *)cur_ac->data;
2484 menuitem = gtk_menu_item_new_with_label
2485 (ac_prefs->account_name
2486 ? ac_prefs->account_name : _("Untitled"));
2487 gtk_widget_show(menuitem);
2488 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
2489 g_signal_connect(G_OBJECT(menuitem), "activate",
2490 G_CALLBACK(account_selector_menu_cb),
2491 ac_prefs);
2492 accel_path = g_strconcat("<Actions>/Menu/Configuration/ChangeAccount/",(ac_prefs->account_name
2493 ? ac_prefs->account_name : _("Untitled")), NULL );
2494 gtk_menu_item_set_accel_path(GTK_MENU_ITEM(menuitem), accel_path);
2495 g_free(accel_path);
2497 gtk_menu_item_set_submenu(GTK_MENU_ITEM(mainwin->ac_menu), menu);
2500 static void main_window_set_account_receive_menu(MainWindow *mainwin,
2501 GList *account_list)
2503 GList *children, *child;
2504 GtkWidget *menu;
2505 GtkWidget *menuitem;
2506 PrefsAccount *ac_prefs;
2508 menu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(
2509 gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/Receive")));
2511 /* search for separator */
2512 children = gtk_container_get_children(GTK_CONTAINER(menu));
2513 for (child = children; child != NULL; child = child->next) {
2514 if (child->data == gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/Receive/Separator1")) {
2515 child = child->next;
2516 break;
2520 /* destroy all previous menu item */
2521 while (child != NULL) {
2522 gtk_widget_destroy(GTK_WIDGET(child->data));
2523 child = child->next;
2526 g_list_free(children);
2528 for (child = account_list; child != NULL; child = child->next) {
2529 ac_prefs = (PrefsAccount *)child->data;
2531 if (ac_prefs->protocol == A_NONE)
2532 continue;
2534 menuitem = gtk_menu_item_new_with_label
2535 (ac_prefs->account_name ? ac_prefs->account_name
2536 : _("Untitled"));
2537 gtk_widget_show(menuitem);
2538 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
2539 g_signal_connect(G_OBJECT(menuitem), "activate",
2540 G_CALLBACK(account_receive_menu_cb),
2541 ac_prefs);
2545 static void main_window_set_toolbar_combo_receive_menu(MainWindow *mainwin,
2546 GList *account_list)
2548 GList *cur_ac;
2549 GtkWidget *menuitem;
2550 PrefsAccount *ac_prefs;
2551 GtkWidget *menu = NULL;
2553 if (mainwin->toolbar->getall_btn == NULL) /* button doesn't exist */
2554 return;
2556 menu = gtk_menu_tool_button_get_menu(GTK_MENU_TOOL_BUTTON(mainwin->toolbar->getall_btn));
2557 if (menu)
2558 gtk_widget_destroy(menu);
2559 menu = gtk_menu_new();
2561 for (cur_ac = account_list; cur_ac != NULL; cur_ac = cur_ac->next) {
2562 ac_prefs = (PrefsAccount *)cur_ac->data;
2564 if (ac_prefs->protocol == A_NONE)
2565 continue;
2567 menuitem = gtk_menu_item_new_with_label
2568 (ac_prefs->account_name
2569 ? ac_prefs->account_name : _("Untitled"));
2570 gtk_widget_show(menuitem);
2571 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
2572 g_signal_connect(G_OBJECT(menuitem), "activate",
2573 G_CALLBACK(account_receive_menu_cb),
2574 ac_prefs);
2576 gtk_menu_tool_button_set_menu(GTK_MENU_TOOL_BUTTON(mainwin->toolbar->getall_btn), menu);
2579 static void main_window_set_toolbar_combo_compose_menu(MainWindow *mainwin,
2580 GList *account_list)
2582 #ifndef GENERIC_UMPC
2583 GList *cur_ac;
2584 GtkWidget *menuitem;
2585 PrefsAccount *ac_prefs;
2586 GtkWidget *menu = NULL;
2588 if (mainwin->toolbar->compose_mail_btn == NULL) /* button doesn't exist */
2589 return;
2591 menu = gtk_menu_tool_button_get_menu(GTK_MENU_TOOL_BUTTON(mainwin->toolbar->compose_mail_btn));
2592 if (menu)
2593 gtk_widget_destroy(menu);
2594 menu = gtk_menu_new();
2596 for (cur_ac = account_list; cur_ac != NULL; cur_ac = cur_ac->next) {
2597 ac_prefs = (PrefsAccount *)cur_ac->data;
2599 menuitem = gtk_menu_item_new_with_label
2600 (ac_prefs->account_name
2601 ? ac_prefs->account_name : _("Untitled"));
2602 gtk_widget_show(menuitem);
2603 gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem);
2604 g_signal_connect(G_OBJECT(menuitem), "activate",
2605 G_CALLBACK(account_compose_menu_cb),
2606 ac_prefs);
2608 gtk_menu_tool_button_set_menu(GTK_MENU_TOOL_BUTTON(mainwin->toolbar->compose_mail_btn), menu);
2609 #endif
2612 void main_window_set_account_menu(GList *account_list)
2614 GList *cur;
2615 MainWindow *mainwin;
2617 for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2618 mainwin = (MainWindow *)cur->data;
2619 main_window_set_account_selector_menu(mainwin, account_list);
2620 main_window_set_account_receive_menu(mainwin, account_list);
2621 main_window_set_toolbar_combo_receive_menu(mainwin, account_list);
2622 main_window_set_toolbar_combo_compose_menu(mainwin, account_list);
2624 hooks_invoke(ACCOUNT_LIST_CHANGED_HOOKLIST, NULL);
2627 void main_window_set_account_menu_only_toolbar(GList *account_list)
2629 GList *cur;
2630 MainWindow *mainwin;
2632 for (cur = mainwin_list; cur != NULL; cur = cur->next) {
2633 mainwin = (MainWindow *)cur->data;
2634 main_window_set_toolbar_combo_receive_menu(mainwin, account_list);
2635 main_window_set_toolbar_combo_compose_menu(mainwin, account_list);
2639 static void main_window_show_cur_account(MainWindow *mainwin)
2641 gchar *buf;
2642 gchar *ac_name;
2644 ac_name = g_strdup(cur_account
2645 ? (cur_account->account_name
2646 ? cur_account->account_name : _("Untitled"))
2647 : _("none"));
2649 if (cur_account)
2650 buf = g_strdup_printf("%s - %s", ac_name, PROG_VERSION_FRIENDLY);
2651 else
2652 buf = g_strdup(PROG_VERSION_FRIENDLY);
2653 gtk_window_set_title(GTK_WINDOW(mainwin->window), buf);
2654 g_free(buf);
2656 if (mainwin->ac_label)
2657 gtk_label_set_text(GTK_LABEL(mainwin->ac_label), ac_name);
2658 if (mainwin->ac_button)
2659 gtk_widget_queue_resize(mainwin->ac_button);
2661 g_free(ac_name);
2663 #ifndef GENERIC_UMPC
2664 static void main_window_separation_change(MainWindow *mainwin, LayoutType layout_mode)
2666 GtkWidget *folder_wid = GTK_WIDGET_PTR(mainwin->folderview);
2667 GtkWidget *summary_wid = GTK_WIDGET_PTR(mainwin->summaryview);
2668 GtkWidget *message_wid = mainwin->messageview->vbox;
2670 if (layout_mode == prefs_common.layout_mode)
2671 return;
2673 debug_print("Changing window separation type from %d to %d\n",
2674 prefs_common.layout_mode, layout_mode);
2676 /* remove widgets from those containers */
2677 g_object_ref(folder_wid);
2678 g_object_ref(summary_wid);
2679 g_object_ref(message_wid);
2680 gtkut_container_remove
2681 (GTK_CONTAINER(gtk_widget_get_parent(folder_wid)), folder_wid);
2682 gtkut_container_remove
2683 (GTK_CONTAINER(gtk_widget_get_parent(summary_wid)), summary_wid);
2684 gtkut_container_remove
2685 (GTK_CONTAINER(gtk_widget_get_parent(message_wid)), message_wid);
2687 gtk_widget_hide(mainwin->window);
2688 main_window_set_widgets(mainwin, layout_mode);
2689 gtk_widget_show(mainwin->window);
2691 g_object_unref(folder_wid);
2692 g_object_unref(summary_wid);
2693 g_object_unref(message_wid);
2695 #endif
2696 void mainwindow_reset_paned(GtkPaned *paned)
2698 gint min, max, mid;
2700 if (gtk_paned_get_child1(GTK_PANED(paned)))
2701 gtk_widget_show(gtk_paned_get_child1(GTK_PANED(paned)));
2702 if (gtk_paned_get_child2(GTK_PANED(paned)))
2703 gtk_widget_show(gtk_paned_get_child2(GTK_PANED(paned)));
2705 GTK_EVENTS_FLUSH();
2706 g_object_get (G_OBJECT(paned),
2707 "min-position",
2708 &min, NULL);
2709 g_object_get (G_OBJECT(paned),
2710 "max-position",
2711 &max, NULL);
2712 mid = (min+max)/2;
2713 gtk_paned_set_position(GTK_PANED(paned), mid);
2716 static void mainwin_paned_show_first(GtkPaned *paned)
2718 gint max;
2719 g_object_get (G_OBJECT(paned),
2720 "max-position",
2721 &max, NULL);
2723 if (gtk_paned_get_child1(GTK_PANED(paned)))
2724 gtk_widget_show(gtk_paned_get_child1(GTK_PANED(paned)));
2725 if (gtk_paned_get_child2(GTK_PANED(paned)))
2726 gtk_widget_hide(gtk_paned_get_child2(GTK_PANED(paned)));
2727 gtk_paned_set_position(GTK_PANED(paned), max);
2730 static void mainwin_paned_show_last(GtkPaned *paned)
2732 gint min;
2733 g_object_get (G_OBJECT(paned),
2734 "min-position",
2735 &min, NULL);
2737 if (gtk_paned_get_child1(GTK_PANED(paned)))
2738 gtk_widget_hide(gtk_paned_get_child1(GTK_PANED(paned)));
2739 if (gtk_paned_get_child2(GTK_PANED(paned)))
2740 gtk_widget_show(gtk_paned_get_child2(GTK_PANED(paned)));
2741 gtk_paned_set_position(GTK_PANED(paned), min);
2744 void main_window_toggle_message_view(MainWindow *mainwin)
2746 SummaryView *summaryview = mainwin->summaryview;
2747 GtkWidget *ppaned = NULL;
2748 GtkWidget *container = NULL;
2750 switch (prefs_common.layout_mode) {
2751 case NORMAL_LAYOUT:
2752 case VERTICAL_LAYOUT:
2753 case SMALL_LAYOUT:
2754 ppaned = mainwin->vpaned;
2755 container = mainwin->hpaned;
2756 if (gtk_widget_get_parent(ppaned) != NULL) {
2757 mainwin->messageview->visible = FALSE;
2758 summaryview->displayed = NULL;
2759 g_object_ref(ppaned);
2760 gtkut_container_remove(GTK_CONTAINER(container), ppaned);
2761 gtk_widget_reparent(GTK_WIDGET_PTR(summaryview), container);
2762 } else {
2763 mainwin->messageview->visible = TRUE;
2764 gtk_widget_reparent(GTK_WIDGET_PTR(summaryview), ppaned);
2765 gtk_container_add(GTK_CONTAINER(container), ppaned);
2766 g_object_unref(ppaned);
2768 break;
2769 case WIDE_LAYOUT:
2770 container = mainwin->vpaned;
2771 if (gtk_widget_get_parent(mainwin->messageview->vbox) != NULL) {
2772 mainwin->messageview->visible = FALSE;
2773 summaryview->displayed = NULL;
2774 g_object_ref(mainwin->messageview->vbox);
2775 gtkut_container_remove(GTK_CONTAINER(container), mainwin->messageview->vbox);
2776 } else {
2777 mainwin->messageview->visible = TRUE;
2778 gtk_container_add(GTK_CONTAINER(container), mainwin->messageview->vbox);
2779 g_object_unref(mainwin->messageview->vbox);
2781 break;
2782 case WIDE_MSGLIST_LAYOUT:
2783 g_warning("can't hide messageview in this wide msglist layout");
2784 break;
2787 if (messageview_is_visible(mainwin->messageview))
2788 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
2789 GTK_ARROW_DOWN, GTK_SHADOW_OUT);
2790 else
2791 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
2792 GTK_ARROW_UP, GTK_SHADOW_OUT);
2794 if (mainwin->messageview->visible == FALSE)
2795 messageview_clear(mainwin->messageview);
2797 main_window_set_menu_sensitive(mainwin);
2799 prefs_common.msgview_visible = mainwin->messageview->visible;
2801 if (messageview_is_visible(mainwin->messageview)) {
2802 gtk_widget_queue_resize(mainwin->hpaned);
2803 gtk_widget_queue_resize(mainwin->vpaned);
2805 summary_grab_focus(summaryview);
2806 if (!summary_is_list(summaryview)) {
2807 summary_show(summaryview, summaryview->folder_item);
2811 void main_window_get_size(MainWindow *mainwin)
2813 GtkAllocation allocation;
2815 if (mainwin_list == NULL || mainwin->messageview == NULL) {
2816 debug_print("called after messageview "
2817 "has been deallocated!\n");
2818 return;
2821 if (prefs_common.mainwin_fullscreen) {
2822 debug_print("mainwin in full screen state. "
2823 "Keeping original settings\n");
2826 gtk_widget_get_allocation(GTK_WIDGET_PTR(mainwin->summaryview), &allocation);
2827 if (allocation.width > 1 && allocation.height > 1 && !prefs_common.mainwin_fullscreen) {
2828 prefs_common.summaryview_width = allocation.width;
2830 if (messageview_is_visible(mainwin->messageview))
2831 prefs_common.summaryview_height = allocation.height;
2833 prefs_common.mainview_width = allocation.width;
2836 gtk_widget_get_allocation(mainwin->window, &allocation);
2837 if (allocation.width > 1 && allocation.height > 1 &&
2838 !prefs_common.mainwin_maximised && !prefs_common.mainwin_fullscreen) {
2839 prefs_common.mainview_height = allocation.height;
2840 prefs_common.mainwin_width = allocation.width;
2841 prefs_common.mainwin_height = allocation.height;
2844 gtk_widget_get_allocation(GTK_WIDGET_PTR(mainwin->folderview), &allocation);
2845 if (allocation.width > 1 && allocation.height > 1 &&
2846 !prefs_common.mainwin_fullscreen) {
2847 prefs_common.folderview_width = allocation.width;
2848 prefs_common.folderview_height = allocation.height;
2851 gtk_widget_get_allocation(GTK_WIDGET_PTR(mainwin->messageview), &allocation);
2852 if (allocation.width > 1 && allocation.height > 1 &&
2853 !prefs_common.mainwin_fullscreen) {
2854 prefs_common.msgview_width = allocation.width;
2855 prefs_common.msgview_height = allocation.height;
2858 /* debug_print("summaryview size: %d x %d\n",
2859 prefs_common.summaryview_width,
2860 prefs_common.summaryview_height);
2861 debug_print("folderview size: %d x %d\n",
2862 prefs_common.folderview_width,
2863 prefs_common.folderview_height);
2864 debug_print("messageview size: %d x %d\n",
2865 prefs_common.msgview_width,
2866 prefs_common.msgview_height); */
2869 void main_window_get_position(MainWindow *mainwin)
2871 gint x, y;
2873 if (prefs_common.mainwin_maximised || prefs_common.mainwin_fullscreen)
2874 return;
2876 gtkut_widget_get_uposition(mainwin->window, &x, &y);
2878 prefs_common.mainview_x = x;
2879 prefs_common.mainview_y = y;
2880 prefs_common.mainwin_x = x;
2881 prefs_common.mainwin_y = y;
2883 debug_print("main window position: %d, %d\n", x, y);
2886 void main_window_progress_on(MainWindow *mainwin)
2888 gtk_progress_bar_set_text(GTK_PROGRESS_BAR(mainwin->progressbar), "");
2891 void main_window_progress_off(MainWindow *mainwin)
2893 gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(mainwin->progressbar), 0.0);
2894 gtk_progress_bar_set_text(GTK_PROGRESS_BAR(mainwin->progressbar), "");
2897 gboolean main_window_empty_trash(MainWindow *mainwin, gboolean confirm, gboolean for_quit)
2899 if (confirm && procmsg_have_trashed_mails_fast()) {
2900 AlertValue val;
2902 if (for_quit)
2903 val = alertpanel(_("Empty trash"),
2904 _("Delete all messages in trash folders?"),
2905 GTK_STOCK_NO, "+" GTK_STOCK_YES, _("Don't quit"));
2906 else
2907 val = alertpanel(_("Empty trash"),
2908 _("Delete all messages in trash folders?"),
2909 GTK_STOCK_NO, "+" GTK_STOCK_YES, NULL);
2910 if (val == G_ALERTALTERNATE) {
2911 debug_print("will empty trash\n");
2912 } else if (val == G_ALERTDEFAULT) {
2913 debug_print("will not empty trash\n");
2914 return TRUE;
2915 } else {
2916 return FALSE; /* cancel exit */
2918 manage_window_focus_in(mainwin->window, NULL, NULL);
2921 procmsg_empty_all_trash();
2923 if (mainwin->summaryview->folder_item &&
2924 mainwin->summaryview->folder_item->stype == F_TRASH)
2925 folderview_grab_focus(mainwin->folderview);
2926 return TRUE;
2929 static void main_window_add_mailbox(MainWindow *mainwin)
2931 gchar *path;
2932 Folder *folder;
2934 path = input_dialog(_("Add mailbox"),
2935 _("Input the location of mailbox.\n"
2936 "If an existing mailbox is specified, it will be\n"
2937 "scanned automatically."),
2938 "Mail");
2939 if (!path) return;
2940 if (folder_find_from_path(path)) {
2941 alertpanel_error(_("The mailbox '%s' already exists."), path);
2942 g_free(path);
2943 return;
2945 folder = folder_new(folder_get_class_from_string("mh"),
2946 !strcmp(path, "Mail") ? _("Mailbox") :
2947 g_path_get_basename(path), path);
2948 g_free(path);
2950 if (folder->klass->create_tree(folder) < 0) {
2951 alertpanel_error(_("Creation of the mailbox failed.\n"
2952 "Maybe some files already exist, or you don't have the permission to write there."));
2953 folder_destroy(folder);
2954 return;
2957 folder_add(folder);
2958 folder_set_ui_func(folder, scan_tree_func, mainwin);
2959 folder_scan_tree(folder, TRUE);
2960 folder_set_ui_func(folder, NULL, NULL);
2963 SensitiveCondMask main_window_get_current_state(MainWindow *mainwin)
2965 SensitiveCondMask state = 0;
2966 SummarySelection selection;
2967 FolderItem *item = mainwin->summaryview->folder_item;
2968 GList *account_list = account_get_list();
2969 GSList *tmp;
2971 selection = summary_get_selection_type(mainwin->summaryview);
2973 #define UPDATE_STATE(...) \
2974 do { \
2975 state |= main_window_get_mask(__VA_ARGS__, -1); \
2976 } while (0)
2978 if (mainwin->lock_count == 0 && !claws_is_starting())
2979 UPDATE_STATE(M_UNLOCKED);
2980 if (selection != SUMMARY_NONE && selection != SUMMARY_SELECTED_NONE)
2981 UPDATE_STATE(M_MSG_EXIST);
2982 if (item && item->path && folder_item_parent(item) && !item->no_select) {
2983 UPDATE_STATE(M_EXEC);
2984 /* if (item->folder->type != F_NEWS) */
2985 UPDATE_STATE(M_ALLOW_DELETE);
2987 if (prefs_common.immediate_exec == 0
2988 && mainwin->lock_count == 0)
2989 UPDATE_STATE(M_DELAY_EXEC);
2991 if ((selection == SUMMARY_NONE && item->hide_read_msgs)
2992 || selection != SUMMARY_NONE)
2993 UPDATE_STATE(M_HIDE_READ_MSG);
2995 if ((selection == SUMMARY_NONE && item->hide_read_threads)
2996 || selection != SUMMARY_NONE)
2997 UPDATE_STATE(M_HIDE_READ_THREADS);
2999 if (mainwin->summaryview->threaded)
3000 UPDATE_STATE(M_THREADED);
3001 else
3002 UPDATE_STATE(M_UNTHREADED);
3003 if (selection == SUMMARY_SELECTED_SINGLE ||
3004 selection == SUMMARY_SELECTED_MULTIPLE)
3005 UPDATE_STATE(M_TARGET_EXIST);
3006 if (selection == SUMMARY_SELECTED_SINGLE)
3007 UPDATE_STATE(M_SINGLE_TARGET_EXIST);
3008 if (mainwin->summaryview->folder_item &&
3009 mainwin->summaryview->folder_item->folder->klass->type == F_NEWS)
3010 UPDATE_STATE(M_NEWS);
3011 else
3012 UPDATE_STATE(M_NOT_NEWS);
3013 if (mainwin->summaryview->folder_item &&
3014 (mainwin->summaryview->folder_item->stype != F_TRASH ||
3015 !folder_has_parent_of_type(mainwin->summaryview->folder_item, F_TRASH)))
3016 UPDATE_STATE(M_NOT_TRASH);
3018 if (mainwin->summaryview->folder_item
3019 && mainwin->summaryview->folder_item->stype != F_DRAFT)
3020 UPDATE_STATE(M_NOT_DRAFT);
3022 if (prefs_common.actions_list && g_slist_length(prefs_common.actions_list))
3023 UPDATE_STATE(M_ACTIONS_EXIST);
3025 tmp = tags_get_list();
3026 if (tmp && g_slist_length(tmp))
3027 UPDATE_STATE(M_TAGS_EXIST);
3028 g_slist_free(tmp);
3030 if (procmsg_have_queued_mails_fast() && !procmsg_is_sending())
3031 UPDATE_STATE(M_HAVE_QUEUED_MAILS);
3033 if (selection == SUMMARY_SELECTED_SINGLE &&
3034 (item &&
3035 (folder_has_parent_of_type(item, F_DRAFT) ||
3036 folder_has_parent_of_type(item, F_OUTBOX) ||
3037 folder_has_parent_of_type(item, F_QUEUE))))
3038 UPDATE_STATE(M_ALLOW_REEDIT);
3039 if (cur_account)
3040 UPDATE_STATE(M_HAVE_ACCOUNT);
3042 if (cur_account && cur_account->protocol != A_NONE)
3043 UPDATE_STATE(M_HAVE_RETRIEVABLE_ACCOUNT);
3045 if (any_folder_want_synchronise())
3046 UPDATE_STATE(M_WANT_SYNC);
3048 if (item && item->prefs->processing && selection != SUMMARY_NONE)
3049 UPDATE_STATE(M_HAVE_PROCESSING);
3051 if (g_list_length(account_list) > 1)
3052 UPDATE_STATE(M_HAVE_MULTI_ACCOUNT);
3054 for (account_list = account_get_list(); account_list != NULL; account_list = account_list->next) {
3055 if (((PrefsAccount*)account_list->data)->protocol != A_NONE) {
3056 UPDATE_STATE(M_HAVE_ANY_RETRIEVABLE_ACCOUNT);
3057 break;
3061 for (account_list = account_get_list(); account_list != NULL; account_list = account_list->next) {
3062 if (((PrefsAccount*)account_list->data)->protocol == A_NNTP) {
3063 UPDATE_STATE(M_HAVE_NEWS_ACCOUNT);
3064 break;
3068 if (procmsg_spam_can_learn() &&
3069 (mainwin->summaryview->folder_item &&
3070 mainwin->summaryview->folder_item->folder->klass->type != F_UNKNOWN &&
3071 mainwin->summaryview->folder_item->folder->klass->type != F_NEWS)) {
3072 UPDATE_STATE(M_CAN_LEARN_SPAM);
3075 if (mainwin->summaryview->folder_item) {
3076 UPDATE_STATE(M_FOLDER_SELECTED);
3079 if (inc_is_active())
3080 UPDATE_STATE(M_INC_ACTIVE);
3081 if (imap_cancel_all_enabled())
3082 UPDATE_STATE(M_INC_ACTIVE);
3084 if (send_is_active() | procmsg_is_sending())
3085 UPDATE_STATE(M_SEND_ACTIVE);
3087 if (mainwin->summaryview->deleted > 0)
3088 UPDATE_STATE(M_DELETED_EXISTS);
3090 if (mainwin->summaryview->deleted > 0 ||
3091 mainwin->summaryview->moved > 0 ||
3092 mainwin->summaryview->copied > 0)
3093 UPDATE_STATE(M_DELAY_EXEC);
3095 if (summary_is_list(mainwin->summaryview))
3096 UPDATE_STATE(M_SUMMARY_ISLIST);
3098 if (prefs_common.layout_mode != SMALL_LAYOUT || mainwin->in_folder)
3099 UPDATE_STATE(M_IN_MSGLIST);
3101 for (account_list = account_get_list(); account_list != NULL; account_list = account_list->next) {
3102 PrefsAccount *account = account_list->data;
3103 if (account->session_passwd || account->session_smtp_passwd) {
3104 UPDATE_STATE(M_SESSION_PASSWORDS);
3105 break;
3109 #ifndef PASSWORD_CRYPTO_OLD
3110 if (master_passphrase_is_entered()) {
3111 UPDATE_STATE(M_MASTER_PASSPHRASE);
3113 #endif
3114 #undef UPDATE_STATE
3116 return state;
3119 SensitiveCondMask main_window_get_mask(SensitiveCond cond, ...)
3121 va_list args;
3122 gint i;
3123 SensitiveCondMask value;
3124 static SensitiveCondMask SensitiveCond_table[M_MAX_RESERVED];
3125 static gboolean first_time = TRUE;
3127 if (first_time) {
3128 for (i = 0; i < M_MAX_RESERVED; i++)
3129 SensitiveCond_table[i] = (SensitiveCondMask) ((SensitiveCondMask)1 << i);
3130 first_time = FALSE;
3133 value = 0;
3135 va_start(args, cond);
3136 for (i = (gint) cond; i >= 0; i = va_arg(args, gint))
3137 value |= SensitiveCond_table[i];
3138 va_end(args);
3140 return value;
3143 void main_window_set_menu_sensitive(MainWindow *mainwin)
3145 SensitiveCondMask state;
3146 gboolean sensitive;
3147 SummaryView *summaryview;
3148 gchar *menu_path;
3149 GtkWidget *menu;
3150 GList *children, *cur_item;
3151 gint i;
3152 gboolean mimepart_selected = FALSE;
3154 #define N_ENTRIES 88
3155 static struct {
3156 const gchar *entry;
3157 SensitiveCondMask cond;
3158 } entry[N_ENTRIES];
3160 i = 0;
3161 #define FILL_TABLE(entry_str, ...) \
3162 do { \
3163 entry[i].entry = (const gchar *) entry_str; entry[i++].cond = main_window_get_mask(__VA_ARGS__, -1); \
3164 } while (0)
3166 FILL_TABLE("Menu/File/SaveAs", M_TARGET_EXIST);
3167 FILL_TABLE("Menu/File/SavePartAs", M_SINGLE_TARGET_EXIST);
3168 FILL_TABLE("Menu/File/Print", M_TARGET_EXIST);
3169 FILL_TABLE("Menu/File/SynchroniseFolders", M_WANT_SYNC);
3170 FILL_TABLE("Menu/File/Exit", M_UNLOCKED);
3172 FILL_TABLE("Menu/Edit/SelectThread", M_TARGET_EXIST, M_SUMMARY_ISLIST);
3173 FILL_TABLE("Menu/Edit/Find", M_SINGLE_TARGET_EXIST);
3174 FILL_TABLE("Menu/Edit/QuickSearch", M_IN_MSGLIST);
3175 FILL_TABLE("Menu/Edit/SearchFolder", M_TARGET_EXIST, M_SUMMARY_ISLIST);
3177 FILL_TABLE("Menu/View/SetColumns/Folderlist", M_UNLOCKED, M_SUMMARY_ISLIST);
3178 FILL_TABLE("Menu/View/Sort", M_EXEC, M_SUMMARY_ISLIST);
3179 FILL_TABLE("Menu/View/ThreadView", M_EXEC, M_SUMMARY_ISLIST);
3180 FILL_TABLE("Menu/View/ExpandThreads", M_MSG_EXIST, M_SUMMARY_ISLIST);
3181 FILL_TABLE("Menu/View/CollapseThreads", M_MSG_EXIST, M_SUMMARY_ISLIST);
3182 FILL_TABLE("Menu/View/HideReadThreads", M_HIDE_READ_THREADS, M_SUMMARY_ISLIST, M_NOT_DRAFT);
3183 FILL_TABLE("Menu/View/HideReadMessages", M_HIDE_READ_MSG, M_SUMMARY_ISLIST, M_NOT_DRAFT);
3184 FILL_TABLE("Menu/View/HideDelMessages", M_SUMMARY_ISLIST, M_NOT_DRAFT);
3185 FILL_TABLE("Menu/View/Goto/Prev", M_MSG_EXIST);
3186 FILL_TABLE("Menu/View/Goto/Next", M_MSG_EXIST);
3187 FILL_TABLE("Menu/View/Goto/PrevUnread", M_MSG_EXIST);
3188 FILL_TABLE("Menu/View/Goto/NextUnread", M_MSG_EXIST);
3189 FILL_TABLE("Menu/View/Goto/PrevNew", M_MSG_EXIST);
3190 FILL_TABLE("Menu/View/Goto/NextNew", M_MSG_EXIST);
3191 FILL_TABLE("Menu/View/Goto/PrevMarked", M_MSG_EXIST);
3192 FILL_TABLE("Menu/View/Goto/NextMarked", M_MSG_EXIST);
3193 FILL_TABLE("Menu/View/Goto/PrevLabeled", M_MSG_EXIST);
3194 FILL_TABLE("Menu/View/Goto/NextLabeled", M_MSG_EXIST);
3195 FILL_TABLE("Menu/View/Goto/ParentMessage", M_SINGLE_TARGET_EXIST);
3196 FILL_TABLE("Menu/View/Goto/NextPart", M_SINGLE_TARGET_EXIST);
3197 FILL_TABLE("Menu/View/Goto/PrevPart", M_SINGLE_TARGET_EXIST);
3198 FILL_TABLE("Menu/View/OpenNewWindow", M_SINGLE_TARGET_EXIST);
3199 FILL_TABLE("Menu/View/MessageSource", M_SINGLE_TARGET_EXIST);
3200 FILL_TABLE("Menu/View/Part", M_SINGLE_TARGET_EXIST);
3201 FILL_TABLE("Menu/View/AllHeaders", M_SINGLE_TARGET_EXIST);
3202 FILL_TABLE("Menu/View/Quotes", M_SINGLE_TARGET_EXIST);
3204 FILL_TABLE("Menu/Message/Receive/CurrentAccount", M_HAVE_ACCOUNT, M_UNLOCKED, M_HAVE_RETRIEVABLE_ACCOUNT);
3205 FILL_TABLE("Menu/Message/Receive/AllAccounts", M_HAVE_ACCOUNT, M_UNLOCKED, M_HAVE_ANY_RETRIEVABLE_ACCOUNT);
3206 FILL_TABLE("Menu/Message/Receive/CancelReceiving", M_INC_ACTIVE);
3207 FILL_TABLE("Menu/Message/SendQueue", M_HAVE_ACCOUNT, M_HAVE_QUEUED_MAILS);
3208 FILL_TABLE("Menu/Message/CancelSending", M_SEND_ACTIVE);
3209 FILL_TABLE("Menu/Message/ComposeEmail", M_HAVE_ACCOUNT);
3210 FILL_TABLE("Menu/Message/ComposeNews", M_HAVE_NEWS_ACCOUNT);
3211 FILL_TABLE("Menu/Message/Reply", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_SUMMARY_ISLIST);
3212 FILL_TABLE("Menu/Message/ReplyTo", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_SUMMARY_ISLIST);
3213 FILL_TABLE("Menu/Message/FollowupReply", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_NEWS, M_SUMMARY_ISLIST);
3214 FILL_TABLE("Menu/Message/Forward", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_SUMMARY_ISLIST);
3215 FILL_TABLE("Menu/Message/ForwardAtt", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_SUMMARY_ISLIST);
3216 FILL_TABLE("Menu/Message/Redirect", M_HAVE_ACCOUNT, M_TARGET_EXIST, M_SUMMARY_ISLIST);
3217 FILL_TABLE("Menu/Message/Move", M_TARGET_EXIST, M_ALLOW_DELETE, M_NOT_NEWS);
3218 FILL_TABLE("Menu/Message/Copy", M_TARGET_EXIST, M_EXEC);
3219 FILL_TABLE("Menu/Message/Trash", M_TARGET_EXIST, M_ALLOW_DELETE, M_NOT_NEWS, M_NOT_TRASH);
3220 FILL_TABLE("Menu/Message/Delete", M_TARGET_EXIST, M_ALLOW_DELETE);
3221 FILL_TABLE("Menu/Message/TrashThread", M_TARGET_EXIST, M_SUMMARY_ISLIST);
3222 FILL_TABLE("Menu/Message/DeleteThread", M_TARGET_EXIST, M_SUMMARY_ISLIST);
3223 FILL_TABLE("Menu/Message/CancelNews", M_TARGET_EXIST, M_ALLOW_DELETE, M_NEWS);
3224 FILL_TABLE("Menu/Message/Mark", M_TARGET_EXIST, M_SUMMARY_ISLIST);
3225 FILL_TABLE("Menu/Message/Mark/MarkSpam", M_TARGET_EXIST, M_CAN_LEARN_SPAM);
3226 FILL_TABLE("Menu/Message/Mark/MarkHam", M_TARGET_EXIST, M_CAN_LEARN_SPAM);
3227 FILL_TABLE("Menu/Message/Mark/IgnoreThread", M_TARGET_EXIST);
3228 FILL_TABLE("Menu/Message/Mark/UnignoreThread", M_TARGET_EXIST);
3229 FILL_TABLE("Menu/Message/Mark/Lock", M_TARGET_EXIST);
3230 FILL_TABLE("Menu/Message/Mark/Unlock", M_TARGET_EXIST);
3231 FILL_TABLE("Menu/Message/ColorLabel", M_TARGET_EXIST);
3232 FILL_TABLE("Menu/Message/Tags", M_TARGET_EXIST);
3233 FILL_TABLE("Menu/Message/Reedit", M_HAVE_ACCOUNT, M_ALLOW_REEDIT);
3234 FILL_TABLE("Menu/Message/CheckSignature", M_SINGLE_TARGET_EXIST);
3236 FILL_TABLE("Menu/Tools/AddSenderToAB", M_SINGLE_TARGET_EXIST);
3237 FILL_TABLE("Menu/Tools/CollectAddresses", M_FOLDER_SELECTED);
3238 FILL_TABLE("Menu/Tools/CollectAddresses/FromFolder", M_FOLDER_SELECTED);
3239 FILL_TABLE("Menu/Tools/CollectAddresses/FromSelected", M_TARGET_EXIST);
3240 FILL_TABLE("Menu/Tools/FilterFolder", M_MSG_EXIST, M_EXEC);
3241 FILL_TABLE("Menu/Tools/FilterSelected", M_TARGET_EXIST, M_EXEC);
3242 FILL_TABLE("Menu/Tools/RunProcessing", M_HAVE_PROCESSING);
3243 FILL_TABLE("Menu/Tools/CreateFilterRule", M_SINGLE_TARGET_EXIST, M_UNLOCKED);
3244 FILL_TABLE("Menu/Tools/CreateProcessingRule", M_SINGLE_TARGET_EXIST, M_UNLOCKED);
3245 FILL_TABLE("Menu/Tools/ListUrls", M_TARGET_EXIST);
3246 FILL_TABLE("Menu/Tools/Actions", M_TARGET_EXIST, M_ACTIONS_EXIST);
3247 FILL_TABLE("Menu/Tools/Execute", M_DELAY_EXEC);
3248 FILL_TABLE("Menu/Tools/Expunge", M_DELETED_EXISTS);
3249 FILL_TABLE("Menu/Tools/ForgetSessionPasswords", M_SESSION_PASSWORDS);
3250 #ifndef PASSWORD_CRYPTO_OLD
3251 FILL_TABLE("Menu/Tools/ForgetMasterPassphrase", M_MASTER_PASSPHRASE);
3252 #endif
3253 FILL_TABLE("Menu/Tools/DeleteDuplicates/SelFolder", M_MSG_EXIST, M_ALLOW_DELETE);
3255 FILL_TABLE("Menu/Configuration", M_UNLOCKED);
3256 FILL_TABLE("Menu/Configuration/ChangeAccount", M_HAVE_MULTI_ACCOUNT);
3257 FILL_TABLE("Menu/Configuration/AccountPrefs", M_UNLOCKED);
3258 FILL_TABLE("Menu/Configuration/CreateAccount", M_UNLOCKED);
3259 FILL_TABLE("Menu/Configuration/EditAccounts", M_UNLOCKED);
3260 FILL_TABLE(NULL, -1);
3261 #undef FILL_TABLE
3262 if (i > N_ENTRIES)
3263 g_error("main window menu entry table overrun (%d/%d)", i, N_ENTRIES);
3264 #undef ENTRIES
3266 state = main_window_get_current_state(mainwin);
3268 for (i = 0; entry[i].entry != NULL; i++) {
3269 sensitive = ((entry[i].cond & state) == entry[i].cond);
3270 cm_menu_set_sensitive_full(mainwin->ui_manager, entry[i].entry, sensitive);
3273 menu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(
3274 gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/Receive")));
3276 children = gtk_container_get_children(GTK_CONTAINER(menu));
3277 for (cur_item = children; cur_item != NULL; cur_item = cur_item->next) {
3278 if (cur_item->data == gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/Receive/Separator1")) {
3279 cur_item = cur_item->next;
3280 break;
3284 for (; cur_item != NULL; cur_item = cur_item->next) {
3285 gtk_widget_set_sensitive(GTK_WIDGET(cur_item->data),
3286 (main_window_get_mask(M_UNLOCKED, -1) & state) != 0);
3289 g_list_free(children);
3291 main_window_menu_callback_block(mainwin);
3293 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/ShowHide/MessageView",
3294 messageview_is_visible(mainwin->messageview));
3296 summaryview = mainwin->summaryview;
3298 switch (summaryview->sort_key) {
3299 case SORT_BY_NUMBER:
3300 menu_path = "Menu/View/Sort/Number"; break;
3301 case SORT_BY_SIZE:
3302 menu_path = "Menu/View/Sort/Size"; break;
3303 case SORT_BY_DATE:
3304 menu_path = "Menu/View/Sort/Date"; break;
3305 case SORT_BY_THREAD_DATE:
3306 menu_path = "Menu/View/Sort/ThreadDate"; break;
3307 case SORT_BY_FROM:
3308 menu_path = "Menu/View/Sort/From"; break;
3309 case SORT_BY_TO:
3310 menu_path = "Menu/View/Sort/To"; break;
3311 case SORT_BY_SUBJECT:
3312 menu_path = "Menu/View/Sort/Subject"; break;
3313 case SORT_BY_LABEL:
3314 menu_path = "Menu/View/Sort/Color"; break;
3315 case SORT_BY_MARK:
3316 menu_path = "Menu/View/Sort/Mark"; break;
3317 case SORT_BY_STATUS:
3318 menu_path = "Menu/View/Sort/Status"; break;
3319 case SORT_BY_MIME:
3320 menu_path = "Menu/View/Sort/Attachment"; break;
3321 case SORT_BY_SCORE:
3322 menu_path = "Menu/View/Sort/Score"; break;
3323 case SORT_BY_LOCKED:
3324 menu_path = "Menu/View/Sort/Locked"; break;
3325 case SORT_BY_TAGS:
3326 menu_path = "Menu/View/Sort/Tag"; break;
3327 case SORT_BY_NONE:
3328 default:
3329 menu_path = "Menu/View/Sort/DontSort"; break;
3331 cm_toggle_menu_set_active_full(mainwin->ui_manager, menu_path, TRUE);
3333 if (summaryview->sort_type == SORT_ASCENDING) {
3334 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Sort/Ascending", TRUE);
3335 } else {
3336 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Sort/Descending", TRUE);
3339 if (summaryview->sort_key != SORT_BY_NONE) {
3340 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Sort/Ascending", TRUE);
3341 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Sort/Descending", TRUE);
3342 } else {
3343 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Sort/Ascending", FALSE);
3344 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Sort/Descending", FALSE);
3347 if (mainwin->messageview
3348 && mainwin->messageview->mimeview
3349 && mainwin->messageview->mimeview->textview)
3350 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/AllHeaders",
3351 prefs_common.show_all_headers);
3352 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/ThreadView", (state & main_window_get_mask(M_THREADED, -1)) != 0);
3353 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/ExpandThreads", (state & main_window_get_mask(M_THREADED, -1)) != 0);
3354 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/CollapseThreads", (state & main_window_get_mask(M_THREADED, -1)) != 0);
3355 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/HideReadThreads", (state & main_window_get_mask(M_THREADED, -1)) != 0 && (state & main_window_get_mask(M_NOT_DRAFT, -1)) != 0);
3356 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/CollapseAll", (prefs_common.hide_quotes == 1));
3357 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/Collapse2", (prefs_common.hide_quotes == 2));
3358 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/Collapse3", (prefs_common.hide_quotes == 3));
3360 if (mainwin->summaryview->folder_item && !mainwin->summaryview->folder_item->threaded)
3361 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/HideReadThreads", FALSE);
3362 if ((mainwin->summaryview->folder_item && mainwin->summaryview->folder_item->hide_read_msgs) ||
3363 quicksearch_has_sat_predicate(mainwin->summaryview->quicksearch))
3364 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/HideReadThreads", FALSE);
3365 if ((mainwin->summaryview->folder_item && mainwin->summaryview->folder_item->hide_read_threads) ||
3366 quicksearch_has_sat_predicate(mainwin->summaryview->quicksearch))
3367 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/HideReadMessages", FALSE);
3368 if (quicksearch_has_sat_predicate(mainwin->summaryview->quicksearch))
3369 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/HideDelMessages", FALSE);
3371 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Goto/PrevHistory",
3372 messageview_nav_has_prev(mainwin->messageview));
3373 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Goto/NextHistory",
3374 messageview_nav_has_next(mainwin->messageview));
3376 if (mainwin->messageview
3377 && mainwin->messageview->mimeview)
3378 mimepart_selected = !mimeview_tree_is_empty(mainwin->messageview->mimeview);
3380 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/File/SavePartAs", mimepart_selected);
3381 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Goto/NextPart", mimepart_selected);
3382 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Goto/PrevPart", mimepart_selected);
3383 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/Part", mimepart_selected);
3384 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/CheckSignature",
3385 mimepart_selected && mainwin->messageview->mimeview->signed_part);
3387 main_window_menu_callback_unblock(mainwin);
3390 void main_create_mailing_list_menu (MainWindow *mainwin, MsgInfo *msginfo)
3392 gint is_menu = 0;
3394 if (msginfo)
3395 is_menu = mailing_list_create_submenu (mainwin, msginfo);
3396 if (is_menu)
3397 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList", TRUE);
3398 else
3399 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList", FALSE);
3402 static gint mailing_list_create_submenu (MainWindow *mainwin, MsgInfo *msginfo)
3404 gint menu_nb = 0;
3405 GtkWidget *menuitem;
3407 if (!msginfo || !msginfo->extradata) {
3408 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/Post", FALSE);
3409 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/Help", FALSE);
3410 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/Subscribe", FALSE);
3411 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/Unsubscribe", FALSE);
3412 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/ViewArchive", FALSE);
3413 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/Message/MailingList/ContactOwner", FALSE);
3414 return 0;
3417 /* Mailing list post */
3418 if (!strcmp2 (msginfo->extradata->list_post, "NO")) {
3419 g_free(msginfo->extradata->list_post);
3420 msginfo->extradata->list_post = g_strdup (_("No posting allowed"));
3422 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/Post");
3424 menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_post);
3426 /* Mailing list help */
3427 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/Help");
3429 menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_help);
3431 /* Mailing list subscribe */
3432 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/Subscribe");
3434 menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_subscribe);
3436 /* Mailing list unsubscribe */
3437 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/Unsubscribe");
3439 menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_unsubscribe);
3441 /* Mailing list view archive */
3442 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/ViewArchive");
3444 menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_archive);
3446 /* Mailing list contact owner */
3447 menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/Message/MailingList/ContactOwner");
3449 menu_nb += mailing_list_populate_submenu (menuitem, msginfo->extradata->list_owner);
3451 return menu_nb;
3454 static gint mailing_list_populate_submenu (GtkWidget *menuitem, const gchar * list_header)
3456 GtkWidget *item, *menu;
3457 const gchar *url_pt ;
3458 gchar url_decoded[BUFFSIZE];
3459 GList *children, *amenu;
3460 gint menu_nb = 0;
3462 menu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(menuitem));
3464 /* First delete old submenu */
3465 /* FIXME: we can optimize this, and only change/add/delete necessary items */
3466 children = gtk_container_get_children(GTK_CONTAINER(menu));
3467 for (amenu = children; amenu; amenu = amenu->next) {
3468 item = GTK_WIDGET (amenu->data);
3469 gtk_widget_destroy (item);
3471 g_list_free(children);
3472 if (list_header) {
3473 for (url_pt = list_header; url_pt && *url_pt;) {
3474 get_url_part (&url_pt, url_decoded);
3475 item = NULL;
3476 if (!g_ascii_strncasecmp(url_decoded, "mailto:", 7)) {
3477 item = cm_menu_item_new_label_from_url ((url_decoded));
3478 g_signal_connect(G_OBJECT(item), "activate",
3479 G_CALLBACK(mailing_list_compose),
3480 NULL);
3482 else if (!g_ascii_strncasecmp(url_decoded, "http:", 5) ||
3483 !g_ascii_strncasecmp(url_decoded, "https:",6)) {
3485 item = cm_menu_item_new_label_from_url ((url_decoded));
3486 g_signal_connect(G_OBJECT(item), "activate",
3487 G_CALLBACK(mailing_list_open_uri),
3488 NULL);
3490 if (item) {
3491 gtk_menu_shell_append(GTK_MENU_SHELL(menu), item);
3492 gtk_widget_show (item);
3493 menu_nb++;
3497 if (menu_nb)
3498 gtk_widget_set_sensitive (menuitem, TRUE);
3499 else
3500 gtk_widget_set_sensitive (menuitem, FALSE);
3503 return menu_nb;
3506 static void get_url_part (const gchar **buffer, gchar *url_decoded)
3508 gchar tmp[BUFFSIZE];
3509 const gchar *buf;
3510 gint i = 0;
3511 buf = *buffer;
3512 gboolean with_plus = TRUE;
3514 if (buf == 0x00) {
3515 *url_decoded = '\0';
3516 *buffer = NULL;
3517 return;
3519 /* Ignore spaces, comments and tabs () */
3520 for (;*buf == ' ' || *buf == '(' || *buf == '\t'; buf++)
3521 if (*buf == '(')
3522 for (;*buf != ')' && *buf != 0x00; buf++);
3524 /* First non space and non comment must be a < */
3525 if (*buf =='<' ) {
3526 buf++;
3527 if (!strncmp(buf, "mailto:", strlen("mailto:")))
3528 with_plus = FALSE;
3529 for (i = 0;
3530 *buf != '>' && *buf != 0x00 && i < BUFFSIZE;
3531 tmp[i++] = *(buf++));
3532 if (*buf == 0) {
3533 *buffer = NULL;
3534 *url_decoded = '\0';
3535 return;
3537 buf++;
3539 else {
3540 *buffer = NULL;
3541 *url_decoded = '\0';
3542 return;
3545 *url_decoded = '\0';
3546 *buffer = NULL;
3548 if (i == BUFFSIZE) {
3549 return;
3551 tmp[i] = 0x00;
3552 decode_uri_with_plus (url_decoded, (const gchar *)tmp, with_plus);
3554 /* Prepare the work for the next url in the list */
3555 /* after the closing bracket >, ignore space, comments and tabs */
3556 for (;buf && *buf && (*buf == ' ' || *buf == '(' || *buf == '\t'); buf++)
3557 if (*buf == '(')
3558 for (;*buf != ')' && *buf != 0x00; buf++);
3560 if (!buf || !*buf) {
3561 *buffer = NULL;
3562 return;
3565 /* now first non space, non comment must be a comma */
3566 if (*buf != ',')
3567 for (;*buf != 0x00; buf++);
3568 else
3569 buf++;
3570 *buffer = buf;
3573 static void mailing_list_compose (GtkWidget *w, gpointer *data)
3575 const gchar *mailto;
3576 PrefsAccount *account = NULL;
3577 FolderItem *folder_item = NULL;
3579 mailto = gtk_label_get_text(GTK_LABEL (gtk_bin_get_child(GTK_BIN((w)))));
3580 if (mainwindow_get_mainwindow()) {
3581 folder_item = mainwindow_get_mainwindow()->summaryview->folder_item;
3582 if (folder_item && folder_item->prefs && folder_item->prefs->enable_default_account)
3583 account = account_find_from_id(folder_item->prefs->default_account);
3584 if (folder_item && !account)
3585 account = account_find_from_item(folder_item);
3587 if (mailto)
3588 compose_new_with_folderitem(account, folder_item, mailto+7);
3591 static void mailing_list_open_uri (GtkWidget *w, gpointer *data)
3594 const gchar *mailto;
3596 mailto = gtk_label_get_text(GTK_LABEL (gtk_bin_get_child(GTK_BIN((w)))));
3597 if (mailto)
3598 open_uri (mailto, prefs_common_get_uri_cmd());
3601 static void fix_folderview_scroll(MainWindow *mainwin)
3603 static gboolean fix_done = FALSE;
3605 if (fix_done)
3606 return;
3608 gtk_widget_queue_resize(mainwin->folderview->ctree);
3610 fix_done = TRUE;
3613 void main_window_popup(MainWindow *mainwin)
3615 static gboolean first_start = TRUE;
3617 if (!gtk_widget_get_visible(GTK_WIDGET(mainwin->window)))
3618 main_window_show(mainwin);
3620 if (prefs_common.mainwin_maximised)
3621 gtk_window_maximize(GTK_WINDOW(mainwin->window));
3623 if (first_start) {
3624 first_start = FALSE;
3625 } else {
3626 gtkut_window_popup(mainwin->window);
3629 if (prefs_common.layout_mode == SMALL_LAYOUT) {
3630 if (mainwin->in_folder) {
3631 mainwindow_enter_folder(mainwin);
3632 } else {
3633 mainwindow_exit_folder(mainwin);
3636 fix_folderview_scroll(mainwin);
3639 void main_window_show(MainWindow *mainwin)
3641 gtk_widget_show(mainwin->window);
3642 gtk_widget_show(mainwin->vbox_body);
3643 #ifndef GENERIC_UMPC
3644 gtk_window_move(GTK_WINDOW(mainwin->window),
3645 prefs_common.mainwin_x,
3646 prefs_common.mainwin_y);
3648 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->folderview),
3649 prefs_common.folderview_width,
3650 prefs_common.folderview_height);
3651 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->summaryview),
3652 prefs_common.summaryview_width,
3653 prefs_common.summaryview_height);
3654 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->messageview),
3655 prefs_common.msgview_width,
3656 prefs_common.msgview_height);
3657 #endif
3660 void main_window_hide(MainWindow *mainwin)
3662 main_window_get_size(mainwin);
3663 main_window_get_position(mainwin);
3665 gtk_widget_hide(mainwin->window);
3666 gtk_widget_hide(mainwin->vbox_body);
3669 static void main_window_set_widgets(MainWindow *mainwin, LayoutType layout_mode)
3671 GtkWidget *folderwin = NULL;
3672 GtkWidget *messagewin = NULL;
3673 GtkWidget *hpaned;
3674 GtkWidget *vpaned;
3675 GtkWidget *vbox_body = mainwin->vbox_body;
3676 gboolean first_set = (mainwin->hpaned == NULL);
3677 debug_print("Setting widgets...\n");
3679 #ifndef GENERIC_UMPC
3680 mainwin->messageview->statusbar = mainwin->statusbar;
3681 mainwin->messageview->statusbar_cid = mainwin->messageview_cid;
3682 #endif
3683 /* clean top-most container */
3684 if (mainwin->hpaned) {
3685 if (gtk_widget_get_parent(mainwin->hpaned) == mainwin->vpaned)
3686 gtk_widget_destroy(mainwin->vpaned);
3687 else
3688 gtk_widget_destroy(mainwin->hpaned);
3691 cm_menu_set_sensitive_full(mainwin->ui_manager, "Menu/View/ShowHide/MessageView",
3692 (layout_mode != WIDE_MSGLIST_LAYOUT && layout_mode != SMALL_LAYOUT));
3693 switch (layout_mode) {
3694 case VERTICAL_LAYOUT:
3695 case NORMAL_LAYOUT:
3696 case SMALL_LAYOUT:
3697 hpaned = gtk_hpaned_new();
3698 if (layout_mode == VERTICAL_LAYOUT)
3699 vpaned = gtk_hpaned_new();
3700 else
3701 vpaned = gtk_vpaned_new();
3702 gtk_box_pack_start(GTK_BOX(vbox_body), hpaned, TRUE, TRUE, 0);
3703 gtk_paned_add1(GTK_PANED(hpaned),
3704 GTK_WIDGET_PTR(mainwin->folderview));
3705 gtk_widget_show(hpaned);
3706 gtk_widget_queue_resize(hpaned);
3708 if (messageview_is_visible(mainwin->messageview)) {
3709 gtk_paned_add2(GTK_PANED(hpaned), vpaned);
3710 gtk_paned_pack1(GTK_PANED(vpaned),
3711 GTK_WIDGET_PTR(mainwin->summaryview), TRUE, TRUE);
3712 } else {
3713 gtk_paned_add2(GTK_PANED(hpaned),
3714 GTK_WIDGET_PTR(mainwin->summaryview));
3715 g_object_ref(vpaned);
3717 gtk_paned_add2(GTK_PANED(vpaned),
3718 GTK_WIDGET_PTR(mainwin->messageview));
3719 gtk_widget_show(vpaned);
3720 if (layout_mode == SMALL_LAYOUT && first_set) {
3721 mainwin_paned_show_first(GTK_PANED(hpaned));
3723 gtk_widget_queue_resize(vpaned);
3724 break;
3725 case WIDE_LAYOUT:
3726 vpaned = gtk_vpaned_new();
3727 hpaned = gtk_hpaned_new();
3728 gtk_box_pack_start(GTK_BOX(vbox_body), vpaned, TRUE, TRUE, 0);
3729 gtk_paned_add1(GTK_PANED(vpaned), hpaned);
3731 gtk_paned_add1(GTK_PANED(hpaned),
3732 GTK_WIDGET_PTR(mainwin->folderview));
3733 gtk_paned_add2(GTK_PANED(hpaned),
3734 GTK_WIDGET_PTR(mainwin->summaryview));
3736 gtk_widget_show(hpaned);
3737 gtk_widget_queue_resize(hpaned);
3739 if (messageview_is_visible(mainwin->messageview)) {
3740 gtk_paned_add2(GTK_PANED(vpaned),
3741 GTK_WIDGET_PTR(mainwin->messageview));
3742 } else {
3743 g_object_ref(GTK_WIDGET_PTR(mainwin->messageview));
3745 gtk_widget_show(vpaned);
3746 gtk_widget_queue_resize(vpaned);
3747 break;
3748 case WIDE_MSGLIST_LAYOUT:
3749 vpaned = gtk_vpaned_new();
3750 hpaned = gtk_hpaned_new();
3751 gtk_box_pack_start(GTK_BOX(vbox_body), vpaned, TRUE, TRUE, 0);
3753 gtk_paned_add1(GTK_PANED(vpaned),
3754 GTK_WIDGET_PTR(mainwin->summaryview));
3755 gtk_paned_add1(GTK_PANED(hpaned),
3756 GTK_WIDGET_PTR(mainwin->folderview));
3758 gtk_widget_show(hpaned);
3759 gtk_widget_queue_resize(hpaned);
3761 if (messageview_is_visible(mainwin->messageview)) {
3762 gtk_paned_add2(GTK_PANED(hpaned),
3763 GTK_WIDGET_PTR(mainwin->messageview));
3764 } else {
3765 g_object_ref(GTK_WIDGET_PTR(mainwin->messageview));
3767 gtk_paned_add2(GTK_PANED(vpaned), hpaned);
3769 gtk_widget_show(vpaned);
3770 gtk_widget_queue_resize(vpaned);
3771 break;
3772 default:
3773 g_warning("Unknown layout");
3774 return;
3777 mainwin->hpaned = hpaned;
3778 mainwin->vpaned = vpaned;
3780 if (layout_mode == SMALL_LAYOUT) {
3781 if (mainwin->messageview->visible)
3782 main_window_toggle_message_view(mainwin);
3785 if (layout_mode == SMALL_LAYOUT && first_set) {
3786 gtk_widget_realize(mainwin->window);
3787 gtk_widget_realize(mainwin->folderview->ctree);
3788 gtk_widget_realize(mainwin->summaryview->hbox);
3789 gtk_widget_realize(mainwin->summaryview->hbox_l);
3790 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->folderview),
3791 prefs_common.folderview_width,
3792 prefs_common.folderview_height);
3793 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->summaryview),
3794 0,0);
3795 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->messageview),
3796 0,0);
3797 gtk_widget_set_size_request(GTK_WIDGET(mainwin->window),
3798 prefs_common.mainwin_width,
3799 prefs_common.mainwin_height);
3800 gtk_paned_set_position(GTK_PANED(mainwin->hpaned), 800);
3801 } else {
3802 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->folderview),
3803 prefs_common.folderview_width,
3804 prefs_common.folderview_height);
3805 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->summaryview),
3806 prefs_common.summaryview_width,
3807 prefs_common.summaryview_height);
3808 gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->messageview),
3809 prefs_common.msgview_width,
3810 prefs_common.msgview_height);
3811 gtk_widget_set_size_request(GTK_WIDGET(mainwin->window),
3812 prefs_common.mainwin_width,
3813 prefs_common.mainwin_height);
3815 /* remove headerview if not in prefs */
3816 headerview_set_visibility(mainwin->messageview->headerview,
3817 prefs_common.display_header_pane);
3819 if (messageview_is_visible(mainwin->messageview))
3820 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
3821 GTK_ARROW_DOWN, GTK_SHADOW_OUT);
3822 else
3823 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
3824 GTK_ARROW_UP, GTK_SHADOW_OUT);
3826 gtk_window_move(GTK_WINDOW(mainwin->window),
3827 prefs_common.mainwin_x,
3828 prefs_common.mainwin_y);
3830 gtk_widget_queue_resize(vbox_body);
3831 gtk_widget_queue_resize(mainwin->vbox);
3832 gtk_widget_queue_resize(mainwin->window);
3833 /* CLAWS: previous "gtk_widget_show_all" makes noticeview
3834 * and mimeview icon list/ctree lose track of their visibility states */
3835 if (!noticeview_is_visible(mainwin->messageview->noticeview))
3836 gtk_widget_hide(GTK_WIDGET_PTR(mainwin->messageview->noticeview));
3837 if (!noticeview_is_visible(mainwin->messageview->mimeview->siginfoview))
3838 gtk_widget_hide(GTK_WIDGET_PTR(mainwin->messageview->mimeview->siginfoview));
3839 if (mainwin->messageview->mimeview->ctree_mode)
3840 gtk_widget_hide(mainwin->messageview->mimeview->icon_mainbox);
3841 else
3842 gtk_widget_hide(mainwin->messageview->mimeview->ctree_mainbox);
3844 prefs_common.layout_mode = layout_mode;
3846 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/ShowHide/MessageView",
3847 messageview_is_visible(mainwin->messageview));
3849 #ifndef GENERIC_UMPC
3850 switch (prefs_common.layout_mode) {
3851 case NORMAL_LAYOUT:
3852 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/Standard", TRUE);
3853 break;
3854 case VERTICAL_LAYOUT:
3855 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/ThreeColumns", TRUE);
3856 break;
3857 case WIDE_LAYOUT:
3858 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/WideMessage", TRUE);
3859 break;
3860 case WIDE_MSGLIST_LAYOUT:
3861 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/WideMessageList", TRUE);
3862 break;
3863 case SMALL_LAYOUT:
3864 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Layout/SmallScreen", TRUE);
3865 break;
3867 #endif
3869 if (folderwin) {
3870 g_signal_connect
3871 (G_OBJECT(folderwin), "size_allocate",
3872 G_CALLBACK(folder_window_size_allocate_cb),
3873 mainwin);
3875 if (messagewin) {
3876 g_signal_connect
3877 (G_OBJECT(messagewin), "size_allocate",
3878 G_CALLBACK(message_window_size_allocate_cb),
3879 mainwin);
3882 debug_print("Setting widgets done.\n");
3885 void main_window_destroy_all(void)
3887 while (mainwin_list != NULL) {
3888 MainWindow *mainwin = (MainWindow*)mainwin_list->data;
3890 /* free toolbar stuff */
3891 toolbar_clear_list(TOOLBAR_MAIN);
3892 TOOLBAR_DESTROY_ACTIONS(mainwin->toolbar->action_list);
3893 TOOLBAR_DESTROY_ITEMS(mainwin->toolbar->item_list);
3895 summaryview_destroy(mainwin->summaryview);
3896 mainwin->folderview->mainwin = NULL;
3897 mainwin->summaryview->mainwin = NULL;
3898 mainwin->messageview->mainwin = NULL;
3900 g_free(mainwin->toolbar);
3901 g_free(mainwin);
3903 mainwin_list = g_list_remove(mainwin_list, mainwin);
3905 g_list_free(mainwin_list);
3906 mainwin_list = NULL;
3909 static void toolbar_child_attached(GtkWidget *widget, GtkWidget *child,
3910 gpointer data)
3912 gtk_widget_set_size_request(child, 1, -1);
3915 static void toolbar_child_detached(GtkWidget *widget, GtkWidget *child,
3916 gpointer data)
3918 gtk_widget_set_size_request(child, -1, -1);
3920 #ifndef GENERIC_UMPC
3921 static gboolean ac_label_button_pressed(GtkWidget *widget, GdkEventButton *event,
3922 gpointer data)
3924 MainWindow *mainwin = (MainWindow *)data;
3925 GtkWidget *menu = NULL;
3927 if (!event) return FALSE;
3929 gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
3931 menu = gtk_menu_item_get_submenu(GTK_MENU_ITEM(mainwin->ac_menu));
3933 gtk_menu_popup(GTK_MENU(menu), NULL, NULL,
3934 menu_button_position, widget,
3935 event->button, event->time);
3937 return TRUE;
3939 #endif
3940 static gint main_window_close_cb(GtkWidget *widget, GdkEventAny *event,
3941 gpointer data)
3943 MainWindow *mainwin = (MainWindow *)data;
3944 gboolean close_allowed = TRUE;
3946 hooks_invoke(MAIN_WINDOW_CLOSE, &close_allowed);
3948 if (close_allowed && mainwin->lock_count == 0)
3949 app_exit_cb(NULL, data);
3951 return TRUE;
3954 static void main_window_size_allocate_cb(GtkWidget *widget,
3955 GtkAllocation *allocation,
3956 gpointer data)
3958 MainWindow *mainwin = (MainWindow *)data;
3959 main_window_get_size(mainwin);
3962 static void folder_window_size_allocate_cb(GtkWidget *widget,
3963 GtkAllocation *allocation,
3964 gpointer data)
3966 MainWindow *mainwin = (MainWindow *)data;
3968 main_window_get_size(mainwin);
3971 static void message_window_size_allocate_cb(GtkWidget *widget,
3972 GtkAllocation *allocation,
3973 gpointer data)
3975 MainWindow *mainwin = (MainWindow *)data;
3977 main_window_get_size(mainwin);
3980 static void add_mailbox_cb(GtkAction *action, gpointer data)
3982 MainWindow *mainwin = (MainWindow *)data;
3983 main_window_add_mailbox(mainwin);
3986 static void update_folderview_cb(GtkAction *action, gpointer data)
3988 MainWindow *mainwin = (MainWindow *)data;
3989 summary_show(mainwin->summaryview, NULL);
3990 folderview_check_new_all();
3993 static void foldersort_cb(GtkAction *action, gpointer data)
3995 foldersort_open();
3998 static void import_mbox_cb(GtkAction *action, gpointer data)
4000 MainWindow *mainwin = (MainWindow *)data;
4001 /* only notify if import has failed */
4002 if (import_mbox(mainwin->summaryview->folder_item) == -1) {
4003 alertpanel_error(_("Mbox import has failed."));
4007 static void export_mbox_cb(GtkAction *action, gpointer data)
4009 MainWindow *mainwin = (MainWindow *)data;
4010 /* only notify if export has failed */
4011 if (export_mbox(mainwin->summaryview->folder_item) == -1) {
4012 alertpanel_error(_("Export to mbox has failed."));
4016 static void export_list_mbox_cb(GtkAction *action, gpointer data)
4018 MainWindow *mainwin = (MainWindow *)data;
4019 /* only notify if export has failed */
4020 if (summaryview_export_mbox_list(mainwin->summaryview) == -1) {
4021 alertpanel_error(_("Export to mbox has failed."));
4025 static void empty_trash_cb(GtkAction *action, gpointer data)
4027 MainWindow *mainwin = (MainWindow *)data;
4028 main_window_empty_trash(mainwin, TRUE, FALSE);
4031 static void save_as_cb(GtkAction *action, gpointer data)
4033 MainWindow *mainwin = (MainWindow *)data;
4034 summary_save_as(mainwin->summaryview);
4037 static void print_cb(GtkAction *action, gpointer data)
4039 MainWindow *mainwin = (MainWindow *)data;
4040 summary_print(mainwin->summaryview);
4043 static void page_setup_cb(GtkAction *action, gpointer data)
4045 MainWindow *mainwin = (MainWindow *)data;
4046 GtkWindow *win;
4048 win = (mainwin ? GTK_WINDOW(mainwin->window) : NULL);
4050 printing_page_setup(win);
4053 static void app_exit_cb(GtkAction *action, gpointer data)
4055 MainWindow *mainwin = (MainWindow *)data;
4056 if (prefs_common.clean_on_exit) {
4057 if (!main_window_empty_trash(mainwin, prefs_common.ask_on_clean, TRUE))
4058 return;
4061 if (prefs_common.confirm_on_exit) {
4062 if (alertpanel(_("Exit"), _("Exit Claws Mail?"),
4063 GTK_STOCK_CANCEL, GTK_STOCK_QUIT, NULL)
4064 != G_ALERTALTERNATE)
4065 return;
4066 manage_window_focus_in(mainwin->window, NULL, NULL);
4069 app_will_exit(NULL, mainwin);
4072 static void search_cb(GtkAction *action, gpointer data)
4074 MainWindow *mainwin = (MainWindow *)data;
4075 message_search(mainwin->messageview);
4078 static void search_folder_cb(GtkAction *action, gpointer data)
4080 MainWindow *mainwin = (MainWindow *)data;
4081 FolderItem *item = mainwin->summaryview->folder_item;
4082 cm_return_if_fail(item != NULL);
4083 summary_search(mainwin->summaryview);
4086 static void mainwindow_quicksearch(GtkAction *action, gpointer data)
4088 MainWindow *mainwin = (MainWindow *)data;
4089 summaryview_activate_quicksearch(mainwin->summaryview, TRUE);
4092 static void toggle_message_cb(GtkAction *action, gpointer data)
4094 MainWindow *mainwin = (MainWindow *)data;
4095 gboolean active;
4097 active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
4099 if (active != messageview_is_visible(mainwin->messageview))
4100 summary_toggle_view(mainwin->summaryview);
4103 static void toggle_toolbar_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4105 gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4106 MainWindow *mainwin = (MainWindow *)data;
4107 toolbar_toggle(value, mainwin);
4110 static void main_window_reply_cb(GtkAction *gaction, gpointer data)
4112 MainWindow *mainwin = (MainWindow *)data;
4113 MessageView *msgview = (MessageView*)mainwin->messageview;
4114 GSList *msginfo_list = NULL;
4115 gint action = COMPOSE_REPLY;
4116 const gchar *a_name = gtk_action_get_name(gaction);
4118 DO_ACTION("Message/Reply", COMPOSE_REPLY);
4119 DO_ACTION("Message/ReplyTo/All", COMPOSE_REPLY_TO_ALL);
4120 DO_ACTION("Message/ReplyTo/Sender", COMPOSE_REPLY_TO_SENDER);
4121 DO_ACTION("Message/ReplyTo/List", COMPOSE_REPLY_TO_LIST);
4122 DO_ACTION("Message/Forward", COMPOSE_FORWARD_INLINE);
4123 DO_ACTION("Message/ForwardAtt", COMPOSE_FORWARD_AS_ATTACH);
4124 DO_ACTION("Message/Redirect", COMPOSE_REDIRECT);
4125 DO_ACTION("Message/FollowupReply", COMPOSE_FOLLOWUP_AND_REPLY_TO);
4127 cm_return_if_fail(msgview != NULL);
4129 msginfo_list = summary_get_selection(mainwin->summaryview);
4130 cm_return_if_fail(msginfo_list != NULL);
4131 compose_reply_from_messageview(msgview, msginfo_list, action);
4132 g_slist_free(msginfo_list);
4135 static void toggle_col_headers_cb(GtkAction *gaction, gpointer data)
4137 MainWindow *mainwin = (MainWindow *)data;
4138 FolderView *folderview = mainwin->folderview;
4139 SummaryView *summaryview = mainwin->summaryview;
4140 MimeView *mimeview = mainwin->messageview->mimeview;
4142 if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (gaction))) {
4143 gtk_cmclist_column_titles_show(GTK_CMCLIST(folderview->ctree));
4144 gtk_cmclist_column_titles_show(GTK_CMCLIST(summaryview->ctree));
4145 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(mimeview->ctree), TRUE);
4146 prefs_common.show_col_headers = TRUE;
4147 } else {
4148 gtk_cmclist_column_titles_hide(GTK_CMCLIST(folderview->ctree));
4149 gtk_cmclist_column_titles_hide(GTK_CMCLIST(summaryview->ctree));
4150 gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(mimeview->ctree), FALSE);
4151 prefs_common.show_col_headers = FALSE;
4155 #ifndef GENERIC_UMPC
4156 static void toggle_statusbar_cb(GtkAction *gaction, gpointer data)
4158 MainWindow *mainwin = (MainWindow *)data;
4159 if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (gaction))) {
4160 gtk_widget_show(mainwin->hbox_stat);
4161 prefs_common.show_statusbar = TRUE;
4162 } else {
4163 gtk_widget_hide(mainwin->hbox_stat);
4164 prefs_common.show_statusbar = FALSE;
4168 static void set_layout_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4170 MainWindow *mainwin = (MainWindow *)data;
4171 gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4172 LayoutType layout_mode = value;
4173 LayoutType old_layout_mode = prefs_common.layout_mode;
4174 if (mainwin->menu_lock_count) {
4175 return;
4177 if (!gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current))) {
4178 return;
4181 if (layout_mode == prefs_common.layout_mode) {
4182 return;
4185 if (!mainwin->messageview->visible && layout_mode != SMALL_LAYOUT)
4186 main_window_toggle_message_view(mainwin);
4187 else if (mainwin->messageview->visible && layout_mode == SMALL_LAYOUT)
4188 main_window_toggle_message_view(mainwin);
4190 main_window_separation_change(mainwin, layout_mode);
4191 mainwindow_reset_paned(GTK_PANED(mainwin->vpaned));
4192 if (old_layout_mode == SMALL_LAYOUT && layout_mode != SMALL_LAYOUT) {
4193 mainwindow_reset_paned(GTK_PANED(mainwin->hpaned));
4194 if (layout_mode == VERTICAL_LAYOUT)
4195 mainwindow_reset_paned(GTK_PANED(mainwin->vpaned));
4197 if (old_layout_mode != SMALL_LAYOUT && layout_mode == SMALL_LAYOUT) {
4198 mainwin_paned_show_first(GTK_PANED(mainwin->hpaned));
4199 mainwindow_exit_folder(mainwin);
4201 summary_relayout(mainwin->summaryview);
4202 summary_update_unread(mainwin->summaryview, NULL);
4204 #endif
4206 void main_window_toggle_work_offline (MainWindow *mainwin, gboolean offline,
4207 gboolean ask_sync)
4209 static gboolean switching = FALSE;
4211 if (switching)
4212 return;
4214 switching = TRUE;
4216 offline_ask_sync = ask_sync;
4217 if (offline)
4218 online_switch_clicked (GTK_BUTTON(mainwin->online_switch), mainwin);
4219 else
4220 online_switch_clicked (GTK_BUTTON(mainwin->offline_switch), mainwin);
4221 offline_ask_sync = TRUE;
4223 switching = FALSE;
4226 static void toggle_work_offline_cb (GtkAction *action, gpointer data)
4228 MainWindow *mainwin = (MainWindow *)data;
4229 main_window_toggle_work_offline(mainwin, gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)), TRUE);
4232 static gboolean any_folder_want_synchronise(void)
4234 GList *folderlist = folder_get_list();
4236 /* see if there are synchronised folders */
4237 for (; folderlist; folderlist = folderlist->next) {
4238 Folder *folder = (Folder *)folderlist->data;
4239 if (folder_want_synchronise(folder)) {
4240 return TRUE;
4244 return FALSE;
4247 static void mainwindow_check_synchronise(MainWindow *mainwin, gboolean ask)
4250 if (!any_folder_want_synchronise())
4251 return;
4253 if (offline_ask_sync && ask && alertpanel(_("Folder synchronisation"),
4254 _("Do you want to synchronise your folders now?"),
4255 GTK_STOCK_CANCEL, g_strconcat("+", _("_Synchronise"), NULL), NULL) != G_ALERTALTERNATE)
4256 return;
4258 if (offline_ask_sync)
4259 folder_synchronise(NULL);
4262 static void online_switch_clicked (GtkButton *btn, gpointer data)
4264 MainWindow *mainwin;
4265 gboolean have_connectivity;
4267 #ifdef HAVE_NETWORKMANAGER_SUPPORT
4268 have_connectivity = networkmanager_is_online(NULL);
4269 #else
4270 have_connectivity = TRUE;
4271 #endif
4273 mainwin = (MainWindow *) data;
4275 cm_return_if_fail(mainwin != NULL);
4277 if (btn == GTK_BUTTON(mainwin->online_switch)) {
4278 #ifndef GENERIC_UMPC
4279 gtk_widget_hide (mainwin->online_switch);
4280 gtk_widget_show (mainwin->offline_switch);
4281 #endif
4282 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/File/OfflineMode", TRUE);
4284 inc_autocheck_timer_remove();
4286 /* go offline */
4287 if (prefs_common.work_offline)
4288 return;
4290 if(have_connectivity)
4291 mainwindow_check_synchronise(mainwin, TRUE);
4292 prefs_common.work_offline = TRUE;
4293 imap_disconnect_all(have_connectivity);
4294 nntp_disconnect_all(have_connectivity);
4295 hooks_invoke(OFFLINE_SWITCH_HOOKLIST, NULL);
4296 } else {
4297 /*go online */
4298 if (!prefs_common.work_offline)
4299 return;
4300 #ifndef GENERIC_UMPC
4301 gtk_widget_hide (mainwin->offline_switch);
4302 gtk_widget_show (mainwin->online_switch);
4303 #endif
4304 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/File/OfflineMode", FALSE);
4305 prefs_common.work_offline = FALSE;
4306 inc_autocheck_timer_set();
4307 refresh_resolvers();
4308 hooks_invoke(OFFLINE_SWITCH_HOOKLIST, NULL);
4312 static void addressbook_open_cb(GtkAction *action, gpointer data)
4314 #ifndef USE_ALT_ADDRBOOK
4315 addressbook_open(NULL);
4316 #else
4317 GError* error = NULL;
4319 addressbook_dbus_open(FALSE, &error);
4320 if (error) {
4321 g_warning("Failed to open address book: %s", error->message);
4322 g_error_free(error);
4324 #endif
4327 static void log_window_show_cb(GtkAction *action, gpointer data)
4329 MainWindow *mainwin = (MainWindow *)data;
4330 log_window_show(mainwin->logwin);
4333 static void filtering_debug_window_show_cb(GtkAction *action, gpointer data)
4335 MainWindow *mainwin = (MainWindow *)data;
4336 log_window_show(mainwin->filtering_debugwin);
4339 static void inc_cancel_cb(GtkAction *action, gpointer data)
4341 inc_cancel_all();
4342 imap_cancel_all();
4345 static void send_cancel_cb(GtkAction *action, gpointer data)
4347 send_cancel();
4350 static void move_to_cb(GtkAction *action, gpointer data)
4352 MainWindow *mainwin = (MainWindow *)data;
4353 summary_move_to(mainwin->summaryview);
4356 static void copy_to_cb(GtkAction *action, gpointer data)
4358 MainWindow *mainwin = (MainWindow *)data;
4359 summary_copy_to(mainwin->summaryview);
4362 static void delete_cb(GtkAction *action, gpointer data)
4364 MainWindow *mainwin = (MainWindow *)data;
4365 summary_delete(mainwin->summaryview);
4368 static void delete_trash_cb(GtkAction *action, gpointer data)
4370 MainWindow *mainwin = (MainWindow *)data;
4371 summary_delete_trash(mainwin->summaryview);
4374 static void cancel_cb(GtkAction *action, gpointer data)
4376 MainWindow *mainwin = (MainWindow *)data;
4377 summary_cancel(mainwin->summaryview);
4380 static void open_msg_cb(GtkAction *action, gpointer data)
4382 MainWindow *mainwin = (MainWindow *)data;
4383 summary_open_msg(mainwin->summaryview);
4386 static void view_source_cb(GtkAction *action, gpointer data)
4388 MainWindow *mainwin = (MainWindow *)data;
4389 summary_view_source(mainwin->summaryview);
4392 static void show_all_header_cb(GtkAction *action, gpointer data)
4394 MainWindow *mainwin = (MainWindow *)data;
4395 if (mainwin->menu_lock_count) return;
4396 prefs_common.show_all_headers =
4397 gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
4398 summary_display_msg_selected(mainwin->summaryview,
4399 gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)));
4402 static void toggle_fullscreen_cb(GtkAction *action, gpointer data)
4404 MainWindow *mainwin = (MainWindow *)data;
4405 if (mainwin->menu_lock_count) return;
4406 if (!gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action))) {
4407 gtk_window_unfullscreen(GTK_WINDOW(mainwin->window));
4408 prefs_common.mainwin_fullscreen = FALSE;
4410 else {
4411 prefs_common.mainwin_fullscreen = TRUE;
4412 gtk_window_fullscreen(GTK_WINDOW(mainwin->window));
4416 static void toggle_menubar_cb(GtkAction *action, gpointer data)
4418 MainWindow *mainwin = (MainWindow *)data;
4419 if (mainwin->menu_lock_count) return;
4420 if (!gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action))) {
4421 gtk_widget_hide(GTK_WIDGET(mainwin->menubar));
4422 prefs_common.mainwin_menubar = FALSE;
4423 } else {
4424 gtk_widget_show(GTK_WIDGET(mainwin->menubar));
4425 prefs_common.mainwin_menubar = TRUE;
4429 static void hide_quotes_cb(GtkAction *action, gpointer data)
4431 MainWindow *mainwin = (MainWindow *)data;
4433 if (mainwin->menu_lock_count) return;
4435 if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action))) {
4436 const gchar *a_name = gtk_action_get_name(GTK_ACTION(action));
4437 if (!strcmp(a_name, "View/Quotes/CollapseAll")) prefs_common.hide_quotes = 1;
4438 else if (!strcmp(a_name, "View/Quotes/Collapse2")) prefs_common.hide_quotes = 2;
4439 else if (!strcmp(a_name, "View/Quotes/Collapse3")) prefs_common.hide_quotes = 3;
4440 } else
4441 prefs_common.hide_quotes = 0;
4443 mainwin->menu_lock_count++;
4444 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/CollapseAll", (prefs_common.hide_quotes == 1));
4445 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/Collapse2", (prefs_common.hide_quotes == 2));
4446 cm_toggle_menu_set_active_full(mainwin->ui_manager, "Menu/View/Quotes/Collapse3", (prefs_common.hide_quotes == 3));
4447 mainwin->menu_lock_count--;
4449 summary_redisplay_msg(mainwin->summaryview);
4452 static void mark_cb(GtkAction *action, gpointer data)
4454 MainWindow *mainwin = (MainWindow *)data;
4455 summary_mark(mainwin->summaryview);
4458 static void unmark_cb(GtkAction *action, gpointer data)
4460 MainWindow *mainwin = (MainWindow *)data;
4461 summary_unmark(mainwin->summaryview);
4464 static void mark_as_unread_cb(GtkAction *action, gpointer data)
4466 MainWindow *mainwin = (MainWindow *)data;
4467 summary_mark_as_unread(mainwin->summaryview);
4470 static void mark_as_read_cb(GtkAction *action, gpointer data)
4472 MainWindow *mainwin = (MainWindow *)data;
4473 summary_mark_as_read(mainwin->summaryview);
4476 static void mark_all_read_cb(GtkAction *action, gpointer data)
4478 MainWindow *mainwin = (MainWindow *)data;
4479 summary_mark_all_read(mainwin->summaryview);
4482 static void mark_as_spam_cb(GtkAction *action, gpointer data)
4484 MainWindow *mainwin = (MainWindow *)data;
4485 summary_mark_as_spam(mainwin->summaryview, TRUE, NULL);
4488 static void mark_as_ham_cb(GtkAction *action, gpointer data)
4490 MainWindow *mainwin = (MainWindow *)data;
4491 summary_mark_as_spam(mainwin->summaryview, FALSE, NULL);
4494 static void ignore_thread_cb(GtkAction *action, gpointer data)
4496 MainWindow *mainwin = (MainWindow *)data;
4497 summary_ignore_thread(mainwin->summaryview);
4500 static void unignore_thread_cb(GtkAction *action, gpointer data)
4502 MainWindow *mainwin = (MainWindow *)data;
4503 summary_unignore_thread(mainwin->summaryview);
4506 static void watch_thread_cb(GtkAction *action, gpointer data)
4508 MainWindow *mainwin = (MainWindow *)data;
4509 summary_watch_thread(mainwin->summaryview);
4512 static void unwatch_thread_cb(GtkAction *action, gpointer data)
4514 MainWindow *mainwin = (MainWindow *)data;
4515 summary_unwatch_thread(mainwin->summaryview);
4518 static void lock_msgs_cb(GtkAction *action, gpointer data)
4520 MainWindow *mainwin = (MainWindow *)data;
4521 summary_msgs_lock(mainwin->summaryview);
4524 static void unlock_msgs_cb(GtkAction *action, gpointer data)
4526 MainWindow *mainwin = (MainWindow *)data;
4527 summary_msgs_unlock(mainwin->summaryview);
4531 static void reedit_cb(GtkAction *action, gpointer data)
4533 MainWindow *mainwin = (MainWindow *)data;
4534 summary_reedit(mainwin->summaryview);
4537 static void open_urls_cb(GtkAction *action, gpointer data)
4539 MainWindow *mainwin = (MainWindow *)data;
4540 if (!mainwin->summaryview->displayed && mainwin->summaryview->selected) {
4541 summary_display_msg_selected(mainwin->summaryview,
4542 prefs_common.show_all_headers);
4544 messageview_list_urls(mainwin->messageview);
4547 static void add_address_cb(GtkAction *action, gpointer data)
4549 MainWindow *mainwin = (MainWindow *)data;
4550 summary_add_address(mainwin->summaryview);
4553 static void set_charset_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4555 MainWindow *mainwin = (MainWindow *)data;
4556 gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4557 const gchar *str;
4559 if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current))) {
4560 str = conv_get_charset_str((CharSet)value);
4562 g_free(mainwin->messageview->forced_charset);
4563 mainwin->messageview->forced_charset = str ? g_strdup(str) : NULL;
4564 procmime_force_charset(str);
4566 summary_redisplay_msg(mainwin->summaryview);
4568 debug_print("forced charset: %s\n", str ? str : "Auto-Detect");
4572 static void set_decode_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4574 MainWindow *mainwin = (MainWindow *)data;
4575 gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4576 if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current))) {
4577 mainwin->messageview->forced_encoding = (EncodingType)value;
4579 summary_redisplay_msg(mainwin->summaryview);
4581 debug_print("forced encoding: %d\n", value);
4585 static void hide_read_messages (GtkAction *action, gpointer data)
4587 MainWindow *mainwin = (MainWindow *)data;
4588 GtkWidget *menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/HideReadMessages");
4589 if (!mainwin->summaryview->folder_item
4590 || g_object_get_data(G_OBJECT(menuitem), "dont_toggle"))
4591 return;
4592 summary_toggle_show_read_messages(mainwin->summaryview);
4595 static void hide_del_messages (GtkAction *action, gpointer data)
4597 MainWindow *mainwin = (MainWindow *)data;
4598 GtkWidget *menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/HideDelMessages");
4599 if (!mainwin->summaryview->folder_item
4600 || g_object_get_data(G_OBJECT(menuitem), "dont_toggle"))
4601 return;
4602 summary_toggle_show_del_messages(mainwin->summaryview);
4605 static void hide_read_threads (GtkAction *action, gpointer data)
4607 MainWindow *mainwin = (MainWindow *)data;
4608 GtkWidget *menuitem = gtk_ui_manager_get_widget(mainwin->ui_manager, "/Menu/View/HideReadThreads");
4609 if (!mainwin->summaryview->folder_item
4610 || g_object_get_data(G_OBJECT(menuitem), "dont_toggle"))
4611 return;
4612 summary_toggle_show_read_threads(mainwin->summaryview);
4615 static void thread_cb(GtkAction *action, gpointer data)
4617 MainWindow *mainwin = (MainWindow *)data;
4618 gboolean threaded = FALSE;
4619 if (mainwin->menu_lock_count) return;
4620 if (!mainwin->summaryview->folder_item) return;
4622 threaded = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
4624 mainwin->summaryview->folder_item->threaded = threaded;
4626 mainwin->summaryview->threaded = threaded;
4628 summary_show(mainwin->summaryview,
4629 mainwin->summaryview->folder_item);
4632 static void expand_threads_cb(GtkAction *action, gpointer data)
4634 MainWindow *mainwin = (MainWindow *)data;
4635 summary_expand_threads(mainwin->summaryview);
4638 static void collapse_threads_cb(GtkAction *action, gpointer data)
4640 MainWindow *mainwin = (MainWindow *)data;
4641 summary_collapse_threads(mainwin->summaryview);
4644 static void set_summary_display_item_cb(GtkAction *action, gpointer data)
4646 prefs_summary_column_open();
4649 static void set_folder_display_item_cb(GtkAction *action, gpointer data)
4651 prefs_folder_column_open();
4654 static void sort_summary_cb(GtkAction *action, GtkRadioAction *current, gpointer data)
4656 MainWindow *mainwin = (MainWindow *)data;
4657 FolderItem *item = mainwin->summaryview->folder_item;
4658 gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4660 if (mainwin->menu_lock_count) return;
4662 if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current)) && item) {
4663 summary_sort(mainwin->summaryview, (FolderSortKey)value,
4664 item->sort_type);
4665 item->sort_key = value;
4669 static void sort_summary_type_cb(GtkAction *gaction, GtkRadioAction *current, gpointer data)
4671 MainWindow *mainwin = (MainWindow *)data;
4672 FolderItem *item = mainwin->summaryview->folder_item;
4673 gint value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (current));
4675 if (mainwin->menu_lock_count) return;
4677 if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (current)) && item)
4678 summary_sort(mainwin->summaryview,
4679 item->sort_key, (FolderSortType)value);
4682 static void attract_by_subject_cb(GtkAction *action, gpointer data)
4684 MainWindow *mainwin = (MainWindow *)data;
4685 summary_attract_by_subject(mainwin->summaryview);
4688 static void delete_duplicated_cb(GtkAction *action, gpointer data)
4690 MainWindow *mainwin = (MainWindow *)data;
4691 FolderItem *item;
4693 item = folderview_get_selected_item(mainwin->folderview);
4694 if (item) {
4695 main_window_cursor_wait(mainwin);
4696 STATUSBAR_PUSH(mainwin, _("Deleting duplicated messages..."));
4698 folderutils_delete_duplicates(item, prefs_common.immediate_exec ?
4699 DELETE_DUPLICATES_REMOVE : DELETE_DUPLICATES_SETFLAG);
4701 STATUSBAR_POP(mainwin);
4702 main_window_cursor_normal(mainwin);
4706 struct DelDupsData
4708 guint dups;
4709 guint folders;
4712 static void deldup_all(FolderItem *item, gpointer _data)
4714 struct DelDupsData *data = _data;
4715 gint result;
4717 result = folderutils_delete_duplicates(item, DELETE_DUPLICATES_REMOVE);
4718 if (result >= 0) {
4719 data->dups += result;
4720 data->folders += 1;
4724 static void delete_duplicated_all_cb(GtkAction *action, gpointer mw)
4726 MainWindow *mainwin = (MainWindow *)mw;
4727 struct DelDupsData data = {0, 0};
4729 main_window_cursor_wait(mainwin);
4730 folder_func_to_all_folders(deldup_all, &data);
4731 main_window_cursor_normal(mainwin);
4733 alertpanel_notice(ngettext("Deleted %d duplicate message in %d folders.\n",
4734 "Deleted %d duplicate messages in %d folders.\n",
4735 data.dups),
4736 data.dups, data.folders);
4739 static void filter_cb(GtkAction *action, gpointer data)
4741 MainWindow *mainwin = (MainWindow *)data;
4742 summary_filter(mainwin->summaryview, FALSE);
4745 static void filter_list_cb(GtkAction *action, gpointer data)
4747 MainWindow *mainwin = (MainWindow *)data;
4748 summary_filter(mainwin->summaryview, TRUE);
4751 static void process_cb(GtkAction *action, gpointer data)
4753 MainWindow *mainwin = (MainWindow *)data;
4754 FolderItem *item = mainwin->summaryview->folder_item;
4755 cm_return_if_fail(item != NULL);
4757 item->processing_pending = TRUE;
4758 folder_item_apply_processing(item);
4759 item->processing_pending = FALSE;
4762 static void execute_summary_cb(GtkAction *action, gpointer data)
4764 MainWindow *mainwin = (MainWindow *)data;
4765 summary_execute(mainwin->summaryview);
4768 static void expunge_summary_cb(GtkAction *action, gpointer data)
4770 MainWindow *mainwin = (MainWindow *)data;
4771 summary_expunge(mainwin->summaryview);
4774 static void update_summary_cb(GtkAction *action, gpointer data)
4776 MainWindow *mainwin = (MainWindow *)data;
4777 FolderItem *fitem;
4778 FolderView *folderview = mainwin->folderview;
4780 if (!mainwin->summaryview->folder_item) return;
4781 if ((fitem = folderview_get_opened_item(folderview)) == NULL) return;
4783 folder_update_op_count();
4784 folder_item_scan(fitem);
4785 summary_show(mainwin->summaryview, fitem);
4788 static void prev_cb(GtkAction *action, gpointer data)
4790 MainWindow *mainwin = (MainWindow *)data;
4791 summary_select_prev(mainwin->summaryview);
4794 static void next_cb(GtkAction *action, gpointer data)
4796 MainWindow *mainwin = (MainWindow *)data;
4797 summary_select_next(mainwin->summaryview);
4800 static void prev_unread_cb(GtkAction *action, gpointer data)
4802 MainWindow *mainwin = (MainWindow *)data;
4803 summary_select_prev_unread(mainwin->summaryview);
4806 static void next_unread_cb(GtkAction *action, gpointer data)
4808 MainWindow *mainwin = (MainWindow *)data;
4809 summary_select_next_unread(mainwin->summaryview);
4812 static void prev_new_cb(GtkAction *action, gpointer data)
4814 MainWindow *mainwin = (MainWindow *)data;
4815 summary_select_prev_new(mainwin->summaryview);
4818 static void next_new_cb(GtkAction *action, gpointer data)
4820 MainWindow *mainwin = (MainWindow *)data;
4821 summary_select_next_new(mainwin->summaryview);
4824 static void prev_marked_cb(GtkAction *action, gpointer data)
4826 MainWindow *mainwin = (MainWindow *)data;
4827 summary_select_prev_marked(mainwin->summaryview);
4830 static void next_marked_cb(GtkAction *action, gpointer data)
4832 MainWindow *mainwin = (MainWindow *)data;
4833 summary_select_next_marked(mainwin->summaryview);
4836 static void prev_labeled_cb(GtkAction *action, gpointer data)
4838 MainWindow *mainwin = (MainWindow *)data;
4839 summary_select_prev_labeled(mainwin->summaryview);
4842 static void next_labeled_cb(GtkAction *action, gpointer data)
4844 MainWindow *mainwin = (MainWindow *)data;
4845 summary_select_next_labeled(mainwin->summaryview);
4848 static void prev_history_cb(GtkAction *action, gpointer data)
4850 MainWindow *mainwin = (MainWindow *)data;
4851 MsgInfo *info = messageview_nav_get_prev(mainwin->messageview);
4852 if (info) {
4853 if (info->folder != mainwin->summaryview->folder_item)
4854 folderview_select(mainwin->folderview, info->folder);
4855 summary_display_by_msgnum(mainwin->summaryview, info->msgnum);
4856 summary_display_msg_selected(mainwin->summaryview, FALSE);
4857 procmsg_msginfo_free(&info);
4858 main_window_set_menu_sensitive(mainwindow_get_mainwindow());
4859 toolbar_main_set_sensitive(mainwindow_get_mainwindow());
4863 static void next_history_cb(GtkAction *action, gpointer data)
4865 MainWindow *mainwin = (MainWindow *)data;
4866 MsgInfo *info = messageview_nav_get_next(mainwin->messageview);
4867 if (info) {
4868 if (info->folder != mainwin->summaryview->folder_item)
4869 folderview_select(mainwin->folderview, info->folder);
4870 summary_display_by_msgnum(mainwin->summaryview, info->msgnum);
4871 procmsg_msginfo_free(&info);
4872 main_window_set_menu_sensitive(mainwindow_get_mainwindow());
4873 toolbar_main_set_sensitive(mainwindow_get_mainwindow());
4877 static void parent_cb(GtkAction *action, gpointer data)
4879 MainWindow *mainwin = (MainWindow *)data;
4880 summary_select_parent(mainwin->summaryview);
4883 static void goto_folder_cb(GtkAction *action, gpointer data)
4885 MainWindow *mainwin = (MainWindow *)data;
4886 FolderItem *to_folder;
4888 to_folder = foldersel_folder_sel(NULL, FOLDER_SEL_ALL, NULL, FALSE);
4890 if (to_folder)
4891 folderview_select(mainwin->folderview, to_folder);
4894 static void goto_unread_folder_cb(GtkAction *action, gpointer data)
4896 MainWindow *mainwin = (MainWindow *)data;
4897 folderview_select_next_with_flag(mainwin->folderview, MSG_UNREAD);
4900 static void scroll_prev_line_cb(GtkAction *action, gpointer data)
4902 MainWindow *mainwin = (MainWindow *)data;
4903 mimeview_scroll_one_line(mainwin->messageview->mimeview,TRUE);
4906 static void scroll_next_line_cb(GtkAction *action, gpointer data)
4908 MainWindow *mainwin = (MainWindow *)data;
4909 mimeview_scroll_one_line(mainwin->messageview->mimeview,FALSE);
4912 static void scroll_prev_page_cb(GtkAction *action, gpointer data)
4914 MainWindow *mainwin = (MainWindow *)data;
4915 mimeview_scroll_page(mainwin->messageview->mimeview,TRUE);
4918 static void scroll_next_page_cb(GtkAction *action, gpointer data)
4920 MainWindow *mainwin = (MainWindow *)data;
4921 mimeview_scroll_page(mainwin->messageview->mimeview,FALSE);
4924 static void copy_cb(GtkAction *action, gpointer data)
4926 MainWindow *mainwin = (MainWindow *)data;
4927 messageview_copy_clipboard(mainwin->messageview);
4930 static void allsel_cb(GtkAction *action, gpointer data)
4932 MainWindow *mainwin = (MainWindow *)data;
4933 MessageView *msgview = mainwin->messageview;
4935 if (messageview_is_visible(msgview) &&
4936 (gtk_widget_has_focus(msgview->mimeview->textview->text)))
4937 messageview_select_all(mainwin->messageview);
4938 else
4939 summary_select_all(mainwin->summaryview);
4942 static void select_thread_cb(GtkAction *action, gpointer data)
4944 MainWindow *mainwin = (MainWindow *)data;
4945 summary_select_thread(mainwin->summaryview, FALSE, FALSE);
4948 static void trash_thread_cb(GtkAction *action, gpointer data)
4950 MainWindow *mainwin = (MainWindow *)data;
4951 summary_select_thread(mainwin->summaryview, FALSE, TRUE);
4954 static void delete_thread_cb(GtkAction *action, gpointer data)
4956 MainWindow *mainwin = (MainWindow *)data;
4957 summary_select_thread(mainwin->summaryview, TRUE, FALSE);
4960 static void create_filter_cb(GtkAction *gaction, gpointer data)
4962 MainWindow *mainwin = (MainWindow *)data;
4963 const gchar *a_name = gtk_action_get_name(gaction);
4964 gint action = -1;
4966 DO_ACTION("Tools/CreateFilterRule/Automatically", FILTER_BY_AUTO);
4967 DO_ACTION("Tools/CreateFilterRule/ByFrom", FILTER_BY_FROM);
4968 DO_ACTION("Tools/CreateFilterRule/ByTo", FILTER_BY_TO);
4969 DO_ACTION("Tools/CreateFilterRule/BySubject", FILTER_BY_SUBJECT);
4970 summary_filter_open(mainwin->summaryview, (PrefsFilterType)action, 0);
4973 static void create_processing_cb(GtkAction *gaction, gpointer data)
4975 MainWindow *mainwin = (MainWindow *)data;
4976 const gchar *a_name = gtk_action_get_name(gaction);
4977 gint action = -1;
4979 DO_ACTION("Tools/CreateProcessingRule/Automatically", FILTER_BY_AUTO);
4980 DO_ACTION("Tools/CreateProcessingRule/ByFrom", FILTER_BY_FROM);
4981 DO_ACTION("Tools/CreateProcessingRule/ByTo", FILTER_BY_TO);
4982 DO_ACTION("Tools/CreateProcessingRule/BySubject", FILTER_BY_SUBJECT);
4983 summary_filter_open(mainwin->summaryview, (PrefsFilterType)action, 1);
4986 static void prefs_pre_processing_open_cb(GtkAction *action, gpointer data)
4988 prefs_filtering_open(&pre_global_processing,
4989 _("Processing rules to apply before folder rules"),
4990 MANUAL_ANCHOR_PROCESSING,
4991 NULL, NULL, FALSE);
4994 static void prefs_post_processing_open_cb(GtkAction *action, gpointer data)
4996 prefs_filtering_open(&post_global_processing,
4997 _("Processing rules to apply after folder rules"),
4998 MANUAL_ANCHOR_PROCESSING,
4999 NULL, NULL, FALSE);
5002 static void prefs_filtering_open_cb(GtkAction *action, gpointer data)
5004 prefs_filtering_open(&filtering_rules,
5005 _("Filtering configuration"),
5006 MANUAL_ANCHOR_FILTERING,
5007 NULL, NULL, TRUE);
5010 static void prefs_template_open_cb(GtkAction *action, gpointer data)
5012 prefs_template_open();
5015 static void prefs_actions_open_cb(GtkAction *action, gpointer data)
5017 MainWindow *mainwin = (MainWindow *)data;
5018 prefs_actions_open(mainwin);
5021 static void prefs_tags_open_cb(GtkAction *action, gpointer data)
5023 MainWindow *mainwin = (MainWindow *)data;
5024 GSList * list = summary_get_selected_msg_list(mainwin->summaryview);
5025 tag_apply_open(list);
5027 #ifdef USE_GNUTLS
5028 static void ssl_manager_open_cb(GtkAction *action, gpointer data)
5030 MainWindow *mainwin = (MainWindow *)data;
5031 ssl_manager_open(mainwin);
5033 #endif
5034 static void prefs_account_open_cb(GtkAction *action, gpointer data)
5036 MainWindow *mainwin = (MainWindow *)data;
5037 if (!cur_account) {
5038 new_account_cb(NULL, mainwin);
5039 } else {
5040 account_open(cur_account);
5044 static void new_account_cb(GtkAction *action, gpointer data)
5046 account_edit_open(NULL, NULL);
5047 if (!compose_get_compose_list()) account_add();
5050 static void account_selector_menu_cb(GtkMenuItem *menuitem, gpointer data)
5052 FolderItem *item = NULL;
5053 cur_account = (PrefsAccount *)data;
5055 if (!mainwindow_get_mainwindow())
5056 return;
5057 main_window_show_cur_account(mainwindow_get_mainwindow());
5058 toolbar_update(TOOLBAR_MAIN, mainwindow_get_mainwindow());
5059 main_window_set_menu_sensitive(mainwindow_get_mainwindow());
5060 toolbar_main_set_sensitive(mainwindow_get_mainwindow());
5061 item = folderview_get_selected_item(
5062 mainwindow_get_mainwindow()->folderview);
5063 if (item) {
5064 toolbar_set_compose_button
5065 (mainwindow_get_mainwindow()->toolbar,
5066 FOLDER_TYPE(item->folder) == F_NEWS ?
5067 COMPOSEBUTTON_NEWS : COMPOSEBUTTON_MAIL);
5071 static void account_receive_menu_cb(GtkMenuItem *menuitem, gpointer data)
5073 MainWindow *mainwin = (MainWindow *)mainwin_list->data;
5074 PrefsAccount *account = (PrefsAccount *)data;
5076 inc_account_mail(mainwin, account);
5078 #ifndef GENERIC_UMPC
5079 static void account_compose_menu_cb(GtkMenuItem *menuitem, gpointer data)
5081 PrefsAccount *account = (PrefsAccount *)data;
5083 compose_new_with_folderitem(account, NULL, NULL);
5085 #endif
5086 static void prefs_open_cb(GtkAction *action, gpointer data)
5088 prefs_gtk_open();
5091 static void plugins_open_cb(GtkAction *action, gpointer data)
5093 pluginwindow_create();
5096 static void manual_open_cb(GtkAction *action, gpointer data)
5098 manual_open(MANUAL_MANUAL_CLAWS, NULL);
5101 static void manual_faq_open_cb(GtkAction *action, gpointer data)
5103 manual_open(MANUAL_FAQ_CLAWS, NULL);
5106 static void legend_open_cb(GtkAction *action, gpointer data)
5108 legend_show();
5111 #ifdef G_OS_WIN32
5112 static void set_default_client_cb(GtkAction *action, gpointer data)
5114 char exename[MAX_PATH];
5115 gchar *binary_icon = NULL;
5116 gchar *binary_compose = NULL;
5117 gchar *binary_run = NULL;
5118 int r = 0;
5119 if ( !GetModuleFileNameA (0, exename, sizeof (exename)) ) {
5120 alertpanel_error(_("Can not register as default client: impossible to get executable path."));
5121 return;
5123 binary_icon = g_strconcat(exename, ",0", NULL);
5124 binary_compose = g_strconcat(exename, " --compose %1", NULL);
5125 binary_run = g_strconcat(exename, NULL);
5127 /* Try to set the Mail Start menu item to Claws. It may fail if we're not root; we don't care */
5128 r = write_w32_registry_string("HKLM", "Software\\Clients\\Mail",
5129 "", "Claws Mail");
5131 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail",
5132 "", "Claws Mail");
5133 if (!r)
5134 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail",
5135 "DLLPath", "");
5136 if (!r)
5137 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto",
5138 "", "URL:MailTo-Protocol");
5139 if (!r)
5140 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto",
5141 "URL Protocol", "");
5142 if (!r)
5143 r = write_w32_registry_dword ("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto",
5144 "EditFlags", 2);
5145 if (!r)
5146 r = write_w32_registry_string ("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto",
5147 "FriendlyTypeName", "Claws-Mail URL");
5148 if (!r)
5149 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto\\DefaultIcon",
5150 "", binary_icon);
5151 if (!r)
5152 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\Protocols\\mailto\\shell\\open\\command",
5153 "", binary_compose);
5154 if (!r)
5155 r = write_w32_registry_string("HKCU", "Software\\Clients\\Mail\\Claws Mail\\shell\\open\\command",
5156 "", binary_run);
5158 if (!r)
5159 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto",
5160 "", "URL:MailTo-Protocol");
5161 if (!r)
5162 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto",
5163 "URL Protocol", "");
5164 if (!r)
5165 r = write_w32_registry_dword ("HKCU", "Software\\Classes\\mailto",
5166 "EditFlags", 2);
5167 if (!r)
5168 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto",
5169 "FriendlyTypeName", "Claws-Mail URL");
5170 if (!r)
5171 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto\\DefaultIcon",
5172 "", binary_icon);
5173 if (!r)
5174 r = write_w32_registry_string("HKCU", "Software\\Classes\\mailto\\shell\\open\\command",
5175 "", binary_compose);
5177 if (!r) {
5178 SendMessage(HWND_BROADCAST, WM_SETTINGCHANGE, 0, (LPARAM)"Software\\Clients\\Mail");
5179 alertpanel_notice(_("Claws Mail has been registered as default client."));
5180 } else {
5181 alertpanel_error(_("Can not register as default client: impossible to write to the registry."));
5183 g_free(binary_icon);
5184 g_free(binary_compose);
5185 g_free(binary_run);
5187 #endif
5189 static void scan_tree_func(Folder *folder, FolderItem *item, gpointer data)
5191 MainWindow *mainwin = (MainWindow *)data;
5192 gchar *str;
5194 if (item->path)
5195 str = g_strdup_printf(_("Scanning folder %s%c%s..."),
5196 LOCAL_FOLDER(folder)->rootpath,
5197 G_DIR_SEPARATOR,
5198 item->path);
5199 else
5200 str = g_strdup_printf(_("Scanning folder %s..."),
5201 LOCAL_FOLDER(folder)->rootpath);
5203 STATUSBAR_PUSH(mainwin, str);
5204 STATUSBAR_POP(mainwin);
5205 g_free(str);
5208 static gboolean mainwindow_focus_in_event(GtkWidget *widget, GdkEventFocus *focus,
5209 gpointer data)
5211 SummaryView *summary;
5213 cm_return_val_if_fail(data, FALSE);
5214 if (!g_list_find(mainwin_list, data))
5215 return TRUE;
5216 summary = ((MainWindow *)data)->summaryview;
5217 cm_return_val_if_fail(summary, FALSE);
5219 if (GTK_CMCLIST(summary->ctree)->selection &&
5220 g_list_length(GTK_CMCLIST(summary->ctree)->selection) > 1)
5221 return FALSE;
5223 return FALSE;
5226 static gboolean mainwindow_visibility_event_cb(GtkWidget *widget, GdkEventVisibility *event,
5227 gpointer data)
5229 is_obscured = (event->state == GDK_VISIBILITY_FULLY_OBSCURED);
5230 return FALSE;
5233 static gboolean mainwindow_state_event_cb(GtkWidget *widget, GdkEventWindowState *state,
5234 gpointer data)
5236 if (!claws_is_starting()
5237 && state->changed_mask&GDK_WINDOW_STATE_ICONIFIED
5238 && state->new_window_state&GDK_WINDOW_STATE_ICONIFIED) {
5240 if (iconified_count > 0)
5241 hooks_invoke(MAIN_WINDOW_GOT_ICONIFIED, NULL);
5242 iconified_count++;
5243 } else if (!claws_is_starting()) {
5244 prefs_common.mainwin_maximised =
5245 ((state->new_window_state&GDK_WINDOW_STATE_MAXIMIZED) != 0);
5247 if (state->new_window_state == 0)
5248 gtk_window_set_skip_taskbar_hint(GTK_WINDOW(widget), FALSE);
5249 return FALSE;
5252 gboolean mainwindow_is_obscured(void)
5254 return is_obscured;
5258 * Harvest addresses for selected folder.
5260 static void addr_harvest_cb( GtkAction *action, gpointer data)
5262 MainWindow *mainwin = (MainWindow *)data;
5264 addressbook_harvest( mainwin->summaryview->folder_item, FALSE, NULL );
5268 * Harvest addresses for selected messages in summary view.
5270 static void addr_harvest_msg_cb( GtkAction *action, gpointer data)
5272 MainWindow *mainwin = (MainWindow *)data;
5273 summary_harvest_address( mainwin->summaryview );
5277 *\brief get a MainWindow
5279 *\return MainWindow * The first mainwindow in the mainwin_list
5281 MainWindow *mainwindow_get_mainwindow(void)
5283 if (mainwin_list && mainwin_list->data)
5284 return (MainWindow *)(mainwin_list->data);
5285 else
5286 return NULL;
5289 static gboolean mainwindow_progressindicator_hook(gpointer source, gpointer userdata)
5291 ProgressData *data = (ProgressData *) source;
5292 MainWindow *mainwin = (MainWindow *) userdata;
5294 switch (data->cmd) {
5295 case PROGRESS_COMMAND_START:
5296 case PROGRESS_COMMAND_STOP:
5297 gtk_progress_bar_set_fraction
5298 (GTK_PROGRESS_BAR(mainwin->progressbar), 0.0);
5299 break;
5300 case PROGRESS_COMMAND_SET_PERCENTAGE:
5301 gtk_progress_bar_set_fraction
5302 (GTK_PROGRESS_BAR(mainwin->progressbar), data->value);
5303 break;
5305 while (gtk_events_pending()) gtk_main_iteration ();
5307 return FALSE;
5310 static void sync_cb(GtkAction *action, gpointer data)
5312 MainWindow *mainwin = (MainWindow *)data;
5313 mainwindow_check_synchronise(mainwin, FALSE);
5316 static void forget_session_passwords_cb(GtkAction *action, gpointer data)
5318 MainWindow *mainwin = (MainWindow *)data;
5319 GList *list = NULL;
5320 gint fgtn = 0;
5321 gint accs = 0;
5323 main_window_lock(mainwin);
5324 for (list = account_get_list(); list != NULL; list = list->next) {
5325 PrefsAccount *account = list->data;
5326 if (account->session_passwd) {
5327 g_free(account->session_passwd);
5328 account->session_passwd = NULL;
5329 ++fgtn;
5331 if (account->session_smtp_passwd) {
5332 g_free(account->session_smtp_passwd);
5333 account->session_smtp_passwd = NULL;
5334 ++fgtn;
5336 ++accs;
5338 main_window_unlock(mainwin);
5339 alertpanel_notice(ngettext("Forgotten %d password in %d accounts.\n",
5340 "Forgotten %d passwords in %d accounts.\n",
5341 fgtn), fgtn, accs);
5344 #ifndef PASSWORD_CRYPTO_OLD
5345 static void forget_master_passphrase_cb(GtkAction *action, gpointer data)
5347 MainWindow *mainwin = (MainWindow *)data;
5349 main_window_lock(mainwin);
5350 master_passphrase_forget();
5351 main_window_unlock(mainwin);
5353 #endif
5355 void mainwindow_learn (MainWindow *mainwin, gboolean is_spam)
5357 summary_mark_as_spam(mainwin->summaryview, is_spam, NULL);
5360 void mainwindow_jump_to(const gchar *target, gboolean popup)
5362 gchar *tmp = NULL;
5363 gchar *p = NULL;
5364 FolderItem *item = NULL;
5365 gchar *msg = NULL;
5366 MainWindow *mainwin = mainwindow_get_mainwindow();
5367 gchar *from_uri = NULL;
5368 if (!target)
5369 return;
5371 if (!mainwin) {
5372 g_print("not initialized\n");
5373 return;
5376 if ((from_uri = g_filename_from_uri(target, NULL, NULL)) != NULL)
5377 tmp = from_uri;
5378 else
5379 tmp = g_strdup(target);
5381 if ((p = strstr(tmp, "\r")) != NULL)
5382 *p = '\0';
5383 if ((p = strstr(tmp, "\n")) != NULL)
5384 *p = '\0';
5386 if ((item = folder_find_item_from_identifier(tmp))) {
5387 g_print("selecting folder '%s'\n", tmp);
5388 folderview_select(mainwin->folderview, item);
5389 if (popup)
5390 main_window_popup(mainwin);
5391 g_free(tmp);
5392 return;
5395 msg = strrchr(tmp, '/');
5396 if (msg) {
5397 *msg++ = '\0';
5398 if ((item = folder_find_item_from_identifier(tmp))) {
5399 g_print("selecting folder '%s'\n", tmp);
5400 folderview_select(mainwin->folderview, item);
5401 } else if ((item = folder_find_item_from_real_path(tmp))) {
5402 g_print("selecting folder '%s'\n", tmp);
5403 folderview_select(mainwin->folderview, item);
5404 } else {
5405 g_print("'%s' not found\n", tmp);
5407 if (item && msg && atoi(msg)) {
5408 g_print("selecting message %d\n", atoi(msg));
5409 summary_select_by_msgnum(mainwin->summaryview, atoi(msg));
5410 summary_display_msg_selected(mainwin->summaryview, FALSE);
5411 if (popup)
5412 main_window_popup(mainwin);
5413 g_free(tmp);
5414 return;
5415 } else if (item && msg[0] == '<' && msg[strlen(msg)-1] == '>') {
5416 MsgInfo *msginfo = NULL;
5417 msg++;
5418 msg[strlen(msg)-1] = '\0';
5419 msginfo = folder_item_get_msginfo_by_msgid(item, msg);
5420 if (msginfo) {
5421 g_print("selecting message %s\n", msg);
5422 summary_select_by_msgnum(mainwin->summaryview, msginfo->msgnum);
5423 summary_display_msg_selected(mainwin->summaryview, FALSE);
5424 if (popup)
5425 main_window_popup(mainwin);
5426 g_free(tmp);
5427 procmsg_msginfo_free(&msginfo);
5428 return;
5429 } else {
5430 g_print("'%s' not found\n", msg);
5432 } else {
5433 g_print("'%s' not found\n", msg);
5435 } else {
5436 g_print("'%s' not found\n", tmp);
5439 g_free(tmp);
5442 void mainwindow_exit_folder(MainWindow *mainwin) {
5443 if (prefs_common.layout_mode == SMALL_LAYOUT) {
5444 folderview_close_opened(mainwin->folderview, FALSE);
5445 mainwin_paned_show_first(GTK_PANED(mainwin->hpaned));
5446 folderview_grab_focus(mainwin->folderview);
5448 mainwin->in_folder = FALSE;
5449 main_window_set_menu_sensitive(mainwin);
5452 void mainwindow_enter_folder(MainWindow *mainwin) {
5453 if (prefs_common.layout_mode == SMALL_LAYOUT) {
5454 mainwin_paned_show_last(GTK_PANED(mainwin->hpaned));
5456 mainwin->in_folder = TRUE;
5457 main_window_set_menu_sensitive(mainwin);
5460 static void save_part_as_cb(GtkAction *action, gpointer data)
5462 MainWindow *mainwin = (MainWindow *)data;
5464 if (mainwin->messageview
5465 && mainwin->messageview->mimeview)
5466 mimeview_save_as(mainwin->messageview->mimeview);
5469 static void view_part_as_text_cb(GtkAction *action, gpointer data)
5471 MainWindow *mainwin = (MainWindow *)data;
5473 if (mainwin->messageview
5474 && mainwin->messageview->mimeview)
5475 mimeview_display_as_text(mainwin->messageview->mimeview);
5478 static void open_part_cb(GtkAction *action, gpointer data)
5480 MainWindow *mainwin = (MainWindow *)data;
5482 if (mainwin->messageview
5483 && mainwin->messageview->mimeview)
5484 mimeview_launch(mainwin->messageview->mimeview, NULL);
5486 #ifndef G_OS_WIN32
5487 static void open_part_with_cb(GtkAction *action, gpointer data)
5489 MainWindow *mainwin = (MainWindow *)data;
5491 if (mainwin->messageview
5492 && mainwin->messageview->mimeview)
5493 mimeview_open_with(mainwin->messageview->mimeview);
5495 #endif
5496 static void check_signature_cb(GtkAction *action, gpointer data)
5498 MainWindow *mainwin = (MainWindow *)data;
5500 if (mainwin->messageview
5501 && mainwin->messageview->mimeview)
5502 mimeview_check_signature(mainwin->messageview->mimeview);
5505 static void goto_next_part_cb(GtkAction *action, gpointer data)
5507 MainWindow *mainwin = (MainWindow *)data;
5509 if (mainwin->messageview
5510 && mainwin->messageview->mimeview)
5511 mimeview_select_next_part(mainwin->messageview->mimeview);
5514 static void goto_prev_part_cb(GtkAction *action, gpointer data)
5516 MainWindow *mainwin = (MainWindow *)data;
5518 if (mainwin->messageview
5519 && mainwin->messageview->mimeview)
5520 mimeview_select_prev_part(mainwin->messageview->mimeview);