e8155fbb67aa1171902b67f6d6d8524bab1077fc
[claws.git] / src / mainwindow.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2005 Hiroyuki Yamamoto
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #include "defs.h"
21
22 #include <glib.h>
23 #include <glib/gi18n.h>
24 #include <gdk/gdkkeysyms.h>
25 #include <gtk/gtkmain.h>
26 #include <gtk/gtkwindow.h>
27 #include <gtk/gtkwidget.h>
28 #include <gtk/gtksignal.h>
29 #include <gtk/gtkvbox.h>
30 #include <gtk/gtkcontainer.h>
31 #include <gtk/gtkstatusbar.h>
32 #include <gtk/gtkprogressbar.h>
33 #include <gtk/gtkhpaned.h>
34 #include <gtk/gtkvpaned.h>
35 #include <gtk/gtkcheckmenuitem.h>
36 #include <gtk/gtkitemfactory.h>
37 #include <gtk/gtkeditable.h>
38 #include <gtk/gtkmenu.h>
39 #include <gtk/gtkmenuitem.h>
40 #include <gtk/gtkhandlebox.h>
41 #include <gtk/gtktoolbar.h>
42 #include <gtk/gtkbutton.h>
43 #include <gtk/gtktooltips.h>
44 #include <string.h>
45
46 #include "main.h"
47 #include "mainwindow.h"
48 #include "folderview.h"
49 #include "foldersel.h"
50 #include "summaryview.h"
51 #include "summary_search.h"
52 #include "messageview.h"
53 #include "message_search.h"
54 #include "headerview.h"
55 #include "menu.h"
56 #include "stock_pixmap.h"
57 #include "folder.h"
58 #include "inc.h"
59 #include "compose.h"
60 #include "procmsg.h"
61 #include "import.h"
62 #include "export.h"
63 #include "prefs_common.h"
64 #include "prefs_actions.h"
65 #include "prefs_filtering.h"
66 #include "prefs_account.h"
67 #include "prefs_summary_column.h"
68 #include "prefs_folder_column.h"
69 #include "prefs_template.h"
70 #include "action.h"
71 #include "account.h"
72 #include "addressbook.h"
73 #include "logwindow.h"
74 #include "manage_window.h"
75 #include "alertpanel.h"
76 #include "statusbar.h"
77 #include "inputdialog.h"
78 #include "utils.h"
79 #include "gtkutils.h"
80 #include "codeconv.h"
81 #include "about.h"
82 #include "manual.h"
83 #include "version.h"
84 #include "ssl_manager.h"
85 #include "sslcertwindow.h"
86 #include "prefs_gtk.h"
87 #include "pluginwindow.h"
88 #include "hooks.h"
89 #include "progressindicator.h"
90 #include "localfolder.h"
91 #include "filtering.h"
92 #include "folderutils.h"
93 #include "foldersort.h"
94
95 #define AC_LABEL_WIDTH  240
96
97 /* list of all instantiated MainWindow */
98 static GList *mainwin_list = NULL;
99
100 static GdkCursor *watch_cursor;
101
102 static void main_window_menu_callback_block     (MainWindow     *mainwin);
103 static void main_window_menu_callback_unblock   (MainWindow     *mainwin);
104
105 static void main_window_show_cur_account        (MainWindow     *mainwin);
106
107 static void main_window_set_widgets             (MainWindow     *mainwin,
108                                                  SeparateType    type);
109
110 #if 0
111 static gboolean toolbar_account_button_pressed  (GtkWidget      *widget,
112                                                  GdkEventButton *event,
113                                                  gpointer        data);
114 #endif
115
116 static void toolbar_child_attached              (GtkWidget      *widget,
117                                                  GtkWidget      *child,
118                                                  gpointer        data);
119 static void toolbar_child_detached              (GtkWidget      *widget,
120                                                  GtkWidget      *child,
121                                                  gpointer        data);
122
123 static gboolean ac_label_button_pressed         (GtkWidget      *widget,
124                                                  GdkEventButton *event,
125                                                  gpointer        data);
126
127 static gint main_window_close_cb                (GtkWidget      *widget,
128                                                  GdkEventAny    *event,
129                                                  gpointer        data);
130 static gint folder_window_close_cb              (GtkWidget      *widget,
131                                                  GdkEventAny    *event,
132                                                  gpointer        data);
133 static gint message_window_close_cb             (GtkWidget      *widget,
134                                                  GdkEventAny    *event,
135                                                  gpointer        data);
136
137 static void main_window_size_allocate_cb        (GtkWidget      *widget,
138                                                  GtkAllocation  *allocation,
139                                                  gpointer        data);
140 static void folder_window_size_allocate_cb      (GtkWidget      *widget,
141                                                  GtkAllocation  *allocation,
142                                                  gpointer        data);
143 static void message_window_size_allocate_cb     (GtkWidget      *widget,
144                                                  GtkAllocation  *allocation,
145                                                  gpointer        data);
146
147 static void update_folderview_cb (MainWindow    *mainwin,
148                                   guint          action,
149                                   GtkWidget     *widget);
150 static void add_mailbox_cb       (MainWindow    *mainwin,
151                                   guint          action,
152                                   GtkWidget     *widget);
153 static void foldersort_cb        (MainWindow    *mainwin,
154                                   guint          action,
155                                   GtkWidget     *widget);
156 static void import_mbox_cb       (MainWindow    *mainwin,
157                                   guint          action,
158                                   GtkWidget     *widget);
159 static void export_mbox_cb       (MainWindow    *mainwin,
160                                   guint          action,
161                                   GtkWidget     *widget);
162 static void export_list_mbox_cb  (MainWindow    *mainwin, 
163                                   guint          action,
164                                   GtkWidget     *widget);
165 static void empty_trash_cb       (MainWindow    *mainwin,
166                                   guint          action,
167                                   GtkWidget     *widget);
168
169 static void save_as_cb           (MainWindow    *mainwin,
170                                   guint          action,
171                                   GtkWidget     *widget);
172 static void print_cb             (MainWindow    *mainwin,
173                                   guint          action,
174                                   GtkWidget     *widget);
175 static void app_exit_cb          (MainWindow    *mainwin,
176                                   guint          action,
177                                   GtkWidget     *widget);
178
179 static void search_cb            (MainWindow    *mainwin,
180                                   guint          action,
181                                   GtkWidget     *widget);
182
183 static void toggle_folder_cb     (MainWindow    *mainwin,
184                                   guint          action,
185                                   GtkWidget     *widget);
186 static void toggle_message_cb    (MainWindow    *mainwin,
187                                   guint          action,
188                                   GtkWidget     *widget);
189 static void toggle_toolbar_cb    (MainWindow    *mainwin,
190                                   guint          action,
191                                   GtkWidget     *widget);
192 static void toggle_statusbar_cb  (MainWindow    *mainwin,
193                                   guint          action,
194                                   GtkWidget     *widget);
195 static void separate_widget_cb   (MainWindow    *mainwin,
196                                   guint          action,
197                                   GtkWidget     *widget);
198
199 static void addressbook_open_cb (MainWindow     *mainwin,
200                                  guint           action,
201                                  GtkWidget      *widget);
202 static void log_window_show_cb  (MainWindow     *mainwin,
203                                  guint           action,
204                                  GtkWidget      *widget);
205
206 static void inc_cancel_cb               (MainWindow     *mainwin,
207                                          guint           action,
208                                          GtkWidget      *widget);
209
210 static void open_msg_cb                 (MainWindow     *mainwin,
211                                          guint           action,
212                                          GtkWidget      *widget);
213
214 static void view_source_cb              (MainWindow     *mainwin,
215                                          guint           action,
216                                          GtkWidget      *widget);
217
218 static void show_all_header_cb          (MainWindow     *mainwin,
219                                          guint           action,
220                                          GtkWidget      *widget);
221
222 static void move_to_cb                  (MainWindow     *mainwin,
223                                          guint           action,
224                                          GtkWidget      *widget);
225 static void copy_to_cb                  (MainWindow     *mainwin,
226                                          guint           action,
227                                          GtkWidget      *widget);
228 static void delete_cb                   (MainWindow     *mainwin,
229                                          guint           action,
230                                          GtkWidget      *widget);
231 static void delete_trash_cb                     (MainWindow     *mainwin,
232                                          guint           action,
233                                          GtkWidget      *widget);
234
235 static void cancel_cb                   (MainWindow     *mainwin,
236                                          guint           action,
237                                          GtkWidget      *widget);
238
239 static void mark_cb                     (MainWindow     *mainwin,
240                                          guint           action,
241                                          GtkWidget      *widget);
242 static void unmark_cb                   (MainWindow     *mainwin,
243                                          guint           action,
244                                          GtkWidget      *widget);
245
246 static void mark_as_unread_cb           (MainWindow     *mainwin,
247                                          guint           action,
248                                          GtkWidget      *widget);
249 static void mark_as_read_cb             (MainWindow     *mainwin,
250                                          guint           action,
251                                          GtkWidget      *widget);
252 static void mark_all_read_cb            (MainWindow     *mainwin,
253                                          guint           action,
254                                          GtkWidget      *widget);
255
256 static void reedit_cb                   (MainWindow     *mainwin,
257                                          guint           action,
258                                          GtkWidget      *widget);
259
260 static void add_address_cb              (MainWindow     *mainwin,
261                                          guint           action,
262                                          GtkWidget      *widget);
263
264 static void set_charset_cb              (MainWindow     *mainwin,
265                                          guint           action,
266                                          GtkWidget      *widget);
267
268 static void set_decode_cb               (MainWindow     *mainwin,
269                                          guint           action,
270                                          GtkWidget      *widget);
271
272 static void hide_read_messages   (MainWindow    *mainwin,
273                                   guint          action,
274                                   GtkWidget     *widget);
275
276 static void thread_cb            (MainWindow    *mainwin,
277                                   guint          action,
278                                   GtkWidget     *widget);
279 static void expand_threads_cb    (MainWindow    *mainwin,
280                                   guint          action,
281                                   GtkWidget     *widget);
282 static void collapse_threads_cb  (MainWindow    *mainwin,
283                                   guint          action,
284                                   GtkWidget     *widget);
285
286 static void set_summary_display_item_cb  (MainWindow    *mainwin,
287                                   guint          action,
288                                   GtkWidget     *widget);
289 static void set_folder_display_item_cb   (MainWindow    *mainwin,
290                                   guint          action,
291                                   GtkWidget     *widget);
292 static void sort_summary_cb      (MainWindow    *mainwin,
293                                   guint          action,
294                                   GtkWidget     *widget);
295 static void sort_summary_type_cb (MainWindow    *mainwin,
296                                   guint          action,
297                                   GtkWidget     *widget);
298 static void attract_by_subject_cb(MainWindow    *mainwin,
299                                   guint          action,
300                                   GtkWidget     *widget);
301
302 static void delete_duplicated_cb (MainWindow    *mainwin,
303                                   guint          action,
304                                   GtkWidget     *widget);
305 static void delete_duplicated_all_cb (MainWindow        *mainwin,
306                                   guint          action,
307                                   GtkWidget     *widget);
308 static void filter_cb            (MainWindow    *mainwin,
309                                   guint          action,
310                                   GtkWidget     *widget);
311 static void execute_summary_cb   (MainWindow    *mainwin,
312                                   guint          action,
313                                   GtkWidget     *widget);
314 static void update_summary_cb    (MainWindow    *mainwin,
315                                   guint          action,
316                                   GtkWidget     *widget);
317
318 static void prev_cb              (MainWindow    *mainwin,
319                                   guint          action,
320                                   GtkWidget     *widget);
321 static void next_cb              (MainWindow    *mainwin,
322                                   guint          action,
323                                   GtkWidget     *widget);
324 static void next_unread_cb       (MainWindow    *mainwin,
325                                   guint          action,
326                                   GtkWidget     *widget);
327 static void prev_unread_cb       (MainWindow    *mainwin,
328                                   guint          action,
329                                   GtkWidget     *widget);
330
331 static void prev_new_cb          (MainWindow    *mainwin,
332                                   guint          action,
333                                   GtkWidget     *widget);
334 static void next_new_cb          (MainWindow    *mainwin,
335                                   guint          action,
336                                   GtkWidget     *widget);
337 static void prev_marked_cb       (MainWindow    *mainwin,
338                                   guint          action,
339                                   GtkWidget     *widget);
340 static void next_marked_cb       (MainWindow    *mainwin,
341                                   guint          action,
342                                   GtkWidget     *widget);
343 static void prev_labeled_cb      (MainWindow    *mainwin,
344                                   guint          action,
345                                   GtkWidget     *widget);
346 static void next_labeled_cb      (MainWindow    *mainwin,
347                                   guint          action,
348                                   GtkWidget     *widget);
349
350 static void goto_folder_cb       (MainWindow    *mainwin,
351                                   guint          action,
352                                   GtkWidget     *widget);
353
354 static void copy_cb              (MainWindow    *mainwin,
355                                   guint          action,
356                                   GtkWidget     *widget);
357 static void allsel_cb            (MainWindow    *mainwin,
358                                   guint          action,
359                                   GtkWidget     *widget);
360 static void select_thread_cb     (MainWindow    *mainwin,
361                                   guint          action,
362                                   GtkWidget     *widget);
363
364 static void create_filter_cb     (MainWindow    *mainwin,
365                                   guint          action,
366                                   GtkWidget     *widget);
367 static void create_processing_cb (MainWindow    *mainwin,
368                                   guint          action,
369                                   GtkWidget     *widget);
370
371 static void prefs_template_open_cb      (MainWindow     *mainwin,
372                                          guint           action,
373                                          GtkWidget      *widget);
374 static void prefs_actions_open_cb       (MainWindow     *mainwin,
375                                          guint           action,
376                                          GtkWidget      *widget);
377 static void prefs_account_open_cb       (MainWindow     *mainwin,
378                                          guint           action,
379                                          GtkWidget      *widget);
380
381 static void prefs_pre_processing_open_cb  (MainWindow   *mainwin,
382                                            guint         action,
383                                            GtkWidget    *widget);
384
385 static void prefs_post_processing_open_cb (MainWindow   *mainwin,
386                                            guint         action,
387                                            GtkWidget    *widget);
388
389 static void prefs_filtering_open_cb     (MainWindow     *mainwin,
390                                          guint           action,
391                                          GtkWidget      *widget);
392 #ifdef USE_OPENSSL
393 static void ssl_manager_open_cb         (MainWindow     *mainwin,
394                                          guint           action,
395                                          GtkWidget      *widget);
396 #endif
397 static void new_account_cb       (MainWindow    *mainwin,
398                                   guint          action,
399                                   GtkWidget     *widget);
400
401 static void account_selector_menu_cb     (GtkMenuItem   *menuitem,
402                                           gpointer       data);
403 static void account_receive_menu_cb      (GtkMenuItem   *menuitem,
404                                           gpointer       data);
405
406 static void prefs_open_cb       (GtkMenuItem    *menuitem,
407                                  gpointer        data);
408 static void plugins_open_cb     (GtkMenuItem    *menuitem,
409                                  gpointer        data);
410
411 static void online_switch_clicked(GtkButton     *btn, 
412                                   gpointer data);
413
414 static void manual_open_cb       (MainWindow    *mainwin,
415                                   guint          action,
416                                   GtkWidget     *widget);
417
418 static void scan_tree_func       (Folder        *folder,
419                                   FolderItem    *item,
420                                   gpointer       data);
421                                   
422 static void toggle_work_offline_cb(MainWindow *mainwin, guint action, GtkWidget *widget);
423
424 static void addr_harvest_cb      ( MainWindow  *mainwin,
425                                    guint       action,
426                                    GtkWidget   *widget );
427
428 static void addr_harvest_msg_cb  ( MainWindow  *mainwin,
429                                    guint       action,
430                                    GtkWidget   *widget );
431 static void sync_cb              ( MainWindow *mainwin, 
432                                    guint action, 
433                                    GtkWidget *widget );
434
435 static gboolean mainwindow_focus_in_event       (GtkWidget      *widget, 
436                                                  GdkEventFocus  *focus,
437                                                  gpointer        data);
438 void main_window_reply_cb                       (MainWindow     *mainwin, 
439                                                  guint           action,
440                                                  GtkWidget      *widget);
441 gboolean mainwindow_progressindicator_hook      (gpointer        source,
442                                                  gpointer        userdata);
443 #define  SEPARATE_ACTION 500 
444 static void mainwindow_quicksearch              (MainWindow     *mainwin, 
445                                                  guint           action, 
446                                                  GtkWidget      *widget);
447
448 static GtkItemFactoryEntry mainwin_entries[] =
449 {
450         {N_("/_File"),                          NULL, NULL, 0, "<Branch>"},
451         {N_("/_File/_Add mailbox"),             NULL, NULL, 0, "<Branch>"},
452         {N_("/_File/_Add mailbox/MH..."),       NULL, add_mailbox_cb, 0, NULL},
453         {N_("/_File/---"),                      NULL, NULL, 0, "<Separator>"},
454         {N_("/_File/Change folder order"),      NULL, foldersort_cb,  0, NULL},
455         {N_("/_File/---"),                      NULL, NULL, 0, "<Separator>"},
456         {N_("/_File/_Import mbox file..."),     NULL, import_mbox_cb, 0, NULL},
457         {N_("/_File/_Export to mbox file..."),  NULL, export_mbox_cb, 0, NULL},
458         {N_("/_File/Exp_ort selected to mbox file..."), 
459                                                 NULL, export_list_mbox_cb, 0, NULL},
460         {N_("/_File/---"),                      NULL, NULL, 0, "<Separator>"},
461         {N_("/_File/Empty all _Trash folders"), "<shift>D", empty_trash_cb, 0, NULL},
462         {N_("/_File/---"),                      NULL, NULL, 0, "<Separator>"},
463         {N_("/_File/_Save as..."),              "<control>S", save_as_cb, 0, NULL},
464         {N_("/_File/_Print..."),                NULL, print_cb, 0, NULL},
465         {N_("/_File/---"),                      NULL, NULL, 0, "<Separator>"},
466         {N_("/_File/_Work offline"),            "<control>W", toggle_work_offline_cb, 0, "<ToggleItem>"},
467         {N_("/_File/---"),                      NULL, NULL, 0, "<Separator>"},
468         /* {N_("/_File/_Close"),                "<alt>W", app_exit_cb, 0, NULL}, */
469         {N_("/_File/E_xit"),                    "<control>Q", app_exit_cb, 0, NULL},
470
471         {N_("/_Edit"),                          NULL, NULL, 0, "<Branch>"},
472         {N_("/_Edit/_Copy"),                    "<control>C", copy_cb, 0, NULL},
473         {N_("/_Edit/Select _all"),              "<control>A", allsel_cb, 0, NULL},
474         {N_("/_Edit/Select _thread"),           NULL, select_thread_cb, 0, NULL},
475         {N_("/_Edit/---"),                      NULL, NULL, 0, "<Separator>"},
476         {N_("/_Edit/_Find in current message..."),
477                                                 "<control>F", search_cb, 0, NULL},
478         {N_("/_Edit/_Search folder..."),        "<shift><control>F", search_cb, 1, NULL},
479         {N_("/_Edit/_Quick search"),            "slash", mainwindow_quicksearch, 0, NULL},
480         {N_("/_View"),                          NULL, NULL, 0, "<Branch>"},
481         {N_("/_View/Show or hi_de"),            NULL, NULL, 0, "<Branch>"},
482         {N_("/_View/Show or hi_de/_Folder tree"),
483                                                 NULL, toggle_folder_cb, 0, "<ToggleItem>"},
484         {N_("/_View/Show or hi_de/_Message view"),
485                                                 "V", toggle_message_cb, 0, "<ToggleItem>"},
486         {N_("/_View/Show or hi_de/_Toolbar"),
487                                                 NULL, NULL, 0, "<Branch>"},
488         {N_("/_View/Show or hi_de/_Toolbar/Icon _and text"),
489                                                 NULL, toggle_toolbar_cb, TOOLBAR_BOTH, "<RadioItem>"},
490         {N_("/_View/Show or hi_de/_Toolbar/_Icon"),
491                                                 NULL, toggle_toolbar_cb, TOOLBAR_ICON, "/View/Show or hide/Toolbar/Icon and text"},
492         {N_("/_View/Show or hi_de/_Toolbar/_Text"),
493                                                 NULL, toggle_toolbar_cb, TOOLBAR_TEXT, "/View/Show or hide/Toolbar/Icon and text"},
494         {N_("/_View/Show or hi_de/_Toolbar/_None"),
495                                                 NULL, toggle_toolbar_cb, TOOLBAR_NONE, "/View/Show or hide/Toolbar/Icon and text"},
496         {N_("/_View/Show or hi_de/Status _bar"),
497                                                 NULL, toggle_statusbar_cb, 0, "<ToggleItem>"},
498         {N_("/_View/---"),                      NULL, NULL, 0, "<Separator>"},
499         {N_("/_View/Separate f_older tree"),    NULL, separate_widget_cb, SEPARATE_FOLDER, "<ToggleItem>"},
500         {N_("/_View/Separate _message view"),   NULL, separate_widget_cb, SEPARATE_MESSAGE, "<ToggleItem>"},
501         {N_("/_View/---"),                      NULL, NULL, 0, "<Separator>"},
502         {N_("/_View/_Sort"),                    NULL, NULL, 0, "<Branch>"},
503         {N_("/_View/_Sort/by _number"),         NULL, sort_summary_cb, SORT_BY_NUMBER, "<RadioItem>"},
504         {N_("/_View/_Sort/by S_ize"),           NULL, sort_summary_cb, SORT_BY_SIZE, "/View/Sort/by number"},
505         {N_("/_View/_Sort/by _Date"),           NULL, sort_summary_cb, SORT_BY_DATE, "/View/Sort/by number"},
506         {N_("/_View/_Sort/by _From"),           NULL, sort_summary_cb, SORT_BY_FROM, "/View/Sort/by number"},
507         {N_("/_View/_Sort/by _To"),             NULL, sort_summary_cb, SORT_BY_TO, "/View/Sort/by number"},
508         {N_("/_View/_Sort/by S_ubject"),        NULL, sort_summary_cb, SORT_BY_SUBJECT, "/View/Sort/by number"},
509         {N_("/_View/_Sort/by _color label"),
510                                                 NULL, sort_summary_cb, SORT_BY_LABEL, "/View/Sort/by number"},
511         {N_("/_View/_Sort/by _mark"),           NULL, sort_summary_cb, SORT_BY_MARK, "/View/Sort/by number"},
512         {N_("/_View/_Sort/by _status"),         NULL, sort_summary_cb, SORT_BY_STATUS, "/View/Sort/by number"},
513         {N_("/_View/_Sort/by a_ttachment"),
514                                                 NULL, sort_summary_cb, SORT_BY_MIME, "/View/Sort/by number"},
515         {N_("/_View/_Sort/by score"),           NULL, sort_summary_cb, SORT_BY_SCORE, "/View/Sort/by number"},
516         {N_("/_View/_Sort/by locked"),          NULL, sort_summary_cb, SORT_BY_LOCKED, "/View/Sort/by number"},
517         {N_("/_View/_Sort/D_on't sort"),        NULL, sort_summary_cb, SORT_BY_NONE, "/View/Sort/by number"},
518         {N_("/_View/_Sort/---"),                NULL, NULL, 0, "<Separator>"},
519         {N_("/_View/_Sort/Ascending"),          NULL, sort_summary_type_cb, SORT_ASCENDING, "<RadioItem>"},
520         {N_("/_View/_Sort/Descending"),         NULL, sort_summary_type_cb, SORT_DESCENDING, "/View/Sort/Ascending"},
521         {N_("/_View/_Sort/---"),                NULL, NULL, 0, "<Separator>"},
522         {N_("/_View/_Sort/_Attract by subject"),
523                                                 NULL, attract_by_subject_cb, 0, NULL},
524         {N_("/_View/Th_read view"),             "<control>T", thread_cb, 0, "<ToggleItem>"},
525         {N_("/_View/E_xpand all threads"),      NULL, expand_threads_cb, 0, NULL},
526         {N_("/_View/Co_llapse all threads"),    NULL, collapse_threads_cb, 0, NULL},
527         {N_("/_View/_Hide read messages"),      NULL, hide_read_messages, 0, "<ToggleItem>"},
528         {N_("/_View/Set displayed _columns"),   NULL, NULL, 0, "<Branch>"},
529         {N_("/_View/Set displayed _columns/in _Folder list..."),        NULL, set_folder_display_item_cb, 0, NULL},
530         {N_("/_View/Set displayed _columns/in _Message list..."),NULL, set_summary_display_item_cb, 0, NULL},
531
532         {N_("/_View/---"),                      NULL, NULL, 0, "<Separator>"},
533         {N_("/_View/_Go to"),                   NULL, NULL, 0, "<Branch>"},
534         {N_("/_View/_Go to/_Prev message"),     "P", prev_cb, 0, NULL},
535         {N_("/_View/_Go to/_Next message"),     "N", next_cb, 0, NULL},
536         {N_("/_View/_Go to/---"),               NULL, NULL, 0, "<Separator>"},
537         {N_("/_View/_Go to/P_rev unread message"),
538                                                 "<shift>P", prev_unread_cb, 0, NULL},
539         {N_("/_View/_Go to/N_ext unread message"),
540                                                 "<shift>N", next_unread_cb, 0, NULL},
541         {N_("/_View/_Go to/---"),               NULL, NULL, 0, "<Separator>"},
542         {N_("/_View/_Go to/Prev ne_w message"), NULL, prev_new_cb, 0, NULL},
543         {N_("/_View/_Go to/Ne_xt new message"), NULL, next_new_cb, 0, NULL},
544         {N_("/_View/_Go to/---"),               NULL, NULL, 0, "<Separator>"},
545         {N_("/_View/_Go to/Prev _marked message"),
546                                                 NULL, prev_marked_cb, 0, NULL},
547         {N_("/_View/_Go to/Next m_arked message"),
548                                                 NULL, next_marked_cb, 0, NULL},
549         {N_("/_View/_Go to/---"),               NULL, NULL, 0, "<Separator>"},
550         {N_("/_View/_Go to/Prev _labeled message"),
551                                                 NULL, prev_labeled_cb, 0, NULL},
552         {N_("/_View/_Go to/Next la_beled message"),
553                                                 NULL, next_labeled_cb, 0, NULL},
554         {N_("/_View/_Go to/---"),               NULL, NULL, 0, "<Separator>"},
555         {N_("/_View/_Go to/Other _folder..."),  "G", goto_folder_cb, 0, NULL},
556         {N_("/_View/---"),                      NULL, NULL, 0, "<Separator>"},
557
558 #define ENC_SEPARATOR \
559         {N_("/_View/Character _encoding/---"),          NULL, NULL, 0, "<Separator>"}
560 #define ENC_ACTION(action) \
561          NULL, set_charset_cb, action, "/View/Character encoding/Auto detect"
562
563         {N_("/_View/Character _encoding"),              NULL, NULL, 0, "<Branch>"},
564         {N_("/_View/Character _encoding/_Auto detect"),
565          NULL, set_charset_cb, C_AUTO, "<RadioItem>"},
566         {N_("/_View/Character _encoding/---"),          NULL, NULL, 0, "<Separator>"},
567         {N_("/_View/Character _encoding/7bit ascii (US-ASC_II)"),
568          ENC_ACTION(C_US_ASCII)},
569         {N_("/_View/Character _encoding/Unicode (_UTF-8)"),
570          ENC_ACTION(C_UTF_8)},
571         ENC_SEPARATOR,
572
573         {N_("/_View/Character _encoding/Western European (ISO-8859-_1)"),
574          ENC_ACTION(C_ISO_8859_1)},
575         {N_("/_View/Character _encoding/Western European (ISO-8859-15)"),
576          ENC_ACTION(C_ISO_8859_15)},
577         ENC_SEPARATOR,
578
579         {N_("/_View/Character _encoding/Central European (ISO-8859-_2)"),
580          ENC_ACTION(C_ISO_8859_2)},
581         ENC_SEPARATOR,
582
583         {N_("/_View/Character _encoding/_Baltic (ISO-8859-13)"),
584          ENC_ACTION(C_ISO_8859_13)},
585         {N_("/_View/Character _encoding/Baltic (ISO-8859-_4)"),
586          ENC_ACTION(C_ISO_8859_4)},
587         ENC_SEPARATOR,
588
589         {N_("/_View/Character _encoding/Greek (ISO-8859-_7)"),
590          ENC_ACTION(C_ISO_8859_7)},
591         ENC_SEPARATOR,
592
593         {N_("/_View/Character _encoding/Hebrew (ISO-8859-_8)"),
594          ENC_ACTION(C_ISO_8859_8)},
595         {N_("/_View/Character _encoding/Hebrew (Windows-1255)"),
596          ENC_ACTION(C_CP1255)},
597         ENC_SEPARATOR,
598
599         {N_("/_View/Character _encoding/Turkish (ISO-8859-_9)"),
600          ENC_ACTION(C_ISO_8859_9)},
601         ENC_SEPARATOR,
602
603         {N_("/_View/Character _encoding/Cyrillic (ISO-8859-_5)"),
604          ENC_ACTION(C_ISO_8859_5)},
605         {N_("/_View/Character _encoding/Cyrillic (KOI8-_R)"),
606          ENC_ACTION(C_KOI8_R)},
607         {N_("/_View/Character _encoding/Cyrillic (KOI8-U)"),
608          ENC_ACTION(C_KOI8_U)},
609         {N_("/_View/Character _encoding/Cyrillic (Windows-1251)"),
610          ENC_ACTION(C_CP1251)},
611         ENC_SEPARATOR,
612
613         {N_("/_View/Character _encoding/Japanese (ISO-2022-_JP)"),
614          ENC_ACTION(C_ISO_2022_JP)},
615         {N_("/_View/Character _encoding/Japanese (ISO-2022-JP-2)"),
616          ENC_ACTION(C_ISO_2022_JP_2)},
617         {N_("/_View/Character _encoding/Japanese (_EUC-JP)"),
618          ENC_ACTION(C_EUC_JP)},
619         {N_("/_View/Character _encoding/Japanese (_Shift__JIS)"),
620          ENC_ACTION(C_SHIFT_JIS)},
621         ENC_SEPARATOR,
622
623         {N_("/_View/Character _encoding/Simplified Chinese (_GB2312)"),
624          ENC_ACTION(C_GB2312)},
625         {N_("/_View/Character _encoding/Simplified Chinese (GBK)"),
626          ENC_ACTION(C_GBK)},
627         {N_("/_View/Character _encoding/Traditional Chinese (_Big5)"),
628          ENC_ACTION(C_BIG5)},
629         {N_("/_View/Character _encoding/Traditional Chinese (EUC-_TW)"),
630          ENC_ACTION(C_EUC_TW)},
631         {N_("/_View/Character _encoding/Chinese (ISO-2022-_CN)"),
632          ENC_ACTION(C_ISO_2022_CN)},
633         ENC_SEPARATOR,
634
635         {N_("/_View/Character _encoding/Korean (EUC-_KR)"),
636          ENC_ACTION(C_EUC_KR)},
637         {N_("/_View/Character _encoding/Korean (ISO-2022-KR)"),
638          ENC_ACTION(C_ISO_2022_KR)},
639         ENC_SEPARATOR,
640
641         {N_("/_View/Character _encoding/Thai (TIS-620)"),
642          ENC_ACTION(C_TIS_620)},
643         {N_("/_View/Character _encoding/Thai (Windows-874)"),
644          ENC_ACTION(C_WINDOWS_874)},
645
646 #undef ENC_SEPARATOR
647 #undef ENC_ACTION
648
649 #define DEC_SEPARATOR \
650         {N_("/_View/Decode/---"),               NULL, NULL, 0, "<Separator>"}
651 #define DEC_ACTION(action) \
652          NULL, set_decode_cb, action, "/View/Decode/Auto detect"
653         {N_("/_View/Decode"),           NULL, NULL, 0, "<Branch>"},
654         {N_("/_View/Decode/_Auto detect"),
655          NULL, set_decode_cb, 0, "<RadioItem>"},
656         {N_("/_View/Decode/---"),               NULL, NULL, 0, "<Separator>"},
657         {N_("/_View/Decode/_8bit"),             DEC_ACTION(ENC_8BIT)},
658         {N_("/_View/Decode/_Quoted printable"), DEC_ACTION(ENC_QUOTED_PRINTABLE)},
659         {N_("/_View/Decode/_Base64"),           DEC_ACTION(ENC_BASE64)},
660         {N_("/_View/Decode/_Uuencode"),         DEC_ACTION(ENC_X_UUENCODE)},
661
662 #undef DEC_SEPARATOR
663 #undef DEC_ACTION
664
665         {N_("/_View/---"),                      NULL, NULL, 0, "<Separator>"},
666         {N_("/_View/Open in new _window"),      "<control><alt>N", open_msg_cb, 0, NULL},
667         {N_("/_View/Mess_age source"),          "<control>U", view_source_cb, 0, NULL},
668         {N_("/_View/Show all headers"),         "<control>H", show_all_header_cb, 0, "<ToggleItem>"},
669         {N_("/_View/---"),                      NULL, NULL, 0, "<Separator>"},
670         {N_("/_View/_Update summary"),          "<control><alt>U", update_summary_cb,  0, NULL},
671
672         {N_("/_Message"),                       NULL, NULL, 0, "<Branch>"},
673         {N_("/_Message/Recei_ve"),              NULL, NULL, 0, "<Branch>"},
674         {N_("/_Message/Recei_ve/Get from _current account"),
675                                                 "<control>I",   inc_mail_cb, 0, NULL},
676         {N_("/_Message/Recei_ve/Get from _all accounts"),
677                                                 "<shift><control>I", inc_all_account_mail_cb, 0, NULL},
678         {N_("/_Message/Recei_ve/Cancel receivin_g"),
679                                                 NULL, inc_cancel_cb, 0, NULL},
680         {N_("/_Message/Recei_ve/---"),          NULL, NULL, 0, "<Separator>"},
681         {N_("/_Message/_Send queued messages"), NULL, send_queue_cb, 0, NULL},
682         {N_("/_Message/Synchronise folders"),   "<control><shift>S", sync_cb, 0, NULL},
683         {N_("/_Message/---"),                   NULL, NULL, 0, "<Separator>"},
684         {N_("/_Message/Compose a_n email message"),     "<control>M", compose_mail_cb, 0, NULL},
685         {N_("/_Message/Compose a news message"),        NULL,   compose_news_cb, 0, NULL},
686         {N_("/_Message/_Reply"),                "<control>R",   main_window_reply_cb, COMPOSE_REPLY, NULL},
687         {N_("/_Message/Repl_y to"),             NULL, NULL, 0, "<Branch>"},
688         {N_("/_Message/Repl_y to/_all"),        "<shift><control>R", main_window_reply_cb, COMPOSE_REPLY_TO_ALL, NULL},
689         {N_("/_Message/Repl_y to/_sender"),     NULL, main_window_reply_cb, COMPOSE_REPLY_TO_SENDER, NULL},
690         {N_("/_Message/Repl_y to/mailing _list"),
691                                                 "<control>L", main_window_reply_cb, COMPOSE_REPLY_TO_LIST, NULL},
692         {N_("/_Message/Follow-up and reply to"),NULL, main_window_reply_cb, COMPOSE_FOLLOWUP_AND_REPLY_TO, NULL},
693         {N_("/_Message/---"),                   NULL, NULL, 0, "<Separator>"},
694         {N_("/_Message/_Forward"),              "<control><alt>F", main_window_reply_cb, COMPOSE_FORWARD, NULL},
695         {N_("/_Message/Redirect"),              NULL, main_window_reply_cb, COMPOSE_REDIRECT, NULL},
696         {N_("/_Message/---"),                   NULL, NULL, 0, "<Separator>"},
697         {N_("/_Message/M_ove..."),              "<control>O", move_to_cb, 0, NULL},
698         {N_("/_Message/_Copy..."),              "<shift><control>O", copy_to_cb, 0, NULL},
699         {N_("/_Message/Move to _trash"),        "<control>D", delete_trash_cb,  0, NULL},
700         {N_("/_Message/_Delete..."),            NULL, delete_cb,  0, NULL},
701         {N_("/_Message/Cancel a news message"), "", cancel_cb,  0, NULL},
702         {N_("/_Message/---"),                   NULL, NULL, 0, "<Separator>"},
703         {N_("/_Message/_Mark"),                 NULL, NULL, 0, "<Branch>"},
704         {N_("/_Message/_Mark/_Mark"),           "<shift>asterisk", mark_cb, 0, NULL},
705         {N_("/_Message/_Mark/_Unmark"),         "U", unmark_cb, 0, NULL},
706         {N_("/_Message/_Mark/---"),             NULL, NULL, 0, "<Separator>"},
707         {N_("/_Message/_Mark/Mark as unr_ead"), "<shift>exclam", mark_as_unread_cb, 0, NULL},
708         {N_("/_Message/_Mark/Mark as rea_d"),
709                                                 NULL, mark_as_read_cb, 0, NULL},
710         {N_("/_Message/_Mark/Mark all _read"),  NULL, mark_all_read_cb, 0, NULL},
711         {N_("/_Message/---"),                   NULL, NULL, 0, "<Separator>"},
712         {N_("/_Message/Re-_edit"),              NULL, reedit_cb, 0, NULL},
713
714         {N_("/_Tools"),                         NULL, NULL, 0, "<Branch>"},
715         {N_("/_Tools/_Address book..."),        "<shift><control>A", addressbook_open_cb, 0, NULL},
716         {N_("/_Tools/Add sender to address boo_k"),
717                                                 NULL, add_address_cb, 0, NULL},
718         {N_("/_Tools/_Harvest addresses"),      NULL, NULL, 0, "<Branch>"},
719         {N_("/_Tools/_Harvest addresses/from _Folder..."),
720                                                 NULL, addr_harvest_cb, 0, NULL},
721         {N_("/_Tools/_Harvest addresses/from _Messages..."),
722                                                 NULL, addr_harvest_msg_cb, 0, NULL},
723         {N_("/_Tools/---"),                     NULL, NULL, 0, "<Separator>"},
724         {N_("/_Tools/_Filter all messages in folder"),
725                                                 NULL, filter_cb, 0, NULL},
726         {N_("/_Tools/Filter _selected messages"),
727                                                 NULL, filter_cb, 1, NULL},
728         {N_("/_Tools/_Create filter rule"),     NULL, NULL, 0, "<Branch>"},
729         {N_("/_Tools/_Create filter rule/_Automatically"),
730                                                 NULL, create_filter_cb, FILTER_BY_AUTO, NULL},
731         {N_("/_Tools/_Create filter rule/by _From"),
732                                                 NULL, create_filter_cb, FILTER_BY_FROM, NULL},
733         {N_("/_Tools/_Create filter rule/by _To"),
734                                                 NULL, create_filter_cb, FILTER_BY_TO, NULL},
735         {N_("/_Tools/_Create filter rule/by _Subject"),
736                                                 NULL, create_filter_cb, FILTER_BY_SUBJECT, NULL},
737         {N_("/_Tools/C_reate processing rule"), NULL, NULL, 0, "<Branch>"},
738         {N_("/_Tools/C_reate processing rule/_Automatically"),
739                                                 NULL, create_processing_cb, FILTER_BY_AUTO, NULL},
740         {N_("/_Tools/C_reate processing rule/by _From"),
741                                                 NULL, create_processing_cb, FILTER_BY_FROM, NULL},
742         {N_("/_Tools/C_reate processing rule/by _To"),
743                                                 NULL, create_processing_cb, FILTER_BY_TO, NULL},
744         {N_("/_Tools/C_reate processing rule/by _Subject"),
745                                                 NULL, create_processing_cb, FILTER_BY_SUBJECT, NULL},
746         {N_("/_Tools/---"),                     NULL, NULL, 0, "<Separator>"},
747         {N_("/_Tools/Actio_ns"),                NULL, NULL, 0, "<Branch>"},
748         {N_("/_Tools/---"),                     NULL, NULL, 0, "<Separator>"},
749         {N_("/_Tools/Ch_eck for new messages in all folders"),
750                                                 NULL, update_folderview_cb, 0, NULL},
751         {N_("/_Tools/Delete du_plicated messages"),
752                                                 NULL, NULL, 0, "<Branch>"},
753         {N_("/_Tools/Delete du_plicated messages/In selected folder"),
754                                                 NULL, delete_duplicated_cb,   0, NULL},
755         {N_("/_Tools/Delete du_plicated messages/In all folders"),
756                                                 NULL, delete_duplicated_all_cb,   0, NULL},
757         {N_("/_Tools/---"),                     NULL, NULL, 0, "<Separator>"},
758         {N_("/_Tools/E_xecute"),                "X", execute_summary_cb, 0, NULL},
759 #ifdef USE_OPENSSL
760         {N_("/_Tools/---"),                     NULL, NULL, 0, "<Separator>"},
761         {N_("/_Tools/SSL cer_tificates..."),    
762                                                 NULL, ssl_manager_open_cb, 0, NULL},
763 #endif
764         {N_("/_Tools/---"),                     NULL, NULL, 0, "<Separator>"},
765         {N_("/_Tools/_Log window"),             "<shift><control>L", log_window_show_cb, 0, NULL},
766
767         {N_("/_Configuration"),                 NULL, NULL, 0, "<Branch>"},
768         {N_("/_Configuration/C_hange current account"),
769                                                 NULL, NULL, 0, "<Branch>"},
770         {N_("/_Configuration/_Preferences for current account..."),
771                                                 NULL, prefs_account_open_cb, 0, NULL},
772         {N_("/_Configuration/Create _new account..."),
773                                                 NULL, new_account_cb, 0, NULL},
774         {N_("/_Configuration/_Edit accounts..."),
775                                                 NULL, account_edit_open, 0, NULL},
776         {N_("/_Configuration/---"),             NULL, NULL, 0, "<Separator>"},
777         {N_("/_Configuration/P_references..."),
778                                                 NULL, prefs_open_cb, 0, NULL},
779         {N_("/_Configuration/Pre-pr_ocessing..."),
780                                                 NULL, prefs_pre_processing_open_cb, 0, NULL},
781         {N_("/_Configuration/Post-pro_cessing..."),
782                                                 NULL, prefs_post_processing_open_cb, 0, NULL},
783         {N_("/_Configuration/_Filtering..."),
784                                                 NULL, prefs_filtering_open_cb, 0, NULL},
785         {N_("/_Configuration/_Templates..."),   NULL, prefs_template_open_cb, 0, NULL},
786         {N_("/_Configuration/_Actions..."),     NULL, prefs_actions_open_cb, 0, NULL},
787         {N_("/_Configuration/Plu_gins..."),     NULL, plugins_open_cb, 0, NULL},
788
789         {N_("/_Help"),                          NULL, NULL, 0, "<Branch>"},
790         {N_("/_Help/_Manual"),                  NULL, manual_open_cb, MANUAL_MANUAL_LOCAL, NULL},
791         {N_("/_Help/_FAQ"),                     NULL, manual_open_cb, MANUAL_FAQ_LOCAL, NULL},
792         {N_("/_Help/_Online User-contributed FAQ"),     
793                                                 NULL, manual_open_cb, MANUAL_FAQ_CLAWS, NULL},
794         {N_("/_Help/---"),                      NULL, NULL, 0, "<Separator>"},
795         {N_("/_Help/_About"),                   NULL, about_show, 0, NULL}
796 };
797
798 static gboolean offline_ask_sync = TRUE;
799
800 static gboolean main_window_accel_activate (GtkAccelGroup *accelgroup,
801                                             GObject *arg1,
802                                             guint value,
803                                             GdkModifierType mod,
804                                             gpointer user_data) 
805 {
806         MainWindow *mainwin = (MainWindow *)user_data;
807
808         if (mainwin->summaryview &&
809             mainwin->summaryview->quicksearch &&
810             quicksearch_has_focus(mainwin->summaryview->quicksearch) &&
811             (mod == 0 || mod == GDK_SHIFT_MASK)) {
812                 quicksearch_pass_key(mainwin->summaryview->quicksearch, value, mod);
813                 return TRUE;
814         }
815         return FALSE;
816 }
817
818 MainWindow *main_window_create(SeparateType type)
819 {
820         MainWindow *mainwin;
821         GtkWidget *window;
822         GtkWidget *vbox;
823         GtkWidget *menubar;
824         GtkWidget *handlebox;
825         GtkWidget *vbox_body;
826         GtkWidget *hbox_stat;
827         GtkWidget *statusbar;
828         GtkWidget *progressbar;
829         GtkWidget *statuslabel;
830         GtkWidget *ac_button;
831         GtkWidget *ac_label;
832         GtkWidget *online_pixmap;
833         GtkWidget *offline_pixmap;
834         GtkWidget *online_switch;
835         GtkWidget *offline_switch;
836         GtkTooltips *offline_tip;
837         GtkTooltips *online_tip;
838         GtkTooltips *sel_ac_tip;
839
840         FolderView *folderview;
841         SummaryView *summaryview;
842         MessageView *messageview;
843         GdkColormap *colormap;
844         GdkColor color[4];
845         gboolean success[4];
846         GtkItemFactory *ifactory;
847         GtkWidget *ac_menu;
848         GtkWidget *menuitem;
849         gint i;
850         guint n_menu_entries;
851
852         static GdkGeometry geometry;
853
854         debug_print("Creating main window...\n");
855         mainwin = g_new0(MainWindow, 1);
856
857         /* main window */
858         window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
859         gtk_window_set_title(GTK_WINDOW(window), PROG_VERSION);
860         gtk_window_set_resizable(GTK_WINDOW(window), TRUE);
861
862         if (!geometry.min_height) {
863                 geometry.min_width = 320;
864                 geometry.min_height = 200;
865         }
866         gtk_window_set_geometry_hints(GTK_WINDOW(window), NULL, &geometry,
867                                       GDK_HINT_MIN_SIZE);
868
869         g_signal_connect(G_OBJECT(window), "delete_event",
870                          G_CALLBACK(main_window_close_cb), mainwin);
871         MANAGE_WINDOW_SIGNALS_CONNECT(window);
872         g_signal_connect(G_OBJECT(window), "focus_in_event",
873                          G_CALLBACK(mainwindow_focus_in_event),
874                          mainwin);
875         g_signal_connect(G_OBJECT(window), "key_press_event",
876                          G_CALLBACK(mainwindow_key_pressed), mainwin);
877
878         gtk_widget_realize(window);
879         gtk_widget_add_events(window, GDK_KEY_PRESS_MASK|GDK_KEY_RELEASE_MASK);
880         
881
882         gtkut_widget_set_app_icon(window);
883
884         vbox = gtk_vbox_new(FALSE, 0);
885         gtk_widget_show(vbox);
886         gtk_container_add(GTK_CONTAINER(window), vbox);
887
888         /* menu bar */
889         n_menu_entries = sizeof(mainwin_entries) / sizeof(mainwin_entries[0]);
890         menubar = menubar_create(window, mainwin_entries, 
891                                  n_menu_entries, "<Main>", mainwin);
892         gtk_widget_show(menubar);
893         gtk_box_pack_start(GTK_BOX(vbox), menubar, FALSE, TRUE, 0);
894         ifactory = gtk_item_factory_from_widget(menubar);
895
896         menu_set_sensitive(ifactory, "/Help/Manual", manual_available(MANUAL_MANUAL_LOCAL));
897         menu_set_sensitive(ifactory, "/Help/FAQ", manual_available(MANUAL_FAQ_LOCAL));
898
899         if (prefs_common.toolbar_detachable) {
900                 handlebox = gtk_handle_box_new();
901                 gtk_widget_show(handlebox);
902                 gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
903                 g_signal_connect(G_OBJECT(handlebox), "child_attached",
904                                  G_CALLBACK(toolbar_child_attached), mainwin);
905                 g_signal_connect(G_OBJECT(handlebox), "child_detached",
906                                  G_CALLBACK(toolbar_child_detached), mainwin);
907         } else {
908                 handlebox = gtk_hbox_new(FALSE, 0);
909                 gtk_widget_show(handlebox);
910                 gtk_box_pack_start(GTK_BOX(vbox), handlebox, FALSE, FALSE, 0);
911         }
912         /* link window to mainwin->window to avoid gdk warnings */
913         mainwin->window       = window;
914         
915         /* create toolbar */
916         mainwin->toolbar = toolbar_create(TOOLBAR_MAIN, 
917                                           handlebox, 
918                                           (gpointer)mainwin);
919
920         /* vbox that contains body */
921         vbox_body = gtk_vbox_new(FALSE, BORDER_WIDTH);
922         gtk_widget_show(vbox_body);
923         gtk_container_set_border_width(GTK_CONTAINER(vbox_body), BORDER_WIDTH);
924         gtk_box_pack_start(GTK_BOX(vbox), vbox_body, TRUE, TRUE, 0);
925
926         hbox_stat = gtk_hbox_new(FALSE, 2);
927         gtk_box_pack_end(GTK_BOX(vbox_body), hbox_stat, FALSE, FALSE, 0);
928
929         statusbar = statusbar_create();
930         gtk_box_pack_start(GTK_BOX(hbox_stat), statusbar, TRUE, TRUE, 0);
931
932         progressbar = gtk_progress_bar_new();
933         gtk_widget_set_size_request(progressbar, 120, 1);
934         gtk_box_pack_start(GTK_BOX(hbox_stat), progressbar, FALSE, FALSE, 0);
935
936         online_pixmap = stock_pixmap_widget(hbox_stat, STOCK_PIXMAP_ONLINE);
937         offline_pixmap = stock_pixmap_widget(hbox_stat, STOCK_PIXMAP_OFFLINE);
938         online_tip = gtk_tooltips_new();
939         online_switch = gtk_button_new ();
940         gtk_tooltips_set_tip(GTK_TOOLTIPS(online_tip),online_switch, 
941                              _("You are online. Click the icon to go offline"), NULL);
942         offline_tip = gtk_tooltips_new();
943         offline_switch = gtk_button_new ();
944         gtk_tooltips_set_tip(GTK_TOOLTIPS(offline_tip),offline_switch, 
945                              _("You are offline. Click the icon to go online"),
946                              NULL);
947         gtk_container_add (GTK_CONTAINER(online_switch), online_pixmap);
948         gtk_button_set_relief (GTK_BUTTON(online_switch), GTK_RELIEF_NONE);
949         g_signal_connect (G_OBJECT(online_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
950         gtk_box_pack_start (GTK_BOX(hbox_stat), online_switch, FALSE, FALSE, 0);
951         gtk_container_add (GTK_CONTAINER(offline_switch), offline_pixmap);
952         gtk_button_set_relief (GTK_BUTTON(offline_switch), GTK_RELIEF_NONE);
953         g_signal_connect (G_OBJECT(offline_switch), "clicked", G_CALLBACK(online_switch_clicked), mainwin);
954         gtk_box_pack_start (GTK_BOX(hbox_stat), offline_switch, FALSE, FALSE, 0);
955         
956         statuslabel = gtk_label_new("");
957         gtk_box_pack_start(GTK_BOX(hbox_stat), statuslabel, FALSE, FALSE, 0);
958
959         sel_ac_tip = gtk_tooltips_new();
960         ac_button = gtk_button_new();
961         gtk_tooltips_set_tip(GTK_TOOLTIPS(sel_ac_tip),
962                              ac_button, _("Select account"), NULL);
963         gtk_button_set_relief(GTK_BUTTON(ac_button), GTK_RELIEF_NONE);
964         GTK_WIDGET_UNSET_FLAGS(ac_button, GTK_CAN_FOCUS);
965         gtk_widget_set_size_request(ac_button, -1, 0);
966         gtk_box_pack_end(GTK_BOX(hbox_stat), ac_button, FALSE, FALSE, 0);
967         g_signal_connect(G_OBJECT(ac_button), "button_press_event",
968                          G_CALLBACK(ac_label_button_pressed), mainwin);
969
970         ac_label = gtk_label_new("");
971         gtk_container_add(GTK_CONTAINER(ac_button), ac_label);
972
973         gtk_widget_show_all(hbox_stat);
974
975         gtk_widget_hide(offline_switch);
976         /* create views */
977         mainwin->folderview  = folderview  = folderview_create();
978         mainwin->summaryview = summaryview = summary_create();
979         mainwin->messageview = messageview = messageview_create(mainwin);
980         mainwin->logwin      = log_window_create();
981
982         folderview->mainwin      = mainwin;
983         folderview->summaryview  = summaryview;
984
985         summaryview->mainwin     = mainwin;
986         summaryview->folderview  = folderview;
987         summaryview->messageview = messageview;
988         summaryview->window      = window;
989
990         messageview->statusbar   = statusbar;
991         mainwin->vbox           = vbox;
992         mainwin->menubar        = menubar;
993         mainwin->menu_factory   = ifactory;
994         mainwin->handlebox      = handlebox;
995         mainwin->vbox_body      = vbox_body;
996         mainwin->hbox_stat      = hbox_stat;
997         mainwin->statusbar      = statusbar;
998         mainwin->progressbar    = progressbar;
999         mainwin->statuslabel    = statuslabel;
1000         mainwin->online_switch  = online_switch;
1001         mainwin->online_pixmap  = online_pixmap;
1002         mainwin->offline_pixmap = offline_pixmap;
1003         mainwin->ac_button      = ac_button;
1004         mainwin->ac_label       = ac_label;
1005         mainwin->offline_switch    = offline_switch;
1006         
1007         /* set context IDs for status bar */
1008         mainwin->mainwin_cid = gtk_statusbar_get_context_id
1009                 (GTK_STATUSBAR(statusbar), "Main Window");
1010         mainwin->folderview_cid = gtk_statusbar_get_context_id
1011                 (GTK_STATUSBAR(statusbar), "Folder View");
1012         mainwin->summaryview_cid = gtk_statusbar_get_context_id
1013                 (GTK_STATUSBAR(statusbar), "Summary View");
1014         mainwin->messageview_cid = gtk_statusbar_get_context_id
1015                 (GTK_STATUSBAR(statusbar), "Message View");
1016
1017         messageview->statusbar_cid = mainwin->messageview_cid;
1018
1019         /* allocate colors for summary view and folder view */
1020         summaryview->color_marked.red = summaryview->color_marked.green = 0;
1021         summaryview->color_marked.blue = (guint16)65535;
1022
1023         summaryview->color_dim.red = summaryview->color_dim.green =
1024                 summaryview->color_dim.blue = COLOR_DIM;
1025
1026         gtkut_convert_int_to_gdk_color(prefs_common.color_new,
1027                                        &folderview->color_new);
1028
1029         gtkut_convert_int_to_gdk_color(prefs_common.tgt_folder_col,
1030                                        &folderview->color_op);
1031
1032         summaryview->color_important.red = 0;
1033         summaryview->color_important.green = 0;
1034         summaryview->color_important.blue = (guint16)65535;
1035
1036         color[0] = summaryview->color_marked;
1037         color[1] = summaryview->color_dim;
1038         color[2] = folderview->color_new;
1039         color[3] = folderview->color_op;
1040
1041         colormap = gdk_drawable_get_colormap(window->window);
1042         gdk_colormap_alloc_colors(colormap, color, 4, FALSE, TRUE, success);
1043         for (i = 0; i < 4; i++) {
1044                 if (success[i] == FALSE)
1045                         g_warning("MainWindow: color allocation %d failed\n", i);
1046         }
1047
1048         debug_print("done.\n");
1049
1050         messageview->visible = prefs_common.msgview_visible;
1051
1052         main_window_set_widgets(mainwin, type);
1053
1054         g_signal_connect(G_OBJECT(window), "size_allocate",
1055                          G_CALLBACK(main_window_size_allocate_cb),
1056                          mainwin);
1057
1058         /* set menu items */
1059         menuitem = gtk_item_factory_get_item
1060                 (ifactory, "/View/Character encoding/Auto detect");
1061         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), TRUE);
1062
1063         switch (prefs_common.toolbar_style) {
1064         case TOOLBAR_NONE:
1065                 menuitem = gtk_item_factory_get_item
1066                         (ifactory, "/View/Show or hide/Toolbar/None");
1067                 break;
1068         case TOOLBAR_ICON:
1069                 menuitem = gtk_item_factory_get_item
1070                         (ifactory, "/View/Show or hide/Toolbar/Icon");
1071                 break;
1072         case TOOLBAR_TEXT:
1073                 menuitem = gtk_item_factory_get_item
1074                         (ifactory, "/View/Show or hide/Toolbar/Text");
1075                 break;
1076         case TOOLBAR_BOTH:
1077                 menuitem = gtk_item_factory_get_item
1078                         (ifactory, "/View/Show or hide/Toolbar/Icon and text");
1079         }
1080         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), TRUE);
1081
1082         gtk_widget_hide(mainwin->hbox_stat);
1083         menuitem = gtk_item_factory_get_item
1084                 (ifactory, "/View/Show or hide/Status bar");
1085         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
1086                                        prefs_common.show_statusbar);
1087         
1088         /* set account selection menu */
1089         ac_menu = gtk_item_factory_get_widget
1090                 (ifactory, "/Configuration/Change current account");
1091         mainwin->ac_menu = ac_menu;
1092
1093         toolbar_main_set_sensitive(mainwin);
1094
1095         /* create actions menu */
1096         main_window_update_actions_menu(mainwin);
1097
1098         /* attach accel groups to main window */
1099 #define ADD_MENU_ACCEL_GROUP_TO_WINDOW(menu,win)                        \
1100         gtk_window_add_accel_group                                      \
1101                 (GTK_WINDOW(win),                                       \
1102                  gtk_item_factory_from_widget(menu)->accel_group);      \
1103         g_signal_connect(G_OBJECT(gtk_item_factory_from_widget(menu)->accel_group), \
1104                         "accel_activate",                               \
1105                         G_CALLBACK(main_window_accel_activate), mainwin);
1106                          
1107         
1108         ADD_MENU_ACCEL_GROUP_TO_WINDOW(summaryview->popupmenu, mainwin->window);
1109         
1110         /* connect the accelerators for equivalent 
1111            menu items in different menus             */
1112         menu_connect_identical_items();
1113
1114
1115         
1116         /* show main window */
1117         gtk_widget_show(mainwin->window);
1118
1119         /* initialize views */
1120         folderview_init(folderview);
1121         summary_init(summaryview);
1122         messageview_init(messageview);
1123         log_window_init(mainwin->logwin);
1124         log_window_set_clipping(mainwin->logwin, prefs_common.cliplog,
1125                                 prefs_common.loglength);
1126 #ifdef USE_OPENSSL
1127         sslcertwindow_register_hook();
1128 #endif
1129         mainwin->lock_count = 0;
1130         mainwin->menu_lock_count = 0;
1131         mainwin->cursor_count = 0;
1132
1133         mainwin->progressindicator_hook =
1134                 hooks_register_hook(PROGRESSINDICATOR_HOOKLIST, mainwindow_progressindicator_hook, mainwin);
1135
1136         if (!watch_cursor)
1137                 watch_cursor = gdk_cursor_new(GDK_WATCH);
1138
1139         mainwin_list = g_list_append(mainwin_list, mainwin);
1140
1141         /* init work_offline */
1142         if (prefs_common.work_offline)
1143                 online_switch_clicked (GTK_BUTTON(online_switch), mainwin);
1144
1145         return mainwin;
1146 }
1147
1148 void main_window_destroy(MainWindow *mainwin)
1149 {
1150         /* TODO : destroy other component */
1151         messageview_destroy(mainwin->messageview);
1152         mainwin->messageview = NULL;    
1153 }
1154
1155 void main_window_update_actions_menu(MainWindow *mainwin)
1156 {
1157         GtkItemFactory *ifactory;
1158
1159         ifactory = gtk_item_factory_from_widget(mainwin->menubar);
1160         action_update_mainwin_menu(ifactory, "/Tools/Actions", mainwin);
1161 }
1162
1163 void main_window_cursor_wait(MainWindow *mainwin)
1164 {
1165
1166         if (mainwin->cursor_count == 0)
1167                 gdk_window_set_cursor(mainwin->window->window, watch_cursor);
1168
1169         mainwin->cursor_count++;
1170
1171         gdk_flush();
1172 }
1173
1174 void main_window_cursor_normal(MainWindow *mainwin)
1175 {
1176         if (mainwin->cursor_count)
1177                 mainwin->cursor_count--;
1178
1179         if (mainwin->cursor_count == 0)
1180                 gdk_window_set_cursor(mainwin->window->window, NULL);
1181
1182         gdk_flush();
1183 }
1184
1185 /* lock / unlock the user-interface */
1186 void main_window_lock(MainWindow *mainwin)
1187 {
1188         if (mainwin->lock_count == 0)
1189                 gtk_widget_set_sensitive(mainwin->ac_button, FALSE);
1190
1191         mainwin->lock_count++;
1192
1193         main_window_set_menu_sensitive(mainwin);
1194         toolbar_main_set_sensitive(mainwin);
1195 }
1196
1197 void main_window_unlock(MainWindow *mainwin)
1198 {
1199         if (mainwin->lock_count)
1200                 mainwin->lock_count--;
1201
1202         main_window_set_menu_sensitive(mainwin);
1203         toolbar_main_set_sensitive(mainwin);
1204
1205         if (mainwin->lock_count == 0)
1206                 gtk_widget_set_sensitive(mainwin->ac_button, TRUE);
1207 }
1208
1209 static void main_window_menu_callback_block(MainWindow *mainwin)
1210 {
1211         mainwin->menu_lock_count++;
1212 }
1213
1214 static void main_window_menu_callback_unblock(MainWindow *mainwin)
1215 {
1216         if (mainwin->menu_lock_count)
1217                 mainwin->menu_lock_count--;
1218 }
1219
1220 static guint prefs_tag = 0;
1221
1222 void main_window_reflect_prefs_all(void)
1223 {
1224         main_window_reflect_prefs_all_real(FALSE);
1225 }
1226
1227 static gboolean reflect_prefs_timeout_cb(gpointer data) 
1228 {
1229         gboolean pixmap_theme_changed = GPOINTER_TO_INT(data);
1230         GList *cur;
1231         MainWindow *mainwin;
1232         GtkWidget *pixmap;
1233
1234         for (cur = mainwin_list; cur != NULL; cur = cur->next) {
1235                 mainwin = (MainWindow *)cur->data;
1236
1237                 main_window_show_cur_account(mainwin);
1238                 main_window_set_menu_sensitive(mainwin);
1239                 toolbar_main_set_sensitive(mainwin);
1240
1241                 /* pixmap themes */
1242                 if (pixmap_theme_changed) {
1243                         toolbar_update(TOOLBAR_MAIN, mainwin);
1244                         messageview_reflect_prefs_pixmap_theme();
1245                         compose_reflect_prefs_pixmap_theme();
1246                         folderview_reflect_prefs_pixmap_theme(mainwin->folderview);
1247                         summary_reflect_prefs_pixmap_theme(mainwin->summaryview);
1248
1249                         pixmap = stock_pixmap_widget(mainwin->hbox_stat, STOCK_PIXMAP_ONLINE);
1250                         gtk_container_remove(GTK_CONTAINER(mainwin->online_switch), 
1251                                              mainwin->online_pixmap);
1252                         gtk_container_add (GTK_CONTAINER(mainwin->online_switch), pixmap);
1253                         gtk_widget_show(pixmap);
1254                         mainwin->online_pixmap = pixmap;
1255                         pixmap = stock_pixmap_widget(mainwin->hbox_stat, STOCK_PIXMAP_OFFLINE);
1256                         gtk_container_remove(GTK_CONTAINER(mainwin->offline_switch), 
1257                                              mainwin->offline_pixmap);
1258                         gtk_container_add (GTK_CONTAINER(mainwin->offline_switch), pixmap);
1259                         gtk_widget_show(pixmap);
1260                         mainwin->offline_pixmap = pixmap;
1261                 }
1262                 
1263                 headerview_set_font(mainwin->messageview->headerview);
1264                 headerview_set_visibility(mainwin->messageview->headerview,
1265                                           prefs_common.display_header_pane);
1266                 textview_reflect_prefs(mainwin->messageview->mimeview->textview);
1267                 folderview_reflect_prefs();
1268                 summary_reflect_prefs();
1269                 summary_redisplay_msg(mainwin->summaryview);
1270         }
1271         prefs_tag = 0;
1272         return FALSE;
1273 }
1274
1275 void main_window_reflect_prefs_all_real(gboolean pixmap_theme_changed)
1276 {
1277         if (prefs_tag == 0 || pixmap_theme_changed) {
1278                 prefs_tag = g_timeout_add(500, reflect_prefs_timeout_cb, 
1279                                                 GINT_TO_POINTER(pixmap_theme_changed));
1280         }
1281 }
1282
1283 void main_window_set_summary_column(void)
1284 {
1285         GList *cur;
1286         MainWindow *mainwin;
1287
1288         for (cur = mainwin_list; cur != NULL; cur = cur->next) {
1289                 mainwin = (MainWindow *)cur->data;
1290                 summary_set_column_order(mainwin->summaryview);
1291         }
1292 }
1293
1294 void main_window_set_folder_column(void)
1295 {
1296         GList *cur;
1297         MainWindow *mainwin;
1298
1299         for (cur = mainwin_list; cur != NULL; cur = cur->next) {
1300                 mainwin = (MainWindow *)cur->data;
1301                 folderview_set_column_order(mainwin->folderview);
1302         }
1303 }
1304
1305 static void main_window_set_account_selector_menu(MainWindow *mainwin,
1306                                                   GList *account_list)
1307 {
1308         GList *cur_ac, *cur_item;
1309         GtkWidget *menuitem;
1310         PrefsAccount *ac_prefs;
1311
1312         /* destroy all previous menu item */
1313         cur_item = GTK_MENU_SHELL(mainwin->ac_menu)->children;
1314         while (cur_item != NULL) {
1315                 GList *next = cur_item->next;
1316                 gtk_widget_destroy(GTK_WIDGET(cur_item->data));
1317                 cur_item = next;
1318         }
1319
1320         for (cur_ac = account_list; cur_ac != NULL; cur_ac = cur_ac->next) {
1321                 ac_prefs = (PrefsAccount *)cur_ac->data;
1322
1323                 menuitem = gtk_menu_item_new_with_label
1324                         (ac_prefs->account_name
1325                          ? ac_prefs->account_name : _("Untitled"));
1326                 gtk_widget_show(menuitem);
1327                 gtk_menu_append(GTK_MENU(mainwin->ac_menu), menuitem);
1328                 g_signal_connect(G_OBJECT(menuitem), "activate",
1329                                  G_CALLBACK(account_selector_menu_cb),
1330                                  ac_prefs);
1331         }
1332 }
1333
1334 static void main_window_set_account_receive_menu(MainWindow *mainwin,
1335                                                  GList *account_list)
1336 {
1337         GList *cur_ac, *cur_item;
1338         GtkWidget *menu;
1339         GtkWidget *menuitem;
1340         PrefsAccount *ac_prefs;
1341
1342         menu = gtk_item_factory_get_widget(mainwin->menu_factory,
1343                                            "/Message/Receive");
1344
1345         /* search for separator */
1346         for (cur_item = GTK_MENU_SHELL(menu)->children; cur_item != NULL;
1347              cur_item = cur_item->next) {
1348                 if (GTK_BIN(cur_item->data)->child == NULL) {
1349                         cur_item = cur_item->next;
1350                         break;
1351                 }
1352         }
1353
1354         /* destroy all previous menu item */
1355         while (cur_item != NULL) {
1356                 GList *next = cur_item->next;
1357                 gtk_widget_destroy(GTK_WIDGET(cur_item->data));
1358                 cur_item = next;
1359         }
1360
1361         for (cur_ac = account_list; cur_ac != NULL; cur_ac = cur_ac->next) {
1362                 ac_prefs = (PrefsAccount *)cur_ac->data;
1363
1364                 menuitem = gtk_menu_item_new_with_label
1365                         (ac_prefs->account_name ? ac_prefs->account_name
1366                          : _("Untitled"));
1367                 gtk_widget_show(menuitem);
1368                 gtk_menu_append(GTK_MENU(menu), menuitem);
1369                 g_signal_connect(G_OBJECT(menuitem), "activate",
1370                                  G_CALLBACK(account_receive_menu_cb),
1371                                  ac_prefs);
1372         }
1373 }
1374
1375 void main_window_set_account_menu(GList *account_list)
1376 {
1377         GList *cur;
1378         MainWindow *mainwin;
1379
1380         for (cur = mainwin_list; cur != NULL; cur = cur->next) {
1381                 mainwin = (MainWindow *)cur->data;
1382                 main_window_set_account_selector_menu(mainwin, account_list);
1383                 main_window_set_account_receive_menu(mainwin, account_list);
1384         }
1385 }
1386
1387 static void main_window_show_cur_account(MainWindow *mainwin)
1388 {
1389         gchar *buf;
1390         gchar *ac_name;
1391
1392         ac_name = g_strdup(cur_account
1393                            ? (cur_account->account_name
1394                               ? cur_account->account_name : _("Untitled"))
1395                            : _("none"));
1396
1397         if (cur_account)
1398                 buf = g_strdup_printf("%s - %s", ac_name, PROG_VERSION);
1399         else
1400                 buf = g_strdup(PROG_VERSION);
1401         gtk_window_set_title(GTK_WINDOW(mainwin->window), buf);
1402         g_free(buf);
1403
1404         gtk_label_set_text(GTK_LABEL(mainwin->ac_label), ac_name);
1405         gtk_widget_queue_resize(mainwin->ac_button);
1406
1407         g_free(ac_name);
1408 }
1409
1410 GtkWidget *main_window_get_folder_window(MainWindow *mainwin)
1411 {
1412         switch (mainwin->type) {
1413         case SEPARATE_FOLDER:
1414                 return mainwin->win.sep_folder.folderwin;
1415         case SEPARATE_BOTH:
1416                 return mainwin->win.sep_both.folderwin;
1417         default:
1418                 return NULL;
1419         }
1420 }
1421
1422 GtkWidget *main_window_get_message_window(MainWindow *mainwin)
1423 {
1424         switch (mainwin->type) {
1425         case SEPARATE_MESSAGE:
1426                 return mainwin->win.sep_message.messagewin;
1427         case SEPARATE_BOTH:
1428                 return mainwin->win.sep_both.messagewin;
1429         default:
1430                 return NULL;
1431         }
1432 }
1433
1434 void main_window_separation_change(MainWindow *mainwin, SeparateType type)
1435 {
1436         GtkWidget *folder_wid  = GTK_WIDGET_PTR(mainwin->folderview);
1437         GtkWidget *summary_wid = GTK_WIDGET_PTR(mainwin->summaryview);
1438         /* GtkWidget *message_wid = GTK_WIDGET_PTR(mainwin->messageview); */
1439         GtkWidget *message_wid = mainwin->messageview->vbox;
1440
1441         debug_print("Changing window separation type from %d to %d\n",
1442                     mainwin->type, type);
1443
1444         if (mainwin->type == type) return;
1445
1446         /* remove widgets from those containers */
1447         gtk_widget_ref(folder_wid);
1448         gtk_widget_ref(summary_wid);
1449         gtk_widget_ref(message_wid);
1450         gtkut_container_remove
1451                 (GTK_CONTAINER(folder_wid->parent), folder_wid);
1452         gtkut_container_remove
1453                 (GTK_CONTAINER(summary_wid->parent), summary_wid);
1454         gtkut_container_remove
1455                 (GTK_CONTAINER(message_wid->parent), message_wid);
1456
1457         /* clean containers */
1458         switch (mainwin->type) {
1459         case SEPARATE_NONE:
1460                 gtk_widget_destroy(mainwin->win.sep_none.hpaned);
1461                 break;
1462         case SEPARATE_FOLDER:
1463                 gtk_widget_destroy(mainwin->win.sep_folder.vpaned);
1464                 gtk_widget_destroy(mainwin->win.sep_folder.folderwin);
1465                 break;
1466         case SEPARATE_MESSAGE:
1467                 gtk_widget_destroy(mainwin->win.sep_message.hpaned);
1468                 gtk_widget_destroy(mainwin->win.sep_message.messagewin);
1469                 break;
1470         case SEPARATE_BOTH:
1471                 gtk_widget_destroy(mainwin->win.sep_both.messagewin);
1472                 gtk_widget_destroy(mainwin->win.sep_both.folderwin);
1473                 break;
1474         }
1475
1476         gtk_widget_hide(mainwin->window);
1477         main_window_set_widgets(mainwin, type);
1478         gtk_widget_show(mainwin->window);
1479
1480         gtk_widget_unref(folder_wid);
1481         gtk_widget_unref(summary_wid);
1482         gtk_widget_unref(message_wid);
1483 }
1484
1485 void main_window_toggle_message_view(MainWindow *mainwin)
1486 {
1487         SummaryView *summaryview = mainwin->summaryview;
1488         union CompositeWin *cwin = &mainwin->win;
1489         GtkWidget *vpaned = NULL;
1490         GtkWidget *container = NULL;
1491         GtkWidget *msgwin = NULL;
1492
1493         switch (mainwin->type) {
1494         case SEPARATE_NONE:
1495                 vpaned = cwin->sep_none.vpaned;
1496                 container = cwin->sep_none.hpaned;
1497                 break;
1498         case SEPARATE_FOLDER:
1499                 vpaned = cwin->sep_folder.vpaned;
1500                 container = mainwin->vbox_body;
1501                 break;
1502         case SEPARATE_MESSAGE:
1503                 msgwin = mainwin->win.sep_message.messagewin;
1504                 break;
1505         case SEPARATE_BOTH:
1506                 msgwin = mainwin->win.sep_both.messagewin;
1507                 break;
1508         }
1509
1510         if (msgwin) {
1511                 if (GTK_WIDGET_VISIBLE(msgwin)) {
1512                         gtk_widget_hide(msgwin);
1513                         mainwin->messageview->visible = FALSE;
1514                         summaryview->displayed = NULL;
1515                 } else {
1516                         gtk_widget_show(msgwin);
1517                         mainwin->messageview->visible = TRUE;
1518                 }
1519         } else if (vpaned->parent != NULL) {
1520                 mainwin->messageview->visible = FALSE;
1521                 summaryview->displayed = NULL;
1522                 gtk_widget_ref(vpaned);
1523                 gtkut_container_remove(GTK_CONTAINER(container), vpaned);
1524                 gtk_widget_reparent(GTK_WIDGET_PTR(summaryview), container);
1525         } else {
1526                 mainwin->messageview->visible = TRUE;
1527                 gtk_widget_reparent(GTK_WIDGET_PTR(summaryview), vpaned);
1528                 gtk_container_add(GTK_CONTAINER(container), vpaned);
1529                 gtk_widget_unref(vpaned);
1530         }
1531
1532         if (messageview_is_visible(mainwin->messageview))
1533                 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
1534                               GTK_ARROW_DOWN, GTK_SHADOW_OUT);
1535         else
1536                 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
1537                               GTK_ARROW_UP, GTK_SHADOW_OUT);
1538
1539         if (mainwin->messageview->visible == FALSE)
1540                 messageview_clear(mainwin->messageview);
1541
1542         main_window_set_menu_sensitive(mainwin);
1543
1544         prefs_common.msgview_visible = mainwin->messageview->visible;
1545
1546         gtk_widget_grab_focus(summaryview->ctree);
1547 }
1548
1549 void main_window_get_size(MainWindow *mainwin)
1550 {
1551         GtkAllocation *allocation;
1552
1553         if (mainwin->messageview == NULL) {
1554                 debug_print("called after messageview "
1555                             "has been deallocated!\n");
1556                 return;
1557         }
1558
1559         allocation = &(GTK_WIDGET_PTR(mainwin->summaryview)->allocation);
1560
1561         if (allocation->width > 1 && allocation->height > 1) {
1562                 prefs_common.summaryview_width = allocation->width;
1563
1564                 if ((mainwin->type == SEPARATE_NONE ||
1565                      mainwin->type == SEPARATE_FOLDER) &&
1566                     messageview_is_visible(mainwin->messageview))
1567                         prefs_common.summaryview_height = allocation->height;
1568
1569                 prefs_common.mainview_width = allocation->width;
1570         }
1571
1572         allocation = &mainwin->window->allocation;
1573         if (allocation->width > 1 && allocation->height > 1) {
1574                 prefs_common.mainview_height = allocation->height;
1575                 prefs_common.mainwin_width   = allocation->width;
1576                 prefs_common.mainwin_height  = allocation->height;
1577         }
1578
1579         allocation = &(GTK_WIDGET_PTR(mainwin->folderview)->allocation);
1580         if (allocation->width > 1 && allocation->height > 1) {
1581                 prefs_common.folderview_width  = allocation->width;
1582                 prefs_common.folderview_height = allocation->height;
1583         }
1584
1585         allocation = &(GTK_WIDGET_PTR(mainwin->messageview)->allocation);
1586         if (allocation->width > 1 && allocation->height > 1) {
1587                 prefs_common.msgview_width = allocation->width;
1588                 prefs_common.msgview_height = allocation->height;
1589         }
1590
1591 /*      debug_print("summaryview size: %d x %d\n",
1592                     prefs_common.summaryview_width,
1593                     prefs_common.summaryview_height);
1594         debug_print("folderview size: %d x %d\n",
1595                     prefs_common.folderview_width,
1596                     prefs_common.folderview_height);
1597         debug_print("messageview size: %d x %d\n",
1598                     prefs_common.msgview_width,
1599                     prefs_common.msgview_height); */
1600 }
1601
1602 void main_window_get_position(MainWindow *mainwin)
1603 {
1604         gint x, y;
1605         GtkWidget *window;
1606
1607         gtkut_widget_get_uposition(mainwin->window, &x, &y);
1608
1609         prefs_common.mainview_x = x;
1610         prefs_common.mainview_y = y;
1611         prefs_common.mainwin_x = x;
1612         prefs_common.mainwin_y = y;
1613
1614         debug_print("main window position: %d, %d\n", x, y);
1615
1616         window = main_window_get_folder_window(mainwin);
1617         if (window) {
1618                 gtkut_widget_get_uposition(window, &x, &y);
1619                 prefs_common.folderwin_x = x;
1620                 prefs_common.folderwin_y = y;
1621                 debug_print("folder window position: %d, %d\n", x, y);
1622         }
1623         window = main_window_get_message_window(mainwin);
1624         if (window) {
1625                 gtkut_widget_get_uposition(window, &x, &y);
1626                 prefs_common.main_msgwin_x = x;
1627                 prefs_common.main_msgwin_y = y;
1628                 debug_print("message window position: %d, %d\n", x, y);
1629         }
1630 }
1631
1632 void main_window_progress_on(MainWindow *mainwin)
1633 {
1634         gtk_progress_bar_set_text(GTK_PROGRESS_BAR(mainwin->progressbar), "");
1635 }
1636
1637 void main_window_progress_off(MainWindow *mainwin)
1638 {
1639         gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(mainwin->progressbar), 0.0);
1640         gtk_progress_bar_set_text(GTK_PROGRESS_BAR(mainwin->progressbar), "");
1641 }
1642
1643 void main_window_progress_set(MainWindow *mainwin, gint cur, gint total)
1644 {
1645         gchar buf[32];
1646
1647         g_snprintf(buf, sizeof(buf), "%d / %d", cur, total);
1648         gtk_progress_bar_set_text(GTK_PROGRESS_BAR(mainwin->progressbar), buf);
1649         gtk_progress_bar_set_fraction(GTK_PROGRESS_BAR(mainwin->progressbar),
1650                                 (cur == 0 && total == 0) ? 0 :
1651                                 (gfloat)cur / (gfloat)total);
1652 }
1653
1654 void main_window_empty_trash(MainWindow *mainwin, gboolean confirm)
1655 {
1656         if (confirm) {
1657                 if (alertpanel(_("Empty trash"),
1658                                _("Delete all messages in trash folders?"),
1659                                GTK_STOCK_YES, GTK_STOCK_NO, NULL)
1660                     != G_ALERTDEFAULT)
1661                         return;
1662                 manage_window_focus_in(mainwin->window, NULL, NULL);
1663         }
1664
1665         procmsg_empty_all_trash();
1666
1667         if (mainwin->summaryview->folder_item &&
1668             mainwin->summaryview->folder_item->stype == F_TRASH)
1669                 gtk_widget_grab_focus(mainwin->folderview->ctree);
1670 }
1671
1672 void main_window_add_mailbox(MainWindow *mainwin)
1673 {
1674         gchar *path;
1675         Folder *folder;
1676
1677         path = input_dialog(_("Add mailbox"),
1678                             _("Input the location of mailbox.\n"
1679                               "If the existing mailbox is specified, it will be\n"
1680                               "scanned automatically."),
1681                             "Mail");
1682         if (!path) return;
1683         if (folder_find_from_path(path)) {
1684                 alertpanel_error(_("The mailbox '%s' already exists."), path);
1685                 g_free(path);
1686                 return;
1687         }
1688         folder = folder_new(folder_get_class_from_string("mh"), 
1689                             !strcmp(path, "Mail") ? _("Mailbox") : 
1690                             g_path_get_basename(path), path);
1691         g_free(path);
1692
1693         if (folder->klass->create_tree(folder) < 0) {
1694                 alertpanel_error(_("Creation of the mailbox failed.\n"
1695                                    "Maybe some files already exist, or you don't have the permission to write there."));
1696                 folder_destroy(folder);
1697                 return;
1698         }
1699
1700         folder_add(folder);
1701         folder_set_ui_func(folder, scan_tree_func, mainwin);
1702         folder_scan_tree(folder);
1703         folder_set_ui_func(folder, NULL, NULL);
1704 }
1705
1706 SensitiveCond main_window_get_current_state(MainWindow *mainwin)
1707 {
1708         SensitiveCond state = 0;
1709         SummarySelection selection;
1710         FolderItem *item = mainwin->summaryview->folder_item;
1711         GList *account_list = account_get_list();
1712         
1713         selection = summary_get_selection_type(mainwin->summaryview);
1714
1715         if (mainwin->lock_count == 0)
1716                 state |= M_UNLOCKED;
1717         if (selection != SUMMARY_NONE)
1718                 state |= M_MSG_EXIST;
1719         if (item && item->path && folder_item_parent(item) && !item->no_select) {
1720                 state |= M_EXEC;
1721                 /*              if (item->folder->type != F_NEWS) */
1722                 state |= M_ALLOW_DELETE;
1723
1724                 if (prefs_common.immediate_exec == 0
1725                     && mainwin->lock_count == 0)
1726                         state |= M_DELAY_EXEC;
1727
1728                 if ((selection == SUMMARY_NONE && item->hide_read_msgs)
1729                     || selection != SUMMARY_NONE)
1730                         state |= M_HIDE_READ_MSG;       
1731         }               
1732         if (mainwin->summaryview->threaded)
1733                 state |= M_THREADED;
1734         else
1735                 state |= M_UNTHREADED;  
1736         if (selection == SUMMARY_SELECTED_SINGLE ||
1737             selection == SUMMARY_SELECTED_MULTIPLE)
1738                 state |= M_TARGET_EXIST;
1739         if (selection == SUMMARY_SELECTED_SINGLE)
1740                 state |= M_SINGLE_TARGET_EXIST;
1741         if (mainwin->summaryview->folder_item &&
1742             mainwin->summaryview->folder_item->folder->klass->type == F_NEWS)
1743                 state |= M_NEWS;
1744         else
1745                 state |= M_NOT_NEWS;
1746         if (selection == SUMMARY_SELECTED_SINGLE &&
1747             (item &&
1748              (folder_has_parent_of_type(item, F_DRAFT) ||
1749               folder_has_parent_of_type(item, F_OUTBOX) ||
1750               folder_has_parent_of_type(item, F_QUEUE))))
1751                 state |= M_ALLOW_REEDIT;
1752         if (cur_account)
1753                 state |= M_HAVE_ACCOUNT;
1754         
1755         for ( ; account_list != NULL; account_list = account_list->next) {
1756                 if (((PrefsAccount*)account_list->data)->protocol == A_NNTP) {
1757                         state |= M_HAVE_NEWS_ACCOUNT;
1758                         break;
1759                 }
1760         }
1761
1762         if (inc_is_active())
1763                 state |= M_INC_ACTIVE;
1764
1765         return state;
1766 }
1767
1768
1769
1770 void main_window_set_menu_sensitive(MainWindow *mainwin)
1771 {
1772         GtkItemFactory *ifactory = mainwin->menu_factory;
1773         SensitiveCond state;
1774         gboolean sensitive;
1775         GtkWidget *menu;
1776         GtkWidget *menuitem;
1777         SummaryView *summaryview;
1778         gchar *menu_path;
1779         gint i;
1780         GList *cur_item;
1781
1782         static const struct {
1783                 gchar *const entry;
1784                 SensitiveCond cond;
1785         } entry[] = {
1786                 {"/File/Add mailbox"                          , M_UNLOCKED},
1787
1788                 {"/File/Add mailbox/MH..."                    , M_UNLOCKED},
1789                 {"/File/Change folder order"                  , M_UNLOCKED},
1790                 {"/File/Export to mbox file..."               , M_UNLOCKED},
1791                 {"/File/Empty all Trash folders"              , M_UNLOCKED},
1792                 {"/File/Work offline"                         , M_UNLOCKED},
1793
1794                 {"/File/Save as...", M_TARGET_EXIST|M_UNLOCKED},
1795                 {"/File/Print..."  , M_TARGET_EXIST|M_UNLOCKED},
1796                 /* {"/File/Close"  , M_UNLOCKED}, */
1797                 {"/File/Exit"      , M_UNLOCKED},
1798
1799                 {"/Edit/Select thread"             , M_SINGLE_TARGET_EXIST},
1800
1801                 {"/View/Sort"                      , M_EXEC},
1802                 {"/View/Thread view"               , M_EXEC},
1803                 {"/View/Expand all threads"        , M_MSG_EXIST},
1804                 {"/View/Collapse all threads"      , M_MSG_EXIST},
1805                 {"/View/Hide read messages"        , M_HIDE_READ_MSG},
1806                 {"/View/Go to/Prev message"        , M_MSG_EXIST},
1807                 {"/View/Go to/Next message"        , M_MSG_EXIST},
1808                 {"/View/Go to/Prev unread message" , M_MSG_EXIST},
1809                 {"/View/Go to/Prev new message"    , M_MSG_EXIST},
1810                 {"/View/Go to/Prev marked message" , M_MSG_EXIST},
1811                 {"/View/Go to/Next marked message" , M_MSG_EXIST},
1812                 {"/View/Go to/Prev labeled message", M_MSG_EXIST},
1813                 {"/View/Go to/Next labeled message", M_MSG_EXIST},
1814                 {"/View/Open in new window"        , M_SINGLE_TARGET_EXIST},
1815                 {"/View/Show all headers"          , M_SINGLE_TARGET_EXIST},
1816                 {"/View/Message source"            , M_SINGLE_TARGET_EXIST},
1817
1818                 {"/Message/Receive/Get from current account"
1819                                                  , M_HAVE_ACCOUNT|M_UNLOCKED},
1820                 {"/Message/Receive/Get from all accounts"
1821                                                  , M_HAVE_ACCOUNT|M_UNLOCKED},
1822                 {"/Message/Receive/Cancel receiving"
1823                                                  , M_INC_ACTIVE},
1824
1825                 {"/Message/Compose a news message", M_HAVE_NEWS_ACCOUNT},
1826                 {"/Message/Reply"                 , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1827                 {"/Message/Reply to"              , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1828                 {"/Message/Follow-up and reply to", M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST|M_NEWS},
1829                 {"/Message/Forward"               , M_HAVE_ACCOUNT|M_TARGET_EXIST},
1830                 {"/Message/Redirect"              , M_HAVE_ACCOUNT|M_SINGLE_TARGET_EXIST},
1831                 {"/Message/Move..."               , M_TARGET_EXIST|M_ALLOW_DELETE|M_UNLOCKED},
1832                 {"/Message/Copy..."               , M_TARGET_EXIST|M_EXEC|M_UNLOCKED},
1833                 {"/Message/Move to trash"         , M_TARGET_EXIST|M_ALLOW_DELETE|M_UNLOCKED|M_NOT_NEWS},
1834                 {"/Message/Delete..."             , M_TARGET_EXIST|M_ALLOW_DELETE|M_UNLOCKED|M_NOT_NEWS},
1835                 {"/Message/Cancel a news message" , M_TARGET_EXIST|M_ALLOW_DELETE|M_UNLOCKED|M_NEWS},
1836                 {"/Message/Mark"                  , M_TARGET_EXIST},
1837                 {"/Message/Re-edit"               , M_HAVE_ACCOUNT|M_ALLOW_REEDIT},
1838
1839                 {"/Tools/Add sender to address book"   , M_SINGLE_TARGET_EXIST},
1840                 {"/Tools/Harvest addresses"            , M_UNLOCKED},
1841                 {"/Tools/Harvest addresses/from Folder..."       
1842                                                        , M_UNLOCKED|M_MSG_EXIST},
1843                 {"/Tools/Harvest addresses/from Messages..."
1844                                                        , M_UNLOCKED|M_MSG_EXIST|M_TARGET_EXIST},
1845                 {"/Tools/Harvest addresses"            , M_UNLOCKED},
1846                 {"/Tools/Filter all messages in folder", M_MSG_EXIST|M_EXEC|M_UNLOCKED},
1847                 {"/Tools/Filter selected messages"     , M_TARGET_EXIST|M_EXEC|M_UNLOCKED},
1848                 {"/Tools/Create filter rule"           , M_SINGLE_TARGET_EXIST|M_UNLOCKED},
1849                 {"/Tools/Actions"                      , M_TARGET_EXIST|M_UNLOCKED},
1850                 {"/Tools/Execute"                      , M_DELAY_EXEC},
1851                 {"/Tools/Delete duplicated messages/In selected folder"   , M_MSG_EXIST|M_ALLOW_DELETE|M_UNLOCKED},
1852
1853                 {"/Configuration", M_UNLOCKED},
1854
1855                 {NULL, 0}
1856         };
1857
1858         state = main_window_get_current_state(mainwin);
1859
1860         for (i = 0; entry[i].entry != NULL; i++) {
1861                 sensitive = ((entry[i].cond & state) == entry[i].cond);
1862                 menu_set_sensitive(ifactory, entry[i].entry, sensitive);
1863         }
1864
1865         menu = gtk_item_factory_get_widget(ifactory, "/Message/Receive");
1866
1867         /* search for separator */
1868         for (cur_item = GTK_MENU_SHELL(menu)->children; cur_item != NULL;
1869              cur_item = cur_item->next) {
1870                 if (GTK_BIN(cur_item->data)->child == NULL) {
1871                         cur_item = cur_item->next;
1872                         break;
1873                 }
1874         }
1875
1876         for (; cur_item != NULL; cur_item = cur_item->next) {
1877                 gtk_widget_set_sensitive(GTK_WIDGET(cur_item->data),
1878                                          (M_UNLOCKED & state) != 0);
1879         }
1880
1881         main_window_menu_callback_block(mainwin);
1882
1883 #define SET_CHECK_MENU_ACTIVE(path, active) \
1884 { \
1885         menuitem = gtk_item_factory_get_widget(ifactory, path); \
1886         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), active); \
1887 }
1888
1889         SET_CHECK_MENU_ACTIVE("/View/Show or hide/Message view",
1890                               messageview_is_visible(mainwin->messageview));
1891
1892         summaryview = mainwin->summaryview;
1893         menu_path = "/View/Sort/Don't sort";
1894
1895         switch (summaryview->sort_key) {
1896         case SORT_BY_NUMBER:
1897                 menu_path = "/View/Sort/by number"; break;
1898         case SORT_BY_SIZE:
1899                 menu_path = "/View/Sort/by Size"; break;
1900         case SORT_BY_DATE:
1901                 menu_path = "/View/Sort/by Date"; break;
1902         case SORT_BY_FROM:
1903                 menu_path = "/View/Sort/by From"; break;
1904         case SORT_BY_TO:
1905                 menu_path = "/View/Sort/by To"; break;
1906         case SORT_BY_SUBJECT:
1907                 menu_path = "/View/Sort/by Subject"; break;
1908         case SORT_BY_LABEL:
1909                 menu_path = "/View/Sort/by color label"; break;
1910         case SORT_BY_MARK:
1911                 menu_path = "/View/Sort/by mark"; break;
1912         case SORT_BY_STATUS:
1913                 menu_path = "/View/Sort/by status"; break;
1914         case SORT_BY_MIME:
1915                 menu_path = "/View/Sort/by attachment"; break;
1916         case SORT_BY_SCORE:
1917                 menu_path = "/View/Sort/by score"; break;
1918         case SORT_BY_LOCKED:
1919                 menu_path = "/View/Sort/by locked"; break;
1920         case SORT_BY_NONE:
1921         default:
1922                 menu_path = "/View/Sort/Don't sort"; break;
1923         }
1924         SET_CHECK_MENU_ACTIVE(menu_path, TRUE);
1925
1926         if (summaryview->sort_type == SORT_ASCENDING) {
1927                 SET_CHECK_MENU_ACTIVE("/View/Sort/Ascending", TRUE);
1928         } else {
1929                 SET_CHECK_MENU_ACTIVE("/View/Sort/Descending", TRUE);
1930         }
1931
1932         if (summaryview->sort_key != SORT_BY_NONE) {
1933                 menu_set_sensitive(ifactory, "/View/Sort/Ascending", TRUE);
1934                 menu_set_sensitive(ifactory, "/View/Sort/Descending", TRUE);
1935         } else {
1936                 menu_set_sensitive(ifactory, "/View/Sort/Ascending", FALSE);
1937                 menu_set_sensitive(ifactory, "/View/Sort/Descending", FALSE);
1938         }
1939
1940         SET_CHECK_MENU_ACTIVE("/View/Show all headers",
1941                               mainwin->messageview->mimeview->textview->show_all_headers);
1942         SET_CHECK_MENU_ACTIVE("/View/Thread view", (state & M_THREADED) != 0);
1943
1944 #undef SET_CHECK_MENU_ACTIVE
1945
1946         main_window_menu_callback_unblock(mainwin);
1947 }
1948
1949 void main_window_popup(MainWindow *mainwin)
1950 {
1951         gtkut_window_popup(mainwin->window);
1952
1953         switch (mainwin->type) {
1954         case SEPARATE_FOLDER:
1955                 gtkut_window_popup(mainwin->win.sep_folder.folderwin);
1956                 break;
1957         case SEPARATE_MESSAGE:
1958                 gtkut_window_popup(mainwin->win.sep_message.messagewin);
1959                 break;
1960         case SEPARATE_BOTH:
1961                 gtkut_window_popup(mainwin->win.sep_both.folderwin);
1962                 gtkut_window_popup(mainwin->win.sep_both.messagewin);
1963                 break;
1964         default:
1965                 break;
1966         }
1967 }
1968
1969 void main_window_show(MainWindow *mainwin)
1970 {
1971         gtk_widget_show(mainwin->window);
1972         gtk_widget_show(mainwin->vbox_body);
1973
1974         gtk_widget_set_uposition(mainwin->window,
1975                                  prefs_common.mainwin_x,
1976                                  prefs_common.mainwin_y);
1977
1978         gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->folderview),
1979                              prefs_common.folderview_width,
1980                              prefs_common.folderview_height);
1981         gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->summaryview),
1982                              prefs_common.summaryview_width,
1983                              prefs_common.summaryview_height);
1984         gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->messageview),
1985                              prefs_common.msgview_width,
1986                              prefs_common.msgview_height);
1987
1988         if (mainwin->type & SEPARATE_FOLDER) {
1989                 GtkWidget *folderwin;
1990
1991                 folderwin = main_window_get_folder_window(mainwin);
1992                 gtk_widget_show(folderwin);
1993                 gtk_widget_set_uposition(folderwin, prefs_common.folderwin_x,
1994                                          prefs_common.folderwin_y);
1995         }
1996
1997         if (mainwin->type & SEPARATE_MESSAGE) {
1998                 GtkWidget *messagewin;
1999
2000                 messagewin = main_window_get_message_window(mainwin);
2001                 gtk_widget_show(messagewin);
2002                 gtk_widget_set_uposition(messagewin, prefs_common.main_msgwin_x,
2003                                          prefs_common.main_msgwin_y);
2004         }
2005 }
2006
2007 void main_window_hide(MainWindow *mainwin)
2008 {
2009         main_window_get_size(mainwin);
2010         main_window_get_position(mainwin);
2011
2012         gtk_widget_hide(mainwin->window);
2013         gtk_widget_hide(mainwin->vbox_body);
2014
2015         if (mainwin->type & SEPARATE_FOLDER) {
2016                 gtk_widget_hide(mainwin->win.sep_folder.folderwin);
2017         }
2018
2019         if (mainwin->type & SEPARATE_MESSAGE) {
2020                 gtk_widget_hide(mainwin->win.sep_message.messagewin);
2021         }
2022 }
2023
2024 static void main_window_set_widgets(MainWindow *mainwin, SeparateType type)
2025 {
2026         GtkWidget *folderwin = NULL;
2027         GtkWidget *messagewin = NULL;
2028         GtkWidget *hpaned;
2029         GtkWidget *vpaned;
2030         GtkWidget *vbox_body = mainwin->vbox_body;
2031         GtkItemFactory *ifactory = mainwin->menu_factory;
2032         GtkWidget *menuitem;
2033         GtkItemFactory *msgview_ifactory;
2034
2035         debug_print("Setting widgets... ");
2036
2037         gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->folderview),
2038                                     prefs_common.folderview_width,
2039                                     prefs_common.folderview_height);
2040         gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->summaryview),
2041                                     prefs_common.summaryview_width,
2042                                     prefs_common.summaryview_height);
2043         gtk_widget_set_size_request(GTK_WIDGET_PTR(mainwin->messageview),
2044                                     prefs_common.msgview_width,
2045                                     prefs_common.msgview_height);
2046
2047         /* create separated window(s) if needed */
2048         if (type & SEPARATE_FOLDER) {
2049                 static GdkGeometry folderwin_geometry;
2050                 
2051                 folderwin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
2052                 gtk_window_set_title(GTK_WINDOW(folderwin),
2053                                      _("Sylpheed - Folder View"));
2054
2055                 gtk_window_move(GTK_WINDOW(folderwin),
2056                                 prefs_common.folderwin_x,
2057                                 prefs_common.folderwin_y);
2058
2059                 if (!folderwin_geometry.min_height) {
2060                         folderwin_geometry.min_width = 320;
2061                         folderwin_geometry.min_height = 200;
2062                 }
2063                 gtk_window_set_geometry_hints(GTK_WINDOW(folderwin), NULL,
2064                                               &folderwin_geometry, GDK_HINT_MIN_SIZE);
2065                                 
2066                 gtk_widget_set_size_request(folderwin,
2067                                             prefs_common.folderview_width,
2068                                             prefs_common.folderview_height);
2069
2070                 gtk_container_set_border_width(GTK_CONTAINER(folderwin),
2071                                                BORDER_WIDTH);
2072
2073                 g_signal_connect(G_OBJECT(folderwin), "delete_event",
2074                                  G_CALLBACK(folder_window_close_cb),
2075                                    mainwin);
2076                 gtk_container_add(GTK_CONTAINER(folderwin),
2077                                   GTK_WIDGET_PTR(mainwin->folderview));
2078                 gtk_widget_realize(folderwin);
2079
2080                 if (prefs_common.folderview_visible)
2081                         gtk_widget_show(folderwin);
2082         }
2083
2084         if (type & SEPARATE_MESSAGE) {
2085                 static GdkGeometry msgwin_geometry;
2086                 
2087                 messagewin = gtk_window_new(GTK_WINDOW_TOPLEVEL);
2088                 gtk_window_set_title(GTK_WINDOW(messagewin),
2089                                      _("Sylpheed - Message View"));
2090                                      
2091                 gtk_window_move(GTK_WINDOW(messagewin), 
2092                                 prefs_common.main_msgwin_x,
2093                                 prefs_common.main_msgwin_y);
2094
2095                 if (!msgwin_geometry.min_height) {
2096                         msgwin_geometry.min_width = 320;
2097                         msgwin_geometry.min_height = 200;
2098                 }
2099                 gtk_window_set_geometry_hints(GTK_WINDOW(messagewin), NULL,
2100                                               &msgwin_geometry, GDK_HINT_MIN_SIZE);
2101                 
2102                 gtk_widget_set_size_request(messagewin, 
2103                                             prefs_common.msgwin_width,
2104                                             prefs_common.msgwin_height);
2105
2106                 gtk_container_set_border_width(GTK_CONTAINER(messagewin),
2107                                                BORDER_WIDTH);
2108                 g_signal_connect(G_OBJECT(messagewin), "delete_event",
2109                                  G_CALLBACK(message_window_close_cb),
2110                                  mainwin);
2111                 if (messageview_is_visible(mainwin->messageview))
2112                         gtk_widget_show(messagewin);
2113         } else {
2114                 mainwin->messageview->statusbar = mainwin->statusbar;
2115                 mainwin->messageview->statusbar_cid = mainwin->messageview_cid;
2116         }
2117
2118         switch (type) {
2119         case SEPARATE_NONE:
2120                 hpaned = gtk_hpaned_new();
2121                 gtk_box_pack_start(GTK_BOX(vbox_body), hpaned, TRUE, TRUE, 0);
2122                 gtk_paned_add1(GTK_PANED(hpaned),
2123                                GTK_WIDGET_PTR(mainwin->folderview));
2124                 gtk_widget_show(hpaned);
2125                 gtk_widget_queue_resize(hpaned);
2126
2127                 vpaned = gtk_vpaned_new();
2128                 if (messageview_is_visible(mainwin->messageview)) {
2129                         gtk_paned_add2(GTK_PANED(hpaned), vpaned);
2130                         gtk_paned_add1(GTK_PANED(vpaned),
2131                                        GTK_WIDGET_PTR(mainwin->summaryview));
2132                 } else {
2133                         gtk_paned_add2(GTK_PANED(hpaned),
2134                                        GTK_WIDGET_PTR(mainwin->summaryview));
2135                         gtk_widget_ref(vpaned);
2136                 }
2137                 gtk_paned_add2(GTK_PANED(vpaned),
2138                                GTK_WIDGET_PTR(mainwin->messageview));
2139                 gtk_widget_show(vpaned);
2140                 gtk_widget_queue_resize(vpaned);
2141
2142                 mainwin->win.sep_none.hpaned = hpaned;
2143                 mainwin->win.sep_none.vpaned = vpaned;
2144                 
2145                 /* remove headerview if not in prefs */
2146                 headerview_set_visibility(mainwin->messageview->headerview,
2147                                           prefs_common.display_header_pane);
2148                 break;
2149         case SEPARATE_FOLDER:
2150                 vpaned = gtk_vpaned_new();
2151                 if (messageview_is_visible(mainwin->messageview)) {
2152                         gtk_box_pack_start(GTK_BOX(vbox_body), vpaned,
2153                                            TRUE, TRUE, 0);
2154                         gtk_paned_add1(GTK_PANED(vpaned),
2155                                        GTK_WIDGET_PTR(mainwin->summaryview));
2156                 } else {
2157                         gtk_box_pack_start(GTK_BOX(vbox_body),
2158                                            GTK_WIDGET_PTR(mainwin->summaryview),
2159                                            TRUE, TRUE, 0);
2160                         gtk_widget_ref(vpaned);
2161                 }
2162                 gtk_paned_add2(GTK_PANED(vpaned),
2163                                GTK_WIDGET_PTR(mainwin->messageview));
2164                 gtk_widget_show(vpaned);
2165                 gtk_widget_queue_resize(vpaned);
2166
2167                 mainwin->win.sep_folder.folderwin = folderwin;
2168                 mainwin->win.sep_folder.vpaned    = vpaned;
2169
2170                 /* remove headerview if not in prefs */
2171                 headerview_set_visibility(mainwin->messageview->headerview,
2172                                           prefs_common.display_header_pane);
2173                 
2174                 break;
2175         case SEPARATE_MESSAGE:
2176                 hpaned = gtk_hpaned_new();
2177                 gtk_box_pack_start(GTK_BOX(vbox_body), hpaned, TRUE, TRUE, 0);
2178                 gtk_paned_add1(GTK_PANED(hpaned),
2179                                GTK_WIDGET_PTR(mainwin->folderview));
2180                 gtk_paned_add2(GTK_PANED(hpaned),
2181                                GTK_WIDGET_PTR(mainwin->summaryview));
2182                 gtk_widget_show(hpaned);
2183                 gtk_widget_queue_resize(hpaned);
2184                 messageview_add_toolbar(mainwin->messageview, messagewin);
2185                 msgview_ifactory = gtk_item_factory_from_widget(mainwin->messageview->menubar);
2186                 menu_set_sensitive(msgview_ifactory, "/File/Close", FALSE);
2187
2188                 mainwin->win.sep_message.messagewin = messagewin;
2189                 mainwin->win.sep_message.hpaned     = hpaned;
2190
2191                 gtk_widget_realize(messagewin);
2192                 gtk_widget_show_all(GTK_WIDGET_PTR(mainwin->messageview));
2193                 gtk_widget_show_all(messagewin);
2194                 toolbar_set_style(mainwin->messageview->toolbar->toolbar, 
2195                                   mainwin->messageview->handlebox, 
2196                                   prefs_common.toolbar_style);
2197
2198                 break;
2199         case SEPARATE_BOTH:
2200                 messageview_add_toolbar(mainwin->messageview, messagewin);
2201                 msgview_ifactory = gtk_item_factory_from_widget(mainwin->messageview->menubar);
2202                 menu_set_sensitive(msgview_ifactory, "/File/Close", FALSE);
2203
2204                 gtk_box_pack_start(GTK_BOX(vbox_body),
2205                                    GTK_WIDGET_PTR(mainwin->summaryview),
2206                                    TRUE, TRUE, 0);
2207                 
2208                 mainwin->win.sep_both.folderwin = folderwin;
2209                 mainwin->win.sep_both.messagewin = messagewin;
2210                 
2211                 gtk_widget_realize(messagewin);
2212                 gtk_widget_show_all(GTK_WIDGET_PTR(mainwin->messageview));
2213                 gtk_widget_show_all(messagewin);
2214                 toolbar_set_style(mainwin->messageview->toolbar->toolbar, 
2215                                   mainwin->messageview->handlebox, 
2216                                   prefs_common.toolbar_style);          
2217
2218                 break;
2219         }
2220
2221         if (messageview_is_visible(mainwin->messageview))
2222                 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
2223                               GTK_ARROW_DOWN, GTK_SHADOW_OUT);
2224         else
2225                 gtk_arrow_set(GTK_ARROW(mainwin->summaryview->toggle_arrow),
2226                               GTK_ARROW_UP, GTK_SHADOW_OUT);
2227
2228         gtk_window_move(GTK_WINDOW(mainwin->window),
2229                         prefs_common.mainwin_x,
2230                         prefs_common.mainwin_y);
2231
2232         gtk_widget_queue_resize(vbox_body);
2233         gtk_widget_queue_resize(mainwin->vbox);
2234         gtk_widget_queue_resize(mainwin->window);
2235         /* CLAWS: previous "gtk_widget_show_all" makes noticeview
2236          * and mimeview icon list/ctree lose track of their visibility states */
2237         if (!noticeview_is_visible(mainwin->messageview->noticeview)) 
2238                 gtk_widget_hide(GTK_WIDGET_PTR(mainwin->messageview->noticeview));
2239         if (!noticeview_is_visible(mainwin->messageview->mimeview->siginfoview)) 
2240                 gtk_widget_hide(GTK_WIDGET_PTR(mainwin->messageview->mimeview->siginfoview));
2241         if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(mainwin->messageview->mimeview->mime_toggle)))
2242                 gtk_widget_hide(mainwin->messageview->mimeview->icon_mainbox);
2243         else 
2244                 gtk_widget_hide(mainwin->messageview->mimeview->ctree_mainbox);
2245
2246         mainwin->type = type;
2247
2248
2249         /* toggle menu state */
2250         menuitem = gtk_item_factory_get_item
2251                 (ifactory, "/View/Show or hide/Folder tree");
2252         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
2253                                        (type & SEPARATE_FOLDER) == 0 ? TRUE :
2254                                        prefs_common.folderview_visible);
2255         gtk_widget_set_sensitive(menuitem, ((type & SEPARATE_FOLDER) != 0));
2256         menuitem = gtk_item_factory_get_item
2257                 (ifactory, "/View/Show or hide/Message view");
2258         gtk_check_menu_item_set_active
2259                 (GTK_CHECK_MENU_ITEM(menuitem),
2260                  messageview_is_visible(mainwin->messageview));
2261
2262         menuitem = gtk_item_factory_get_item
2263                 (ifactory, "/View/Separate folder tree");
2264         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
2265                                        ((type & SEPARATE_FOLDER) != 0));
2266         menuitem = gtk_item_factory_get_item
2267                 (ifactory, "/View/Separate message view");
2268         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem),
2269                                        ((type & SEPARATE_MESSAGE) != 0));
2270
2271         if (folderwin) {
2272                 g_signal_connect
2273                         (G_OBJECT(folderwin), "size_allocate",
2274                          G_CALLBACK(folder_window_size_allocate_cb),
2275                          mainwin);
2276         }
2277         if (messagewin) {
2278                 g_signal_connect
2279                         (G_OBJECT(messagewin), "size_allocate",
2280                          G_CALLBACK(message_window_size_allocate_cb),
2281                          mainwin);
2282         }
2283
2284         debug_print("done.\n");
2285 }
2286
2287 void main_window_destroy_all(void)
2288 {
2289         while (mainwin_list != NULL) {
2290                 MainWindow *mainwin = (MainWindow*)mainwin_list->data;
2291                 
2292                 /* free toolbar stuff */
2293                 toolbar_clear_list(TOOLBAR_MAIN);
2294                 TOOLBAR_DESTROY_ACTIONS(mainwin->toolbar->action_list);
2295                 TOOLBAR_DESTROY_ITEMS(mainwin->toolbar->item_list);
2296
2297                 g_free(mainwin->toolbar);
2298                 g_free(mainwin);
2299                 
2300                 mainwin_list = g_list_remove(mainwin_list, mainwin);
2301         }
2302         g_list_free(mainwin_list);
2303 }
2304
2305 #if 0
2306 static gboolean toolbar_account_button_pressed(GtkWidget *widget,
2307                                                GdkEventButton *event,
2308                                                gpointer data)
2309 {
2310         MainWindow *mainwin = (MainWindow *)data;
2311
2312         if (!event) return FALSE;
2313         if (event->button != 3) return FALSE;
2314
2315         gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
2316         g_object_set_data(G_OBJECT(mainwin->ac_menu), "menu_button",
2317                           widget);
2318
2319         gtk_menu_popup(GTK_MENU(mainwin->ac_menu), NULL, NULL,
2320                        menu_button_position, widget,
2321                        event->button, event->time);
2322
2323         return FALSE;
2324 }
2325 #endif
2326
2327 static void toolbar_child_attached(GtkWidget *widget, GtkWidget *child,
2328                                    gpointer data)
2329 {
2330         gtk_widget_set_size_request(child, 1, -1);
2331 }
2332
2333 static void toolbar_child_detached(GtkWidget *widget, GtkWidget *child,
2334                                    gpointer data)
2335 {
2336         gtk_widget_set_size_request(child, -1, -1);
2337 }
2338
2339 static gboolean ac_label_button_pressed(GtkWidget *widget, GdkEventButton *event,
2340                                     gpointer data)
2341 {
2342         MainWindow *mainwin = (MainWindow *)data;
2343
2344         if (!event) return FALSE;
2345
2346         gtk_button_set_relief(GTK_BUTTON(widget), GTK_RELIEF_NORMAL);
2347         g_object_set_data(G_OBJECT(mainwin->ac_menu), "menu_button",
2348                           widget);
2349
2350         gtk_menu_popup(GTK_MENU(mainwin->ac_menu), NULL, NULL,
2351                        menu_button_position, widget,
2352                        event->button, event->time);
2353
2354         return TRUE;
2355 }
2356
2357 static gint main_window_close_cb(GtkWidget *widget, GdkEventAny *event,
2358                                  gpointer data)
2359 {
2360         MainWindow *mainwin = (MainWindow *)data;
2361
2362         if (mainwin->lock_count == 0)
2363                 app_exit_cb(data, 0, widget);
2364
2365         return TRUE;
2366 }
2367
2368 static gint folder_window_close_cb(GtkWidget *widget, GdkEventAny *event,
2369                                    gpointer data)
2370 {
2371         MainWindow *mainwin = (MainWindow *)data;
2372         GtkWidget *menuitem;
2373
2374         menuitem = gtk_item_factory_get_item
2375                 (mainwin->menu_factory, "/View/Show or hide/Folder tree");
2376         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), FALSE);
2377
2378         return TRUE;
2379 }
2380
2381 static gint message_window_close_cb(GtkWidget *widget, GdkEventAny *event,
2382                                     gpointer data)
2383 {
2384         MainWindow *mainwin = (MainWindow *)data;
2385         GtkWidget *menuitem;
2386
2387         menuitem = gtk_item_factory_get_item
2388                 (mainwin->menu_factory, "/View/Show or hide/Message view");
2389         gtk_check_menu_item_set_active(GTK_CHECK_MENU_ITEM(menuitem), FALSE);
2390
2391         mainwin->messageview->statusbar = mainwin->statusbar;
2392         mainwin->messageview->statusbar_cid = mainwin->messageview_cid;
2393
2394         return TRUE;
2395 }
2396
2397 static void main_window_size_allocate_cb(GtkWidget *widget,
2398                                          GtkAllocation *allocation,
2399                                          gpointer data)
2400 {
2401         MainWindow *mainwin = (MainWindow *)data;
2402
2403         main_window_get_size(mainwin);
2404 }
2405
2406 static void folder_window_size_allocate_cb(GtkWidget *widget,
2407                                            GtkAllocation *allocation,
2408                                            gpointer data)
2409 {
2410         MainWindow *mainwin = (MainWindow *)data;
2411
2412         main_window_get_size(mainwin);
2413 }
2414
2415 static void message_window_size_allocate_cb(GtkWidget *widget,
2416                                             GtkAllocation *allocation,
2417                                             gpointer data)
2418 {
2419         MainWindow *mainwin = (MainWindow *)data;
2420
2421         main_window_get_size(mainwin);
2422 }
2423
2424 static void add_mailbox_cb(MainWindow *mainwin, guint action,
2425                            GtkWidget *widget)
2426 {
2427         main_window_add_mailbox(mainwin);
2428 }
2429
2430 static void update_folderview_cb(MainWindow *mainwin, guint action,
2431                                  GtkWidget *widget)
2432 {
2433         summary_show(mainwin->summaryview, NULL);
2434         folderview_check_new_all();
2435 }
2436
2437 static void foldersort_cb(MainWindow *mainwin, guint action,
2438                            GtkWidget *widget)
2439 {
2440         foldersort_open();
2441 }
2442
2443 static void import_mbox_cb(MainWindow *mainwin, guint action,
2444                            GtkWidget *widget)
2445 {
2446         import_mbox(mainwin->summaryview->folder_item);
2447 }
2448
2449 static void export_mbox_cb(MainWindow *mainwin, guint action,
2450                            GtkWidget *widget)
2451 {
2452         export_mbox(mainwin->summaryview->folder_item);
2453 }
2454
2455 static void export_list_mbox_cb(MainWindow *mainwin, guint action,
2456                                 GtkWidget *widget)
2457 {
2458         summaryview_export_mbox_list(mainwin->summaryview);
2459 }
2460
2461 static void empty_trash_cb(MainWindow *mainwin, guint action,
2462                            GtkWidget *widget)
2463 {
2464         main_window_empty_trash(mainwin, TRUE);
2465 }
2466
2467 static void save_as_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2468 {
2469         summary_save_as(mainwin->summaryview);
2470 }
2471
2472 static void print_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2473 {
2474         summary_print(mainwin->summaryview);
2475 }
2476
2477 static void app_exit_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2478 {
2479         if (prefs_common.confirm_on_exit) {
2480                 if (alertpanel(_("Exit"), _("Exit this program?"),
2481                                GTK_STOCK_OK, GTK_STOCK_CANCEL, NULL)
2482                     != G_ALERTDEFAULT)
2483                         return;
2484                 manage_window_focus_in(mainwin->window, NULL, NULL);
2485         }
2486
2487         app_will_exit(widget, mainwin);
2488 }
2489
2490 static void search_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2491 {
2492         if (action == 1)
2493                 summary_search(mainwin->summaryview);
2494         else
2495                 message_search(mainwin->messageview);
2496 }
2497
2498 static void mainwindow_quicksearch(MainWindow *mainwin, guint action, GtkWidget *widget)
2499 {
2500         prefs_common.show_searchbar = TRUE;
2501         quicksearch_show(mainwin->summaryview->quicksearch);
2502 }
2503
2504 static void toggle_folder_cb(MainWindow *mainwin, guint action,
2505                              GtkWidget *widget)
2506 {
2507         gboolean active;
2508
2509         active = GTK_CHECK_MENU_ITEM(widget)->active;
2510
2511         switch (mainwin->type) {
2512         case SEPARATE_NONE:
2513         case SEPARATE_MESSAGE:
2514 #if 0
2515                 if (active)
2516                         gtk_widget_show(GTK_WIDGET_PTR(mainwin->folderview));
2517                 else
2518                         gtk_widget_hide(GTK_WIDGET_PTR(mainwin->folderview));
2519 #endif
2520                 break;
2521         case SEPARATE_FOLDER:
2522                 debug_print("separate folder\n");
2523                 if (active)
2524                         gtk_widget_show(mainwin->win.sep_folder.folderwin);
2525                 else
2526                         gtk_widget_hide(mainwin->win.sep_folder.folderwin);
2527                 break;
2528         case SEPARATE_BOTH:
2529                 if (active)
2530                         gtk_widget_show(mainwin->win.sep_both.folderwin);
2531                 else
2532                         gtk_widget_hide(mainwin->win.sep_both.folderwin);
2533                 break;
2534         }
2535
2536         prefs_common.folderview_visible = active;
2537 }
2538
2539 static void toggle_message_cb(MainWindow *mainwin, guint action,
2540                               GtkWidget *widget)
2541 {
2542         gboolean active;
2543
2544         active = GTK_CHECK_MENU_ITEM(widget)->active;
2545
2546         if (active != messageview_is_visible(mainwin->messageview))
2547                 summary_toggle_view(mainwin->summaryview);
2548 }
2549
2550 static void toggle_toolbar_cb(MainWindow *mainwin, guint action,
2551                               GtkWidget *widget)
2552 {
2553         toolbar_toggle(action, mainwin);
2554 }
2555
2556 void main_window_reply_cb(MainWindow *mainwin, guint action,
2557                           GtkWidget *widget)
2558 {
2559         MessageView *msgview = (MessageView*)mainwin->messageview;
2560         GSList *msginfo_list = NULL;
2561
2562         g_return_if_fail(msgview != NULL);
2563
2564         msginfo_list = summary_get_selection(mainwin->summaryview);
2565         g_return_if_fail(msginfo_list != NULL);
2566         compose_reply_from_messageview(msgview, msginfo_list, action);
2567         g_slist_free(msginfo_list);
2568 }
2569
2570
2571 static void toggle_statusbar_cb(MainWindow *mainwin, guint action,
2572                                 GtkWidget *widget)
2573 {
2574         if (GTK_CHECK_MENU_ITEM(widget)->active) {
2575                 gtk_widget_show(mainwin->hbox_stat);
2576                 prefs_common.show_statusbar = TRUE;
2577         } else {
2578                 gtk_widget_hide(mainwin->hbox_stat);
2579                 prefs_common.show_statusbar = FALSE;
2580         }
2581 }
2582
2583 static void separate_widget_cb(MainWindow *mainwin, guint action,
2584                                GtkWidget *widget)
2585 {
2586         SeparateType type;
2587
2588         if (GTK_CHECK_MENU_ITEM(widget)->active)
2589                 type = mainwin->type | action;
2590         else
2591                 type = mainwin->type & ~action;
2592
2593         main_window_separation_change(mainwin, type);
2594
2595         prefs_common.sep_folder = (type & SEPARATE_FOLDER)  != 0;
2596         prefs_common.sep_msg    = (type & SEPARATE_MESSAGE) != 0;
2597 }
2598
2599 void main_window_toggle_work_offline (MainWindow *mainwin, gboolean offline,
2600                                         gboolean ask_sync)
2601 {
2602         offline_ask_sync = ask_sync;
2603         if (offline)
2604                 online_switch_clicked (GTK_BUTTON(mainwin->online_switch), mainwin);
2605         else
2606                 online_switch_clicked (GTK_BUTTON(mainwin->offline_switch), mainwin);
2607         offline_ask_sync = TRUE;
2608 }
2609
2610 static void toggle_work_offline_cb (MainWindow *mainwin, guint action, GtkWidget *widget)
2611 {
2612         main_window_toggle_work_offline(mainwin, GTK_CHECK_MENU_ITEM(widget)->active, TRUE);
2613 }
2614
2615 static void mainwindow_check_synchronise(MainWindow *mainwin, gboolean ask)
2616 {
2617         GList *folderlist = folder_get_list();
2618         gboolean found = FALSE;
2619
2620         /* see if there are synchronised folders */
2621         for (; folderlist; folderlist = folderlist->next) {
2622                 Folder *folder = (Folder *)folderlist->data;
2623                 if (folder_want_synchronise(folder)) {
2624                         found = TRUE;
2625                         break;
2626                 }
2627         }
2628         
2629         if (!found)
2630                 return;
2631                 
2632         if (offline_ask_sync && ask && alertpanel(_("Folder synchronisation"),
2633                         _("Do you want to synchronise your folders now?"),
2634                         GTK_STOCK_YES, GTK_STOCK_NO, NULL) != G_ALERTDEFAULT)
2635                 return;
2636
2637         folder_synchronise(NULL);
2638 }
2639
2640 static void online_switch_clicked (GtkButton *btn, gpointer data) 
2641 {
2642         MainWindow *mainwin;
2643         GtkItemFactory *ifactory;
2644         GtkCheckMenuItem *menuitem;
2645
2646         mainwin = (MainWindow *) data;
2647         
2648         ifactory = gtk_item_factory_from_widget(mainwin->menubar);
2649         menuitem = GTK_CHECK_MENU_ITEM (gtk_item_factory_get_widget(ifactory, "/File/Work offline"));
2650         
2651         g_return_if_fail(mainwin != NULL);
2652         g_return_if_fail(menuitem != NULL);
2653         
2654         if (btn == GTK_BUTTON(mainwin->online_switch)) {
2655                 /* go offline */
2656                 mainwindow_check_synchronise(mainwin, TRUE);
2657                 gtk_widget_hide (mainwin->online_switch);
2658                 gtk_widget_show (mainwin->offline_switch);
2659                 menuitem->active = TRUE;
2660                 prefs_common.work_offline = TRUE;
2661                 inc_autocheck_timer_remove();           
2662         } else {
2663                 /*go online */
2664                 gtk_widget_hide (mainwin->offline_switch);
2665                 gtk_widget_show (mainwin->online_switch);
2666                 menuitem->active = FALSE;
2667                 prefs_common.work_offline = FALSE;
2668                 inc_autocheck_timer_set();
2669         }
2670 }
2671
2672 static void addressbook_open_cb(MainWindow *mainwin, guint action,
2673                                 GtkWidget *widget)
2674 {
2675         addressbook_open(NULL);
2676 }
2677
2678 static void log_window_show_cb(MainWindow *mainwin, guint action,
2679                                GtkWidget *widget)
2680 {
2681         log_window_show(mainwin->logwin);
2682 }
2683
2684 static void inc_cancel_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2685 {
2686         inc_cancel_all();
2687 }
2688
2689 static void move_to_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2690 {
2691         summary_move_to(mainwin->summaryview);
2692 }
2693
2694 static void copy_to_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2695 {
2696         summary_copy_to(mainwin->summaryview);
2697 }
2698
2699 static void delete_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2700 {
2701         summary_delete(mainwin->summaryview);
2702 }
2703
2704 static void delete_trash_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2705 {
2706         summary_delete_trash(mainwin->summaryview);
2707 }
2708
2709 static void cancel_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2710 {
2711         summary_cancel(mainwin->summaryview);
2712 }
2713
2714 static void open_msg_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2715 {
2716         summary_open_msg(mainwin->summaryview);
2717 }
2718
2719 static void view_source_cb(MainWindow *mainwin, guint action,
2720                            GtkWidget *widget)
2721 {
2722         summary_view_source(mainwin->summaryview);
2723 }
2724
2725 static void show_all_header_cb(MainWindow *mainwin, guint action,
2726                                GtkWidget *widget)
2727 {
2728         if (mainwin->menu_lock_count) return;
2729         mainwin->summaryview->messageview->all_headers = 
2730                         GTK_CHECK_MENU_ITEM(widget)->active;
2731         summary_display_msg_selected(mainwin->summaryview,
2732                                      GTK_CHECK_MENU_ITEM(widget)->active);
2733 }
2734
2735 static void mark_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2736 {
2737         summary_mark(mainwin->summaryview);
2738 }
2739
2740 static void unmark_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2741 {
2742         summary_unmark(mainwin->summaryview);
2743 }
2744
2745 static void mark_as_unread_cb(MainWindow *mainwin, guint action,
2746                               GtkWidget *widget)
2747 {
2748         summary_mark_as_unread(mainwin->summaryview);
2749 }
2750
2751 static void mark_as_read_cb(MainWindow *mainwin, guint action,
2752                             GtkWidget *widget)
2753 {
2754         summary_mark_as_read(mainwin->summaryview);
2755 }
2756
2757 static void mark_all_read_cb(MainWindow *mainwin, guint action,
2758                              GtkWidget *widget)
2759 {
2760         summary_mark_all_read(mainwin->summaryview);
2761 }
2762
2763 static void reedit_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2764 {
2765         summary_reedit(mainwin->summaryview);
2766 }
2767
2768 static void add_address_cb(MainWindow *mainwin, guint action,
2769                            GtkWidget *widget)
2770 {
2771         summary_add_address(mainwin->summaryview);
2772 }
2773
2774 static void set_charset_cb(MainWindow *mainwin, guint action,
2775                            GtkWidget *widget)
2776 {
2777         const gchar *str;
2778
2779         if (GTK_CHECK_MENU_ITEM(widget)->active) {
2780                 str = conv_get_charset_str((CharSet)action);
2781                 
2782                 g_free(mainwin->messageview->forced_charset);
2783                 mainwin->messageview->forced_charset = str ? g_strdup(str) : NULL;
2784                 procmime_force_charset(str);
2785                 
2786                 summary_redisplay_msg(mainwin->summaryview);
2787                 
2788                 debug_print("forced charset: %s\n", str ? str : "Auto-Detect");
2789         }
2790 }
2791
2792 static void set_decode_cb(MainWindow *mainwin, guint action,
2793                            GtkWidget *widget)
2794 {
2795         if (GTK_CHECK_MENU_ITEM(widget)->active) {
2796                 mainwin->messageview->forced_encoding = (EncodingType)action;
2797                 
2798                 summary_redisplay_msg(mainwin->summaryview);
2799                 
2800                 debug_print("forced encoding: %d\n", action);
2801         }
2802 }
2803
2804 static void hide_read_messages (MainWindow *mainwin, guint action,
2805                                 GtkWidget *widget)
2806 {
2807         if (!mainwin->summaryview->folder_item
2808             || g_object_get_data(G_OBJECT(widget), "dont_toggle"))
2809                 return;
2810         summary_toggle_show_read_messages(mainwin->summaryview);
2811 }
2812
2813 static void thread_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2814 {
2815         if (mainwin->menu_lock_count) return;
2816         if (!mainwin->summaryview->folder_item) return;
2817
2818         if (GTK_CHECK_MENU_ITEM(widget)->active) {
2819                 summary_thread_build(mainwin->summaryview);
2820 /*              mainwin->summaryview->folder_item->threaded = TRUE; */
2821         } else {
2822                 summary_unthread(mainwin->summaryview);
2823 /*              mainwin->summaryview->folder_item->threaded = FALSE; */
2824         }
2825 }
2826
2827 static void expand_threads_cb(MainWindow *mainwin, guint action,
2828                               GtkWidget *widget)
2829 {
2830         summary_expand_threads(mainwin->summaryview);
2831 }
2832
2833 static void collapse_threads_cb(MainWindow *mainwin, guint action,
2834                                 GtkWidget *widget)
2835 {
2836         summary_collapse_threads(mainwin->summaryview);
2837 }
2838
2839 static void set_summary_display_item_cb(MainWindow *mainwin, guint action,
2840                                 GtkWidget *widget)
2841 {
2842         prefs_summary_column_open();
2843 }
2844
2845 static void set_folder_display_item_cb(MainWindow *mainwin, guint action,
2846                                 GtkWidget *widget)
2847 {
2848         prefs_folder_column_open();
2849 }
2850
2851 static void sort_summary_cb(MainWindow *mainwin, guint action,
2852                             GtkWidget *widget)
2853 {
2854         FolderItem *item = mainwin->summaryview->folder_item;
2855         GtkWidget *menuitem;
2856
2857         if (mainwin->menu_lock_count) return;
2858
2859         if (GTK_CHECK_MENU_ITEM(widget)->active && item) {
2860                 menuitem = gtk_item_factory_get_item
2861                         (mainwin->menu_factory, "/View/Sort/Ascending");
2862                 summary_sort(mainwin->summaryview, (FolderSortKey)action,
2863                              GTK_CHECK_MENU_ITEM(menuitem)->active
2864                              ? SORT_ASCENDING : SORT_DESCENDING);
2865                 item->sort_key = action;
2866         }
2867 }
2868
2869 static void sort_summary_type_cb(MainWindow *mainwin, guint action,
2870                                  GtkWidget *widget)
2871 {
2872         FolderItem *item = mainwin->summaryview->folder_item;
2873
2874         if (mainwin->menu_lock_count) return;
2875
2876         if (GTK_CHECK_MENU_ITEM(widget)->active && item)
2877                 summary_sort(mainwin->summaryview,
2878                              item->sort_key, (FolderSortType)action);
2879 }
2880
2881 static void attract_by_subject_cb(MainWindow *mainwin, guint action,
2882                                   GtkWidget *widget)
2883 {
2884         summary_attract_by_subject(mainwin->summaryview);
2885 }
2886
2887 static void delete_duplicated_cb(MainWindow *mainwin, guint action,
2888                                  GtkWidget *widget)
2889 {
2890         FolderItem *item;
2891
2892         item = folderview_get_selected_item(mainwin->folderview);
2893         if (item) {
2894                 main_window_cursor_wait(mainwin);
2895                 STATUSBAR_PUSH(mainwin, _("Deleting duplicated messages..."));
2896
2897                 folderutils_delete_duplicates(item, prefs_common.immediate_exec ?
2898                                               DELETE_DUPLICATES_REMOVE : DELETE_DUPLICATES_SETFLAG);
2899
2900                 STATUSBAR_POP(mainwin);
2901                 main_window_cursor_normal(mainwin);
2902         }
2903 }
2904
2905 struct DelDupsData
2906 {
2907         guint   dups;
2908         guint   folders;
2909 };
2910
2911 static void deldup_all(FolderItem *item, gpointer _data)
2912 {
2913         struct DelDupsData *data = _data;
2914         gint result;
2915         
2916         result = folderutils_delete_duplicates(item, DELETE_DUPLICATES_REMOVE);
2917         if (result >= 0) {
2918                 data->dups += result;
2919                 data->folders += 1;
2920         }
2921 }
2922
2923 static void delete_duplicated_all_cb(MainWindow *mainwin, guint action,
2924                                  GtkWidget *widget)
2925 {
2926         struct DelDupsData data = {0, 0};
2927
2928         folder_func_to_all_folders(deldup_all, &data);
2929         alertpanel_notice(ngettext("Deleted %d duplicate message in %d folders.\n",
2930                                    "Deleted %d duplicate messages in %d folders.\n",
2931                                    data.dups),
2932                           data.dups, data.folders);
2933 }
2934
2935 static void filter_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2936 {
2937         summary_filter(mainwin->summaryview, (gboolean)action);
2938 }
2939
2940 static void execute_summary_cb(MainWindow *mainwin, guint action,
2941                                GtkWidget *widget)
2942 {
2943         summary_execute(mainwin->summaryview);
2944 }
2945
2946 static void update_summary_cb(MainWindow *mainwin, guint action,
2947                               GtkWidget *widget)
2948 {
2949         FolderItem *fitem;
2950         FolderView *folderview = mainwin->folderview;
2951
2952         if (!mainwin->summaryview->folder_item) return;
2953         if (!folderview->opened) return;
2954
2955         folder_update_op_count();
2956
2957         fitem = gtk_ctree_node_get_row_data(GTK_CTREE(folderview->ctree),
2958                                             folderview->opened);
2959         if (!fitem) return;
2960
2961         folder_item_scan(fitem);
2962         summary_show(mainwin->summaryview, fitem);
2963 }
2964
2965 static void prev_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2966 {
2967         summary_step(mainwin->summaryview, GTK_SCROLL_STEP_BACKWARD);
2968 }
2969
2970 static void next_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2971 {
2972         summary_step(mainwin->summaryview, GTK_SCROLL_STEP_FORWARD);
2973 }
2974
2975 static void prev_unread_cb(MainWindow *mainwin, guint action,
2976                            GtkWidget *widget)
2977 {
2978         summary_select_prev_unread(mainwin->summaryview);
2979 }
2980
2981 static void next_unread_cb(MainWindow *mainwin, guint action,
2982                            GtkWidget *widget)
2983 {
2984         summary_select_next_unread(mainwin->summaryview);
2985 }
2986
2987 static void prev_new_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2988 {
2989         summary_select_prev_new(mainwin->summaryview);
2990 }
2991
2992 static void next_new_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
2993 {
2994         summary_select_next_new(mainwin->summaryview);
2995 }
2996
2997 static void prev_marked_cb(MainWindow *mainwin, guint action,
2998                            GtkWidget *widget)
2999 {
3000         summary_select_prev_marked(mainwin->summaryview);
3001 }
3002
3003 static void next_marked_cb(MainWindow *mainwin, guint action,
3004                            GtkWidget *widget)
3005 {
3006         summary_select_next_marked(mainwin->summaryview);
3007 }
3008
3009 static void prev_labeled_cb(MainWindow *mainwin, guint action,
3010                             GtkWidget *widget)
3011 {
3012         summary_select_prev_labeled(mainwin->summaryview);
3013 }
3014
3015 static void next_labeled_cb(MainWindow *mainwin, guint action,
3016                             GtkWidget *widget)
3017 {
3018         summary_select_next_labeled(mainwin->summaryview);
3019 }
3020
3021 static void goto_folder_cb(MainWindow *mainwin, guint action,
3022                            GtkWidget *widget)
3023 {
3024         FolderItem *to_folder;
3025
3026         to_folder = foldersel_folder_sel(NULL, FOLDER_SEL_ALL, NULL);
3027
3028         if (to_folder)
3029                 folderview_select(mainwin->folderview, to_folder);
3030 }
3031
3032 static void copy_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
3033 {
3034         messageview_copy_clipboard(mainwin->messageview);
3035 }
3036
3037 static void allsel_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
3038 {
3039         MessageView *msgview = mainwin->messageview;
3040
3041         if (GTK_WIDGET_HAS_FOCUS(mainwin->summaryview->ctree))
3042                 summary_select_all(mainwin->summaryview);
3043         else if (messageview_is_visible(msgview) &&
3044                  (GTK_WIDGET_HAS_FOCUS(msgview->mimeview->textview->text)))
3045                 messageview_select_all(mainwin->messageview);
3046 }
3047
3048 static void select_thread_cb(MainWindow *mainwin, guint action,
3049                              GtkWidget *widget)
3050 {
3051         summary_select_thread(mainwin->summaryview);
3052 }
3053
3054 static void create_filter_cb(MainWindow *mainwin, guint action,
3055                              GtkWidget *widget)
3056 {
3057         summary_filter_open(mainwin->summaryview, (PrefsFilterType)action, 0);
3058 }
3059
3060 static void create_processing_cb(MainWindow *mainwin, guint action,
3061                              GtkWidget *widget)
3062 {
3063         summary_filter_open(mainwin->summaryview, (PrefsFilterType)action, 1);
3064 }
3065
3066 static void prefs_pre_processing_open_cb(MainWindow *mainwin, guint action,
3067                                          GtkWidget *widget)
3068 {
3069         prefs_filtering_open(&pre_global_processing,
3070                              _("Processing rules to apply before folder rules"),
3071                              NULL, NULL);
3072 }
3073
3074 static void prefs_post_processing_open_cb(MainWindow *mainwin, guint action,
3075                                           GtkWidget *widget)
3076 {
3077         prefs_filtering_open(&post_global_processing,
3078                              _("Processing rules to apply after folder rules"),
3079                              NULL, NULL);
3080 }
3081
3082 static void prefs_filtering_open_cb(MainWindow *mainwin, guint action,
3083                                     GtkWidget *widget)
3084 {
3085         prefs_filtering_open(&filtering_rules,
3086                              _("Filtering configuration"),
3087                              NULL, NULL);
3088 }
3089
3090 static void prefs_template_open_cb(MainWindow *mainwin, guint action,
3091                                    GtkWidget *widget)
3092 {
3093         prefs_template_open();
3094 }
3095
3096 static void prefs_actions_open_cb(MainWindow *mainwin, guint action,
3097                                   GtkWidget *widget)
3098 {
3099         prefs_actions_open(mainwin);
3100 }
3101 #ifdef USE_OPENSSL
3102 static void ssl_manager_open_cb(MainWindow *mainwin, guint action,
3103                                   GtkWidget *widget)
3104 {
3105         ssl_manager_open(mainwin);
3106 }
3107 #endif
3108 static void prefs_account_open_cb(MainWindow *mainwin, guint action,
3109                                   GtkWidget *widget)
3110 {
3111         if (!cur_account) {
3112                 new_account_cb(mainwin, 0, widget);
3113         } else {
3114                 account_open(cur_account);
3115         }
3116 }
3117
3118 static void new_account_cb(MainWindow *mainwin, guint action,
3119                            GtkWidget *widget)
3120 {
3121         account_edit_open();
3122         if (!compose_get_compose_list()) account_add();
3123 }
3124
3125 static void account_selector_menu_cb(GtkMenuItem *menuitem, gpointer data)
3126 {
3127         cur_account = (PrefsAccount *)data;
3128         FolderItem *item = NULL;
3129         
3130         if (!mainwindow_get_mainwindow())
3131                 return;
3132         main_window_show_cur_account(mainwindow_get_mainwindow());
3133         toolbar_update(TOOLBAR_MAIN, mainwindow_get_mainwindow());
3134         main_window_set_menu_sensitive(mainwindow_get_mainwindow());
3135         toolbar_main_set_sensitive(mainwindow_get_mainwindow());
3136         gtk_button_set_relief(GTK_BUTTON(mainwindow_get_mainwindow()->ac_button), GTK_RELIEF_NONE);
3137         item = folderview_get_selected_item(
3138                         mainwindow_get_mainwindow()->folderview);
3139         if (item) {
3140                 toolbar_set_compose_button
3141                         (mainwindow_get_mainwindow()->toolbar,
3142                          FOLDER_TYPE(item->folder) == F_NEWS ? 
3143                          COMPOSEBUTTON_NEWS : COMPOSEBUTTON_MAIL);
3144         }
3145 }
3146
3147 static void account_receive_menu_cb(GtkMenuItem *menuitem, gpointer data)
3148 {
3149         MainWindow *mainwin = (MainWindow *)mainwin_list->data;
3150         PrefsAccount *account = (PrefsAccount *)data;
3151
3152         inc_account_mail(mainwin, account);
3153 }
3154
3155 static void prefs_open_cb(GtkMenuItem *menuitem, gpointer data)
3156 {
3157         prefs_gtk_open();
3158 }
3159
3160 static void plugins_open_cb(GtkMenuItem *menuitem, gpointer data)
3161 {
3162         pluginwindow_create();
3163 }
3164
3165 static void manual_open_cb(MainWindow *mainwin, guint action,
3166                            GtkWidget *widget)
3167 {
3168         manual_open((ManualType)action);
3169 }
3170
3171 static void scan_tree_func(Folder *folder, FolderItem *item, gpointer data)
3172 {
3173         MainWindow *mainwin = (MainWindow *)data;
3174         gchar *str;
3175
3176         if (item->path)
3177                 str = g_strdup_printf(_("Scanning folder %s%c%s ..."),
3178                                       LOCAL_FOLDER(folder)->rootpath,
3179                                       G_DIR_SEPARATOR,
3180                                       item->path);
3181         else
3182                 str = g_strdup_printf(_("Scanning folder %s ..."),
3183                                       LOCAL_FOLDER(folder)->rootpath);
3184
3185         STATUSBAR_PUSH(mainwin, str);
3186         STATUSBAR_POP(mainwin);
3187         g_free(str);
3188 }
3189
3190 static gboolean mainwindow_focus_in_event(GtkWidget *widget, GdkEventFocus *focus,
3191                                           gpointer data)
3192 {
3193         SummaryView *summary;
3194
3195         g_return_val_if_fail(data, FALSE);
3196         summary = ((MainWindow *)data)->summaryview;
3197         g_return_val_if_fail(summary, FALSE);
3198
3199         if (GTK_CLIST(summary->ctree)->selection && 
3200             g_list_length(GTK_CLIST(summary->ctree)->selection) > 1)
3201                 return FALSE;
3202
3203         if (summary->selected != summary->displayed)
3204                 summary_select_node(summary, summary->displayed, FALSE, TRUE);
3205         return FALSE;
3206 }
3207
3208 #define BREAK_ON_MODIFIER_KEY() \
3209         if ((event->state & (GDK_MOD1_MASK|GDK_CONTROL_MASK)) != 0) break
3210
3211 gboolean mainwindow_key_pressed (GtkWidget *widget, GdkEventKey *event,
3212                                     gpointer data)
3213 {
3214         MainWindow *mainwin = (MainWindow*) data;
3215         
3216         if (!mainwin || !event) 
3217                 return FALSE;
3218
3219         if (quicksearch_has_focus(mainwin->summaryview->quicksearch))
3220                 return FALSE;
3221
3222         switch (event->keyval) {
3223         case GDK_Q:             /* Quit */
3224                 BREAK_ON_MODIFIER_KEY();
3225
3226                 app_exit_cb(mainwin, 0, NULL);
3227                 return FALSE;
3228         case GDK_space:
3229                 if (mainwin->folderview && mainwin->summaryview
3230                     && !mainwin->summaryview->displayed) {
3231                         summary_lock(mainwin->summaryview);
3232                         folderview_select_next_unread(mainwin->folderview);
3233                         summary_unlock(mainwin->summaryview);
3234                 }
3235                 break;
3236         default:
3237                 break;
3238         }
3239         return FALSE;
3240 }
3241
3242 #undef BREAK_ON_MODIFIER_KEY
3243
3244 /*
3245  * Harvest addresses for selected folder.
3246  */
3247 static void addr_harvest_cb( MainWindow *mainwin,
3248                             guint action,
3249                             GtkWidget *widget )
3250 {
3251         addressbook_harvest( mainwin->summaryview->folder_item, FALSE, NULL );
3252 }
3253
3254 /*
3255  * Harvest addresses for selected messages in summary view.
3256  */
3257 static void addr_harvest_msg_cb( MainWindow *mainwin,
3258                             guint action,
3259                             GtkWidget *widget )
3260 {
3261         summary_harvest_address( mainwin->summaryview );
3262 }
3263
3264 /*!
3265  *\brief        get a MainWindow
3266  *
3267  *\return       MainWindow * The first mainwindow in the mainwin_list
3268  */
3269 MainWindow *mainwindow_get_mainwindow(void)
3270 {
3271         if (mainwin_list && mainwin_list->data)
3272                 return (MainWindow *)(mainwin_list->data);
3273         else
3274                 return NULL;
3275 }
3276
3277 gboolean mainwindow_progressindicator_hook(gpointer source, gpointer userdata)
3278 {
3279         ProgressData *data = (ProgressData *) source;
3280         MainWindow *mainwin = (MainWindow *) userdata;
3281
3282         switch (data->cmd) {
3283         case PROGRESS_COMMAND_START:
3284         case PROGRESS_COMMAND_STOP:
3285                 gtk_progress_bar_set_fraction
3286                         (GTK_PROGRESS_BAR(mainwin->progressbar), 0.0);
3287                 break;
3288         case PROGRESS_COMMAND_SET_PERCENTAGE:
3289                 gtk_progress_bar_set_fraction
3290                         (GTK_PROGRESS_BAR(mainwin->progressbar), data->value);
3291                 break;          
3292         }
3293         while (gtk_events_pending()) gtk_main_iteration ();
3294
3295         return FALSE;
3296 }
3297
3298 static void sync_cb(MainWindow *mainwin, guint action, GtkWidget *widget)
3299 {
3300         mainwindow_check_synchronise(mainwin, FALSE);
3301 }
3302
3303 /*
3304 * End of Source.
3305 */
3306