2006-05-18 [colin] 2.2.0cvs33
[claws.git] / src / mainwindow.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2006 Hiroyuki Yamamoto and the Sylpheed-Claws team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 #ifndef __MAINWINDOW_H__
21 #define __MAINWINDOW_H__
22
23 #include <glib.h>
24
25 typedef struct _MainWindow  MainWindow;
26
27 #include "folderview.h"
28 #include "summaryview.h"
29 #include "headerview.h"
30 #include "messageview.h"
31 #include "logwindow.h"
32 #include "toolbar.h"
33
34 typedef enum
35 {
36         M_UNLOCKED            = 1 << 0,
37         M_MSG_EXIST           = 1 << 1,
38         M_TARGET_EXIST        = 1 << 2,
39         M_SINGLE_TARGET_EXIST = 1 << 3,
40         M_EXEC                = 1 << 4,
41         M_ALLOW_REEDIT        = 1 << 5,
42         M_HAVE_ACCOUNT        = 1 << 6,
43         M_THREADED            = 1 << 7,
44         M_UNTHREADED          = 1 << 8,
45         M_ALLOW_DELETE        = 1 << 9,
46         M_INC_ACTIVE          = 1 << 10,
47         M_NEWS                = 1 << 11,
48         M_HAVE_NEWS_ACCOUNT   = 1 << 12,
49         M_HIDE_READ_MSG       = 1 << 13,
50         M_DELAY_EXEC          = 1 << 14,
51         M_NOT_NEWS            = 1 << 15,
52         M_CAN_LEARN_SPAM      = 1 << 16
53 } SensitiveCond;
54
55 typedef enum
56 {
57         SEPARATE_NONE    = 0,
58         SEPARATE_FOLDER  = 1 << 0,
59         SEPARATE_MESSAGE = 1 << 1,
60         SEPARATE_BOTH    = (SEPARATE_FOLDER | SEPARATE_MESSAGE)
61 } SeparateType;
62
63 typedef enum
64 {
65         TOOLBAR_NONE            = 0,
66         TOOLBAR_ICON            = 1,
67         TOOLBAR_TEXT            = 2,
68         TOOLBAR_BOTH            = 3,
69         TOOLBAR_BOTH_HORIZ      = 4
70 } ToolbarStyle;
71
72 struct _MainWindow
73 {
74         SeparateType type;
75
76         union CompositeWin {
77                 struct 
78                 {
79                         GtkWidget *hpaned;
80                         GtkWidget *vpaned;
81                 } sep_none;
82                 struct {
83                         GtkWidget *folderwin;
84                         GtkWidget *vpaned;
85                 } sep_folder;
86                 struct {
87                         GtkWidget *messagewin;
88                         GtkWidget *hpaned;
89                 } sep_message;
90                 struct {
91                         GtkWidget *folderwin;
92                         GtkWidget *messagewin;
93                 } sep_both;
94         } win;
95
96         GtkWidget *window;
97         GtkWidget *vbox;
98         GtkWidget *menubar;
99
100         GtkItemFactory *menu_factory;
101
102         /* Toolbar handlebox */
103         GtkWidget *handlebox;
104         Toolbar *toolbar;
105
106         /* body */
107         GtkWidget *vbox_body;
108         GtkWidget *hbox_stat;
109         GtkWidget *statusbar;
110         GtkWidget *progressbar;
111         GtkWidget *statuslabel;
112         GtkWidget *ac_button;
113         GtkWidget *ac_label;
114         GtkWidget *ac_menu;
115         GtkWidget *online_switch;
116         GtkWidget *offline_switch;
117         GtkWidget *online_pixmap;
118         GtkWidget *offline_pixmap;
119
120         /* context IDs for status bar */
121         gint mainwin_cid;
122         gint folderview_cid;
123         gint summaryview_cid;
124         gint messageview_cid;
125
126         ToolbarStyle toolbar_style;
127
128         guint lock_count;
129         guint menu_lock_count;
130         guint cursor_count;
131
132         FolderView      *folderview;
133         SummaryView     *summaryview;
134         MessageView     *messageview;
135         LogWindow       *logwin;
136
137         gint    progressindicator_hook;
138         
139         GtkWidget       *colorlabel_menu;
140 };
141
142 MainWindow *main_window_create          (SeparateType    type);
143
144 void main_window_destroy                (MainWindow *mainwin);
145
146 void main_window_update_actions_menu    (MainWindow     *mainwin);
147
148 void main_window_cursor_wait            (MainWindow     *mainwin);
149 void main_window_cursor_normal          (MainWindow     *mainwin);
150
151 void main_window_lock                   (MainWindow     *mainwin);
152 void main_window_unlock                 (MainWindow     *mainwin);
153
154 void main_window_reflect_prefs_all_real (gboolean        pixmap_theme_changed);
155 void main_window_reflect_prefs_all      (void);
156 void main_window_reflect_prefs_custom_colors(MainWindow         *mainwindow);
157 void main_window_set_summary_column     (void);
158 void main_window_set_folder_column      (void);
159 void main_window_set_account_menu       (GList          *account_list);
160 void main_window_set_account_menu_only_toolbar  (GList          *account_list);
161
162 GtkWidget *main_window_get_folder_window        (MainWindow     *mainwin);
163 GtkWidget *main_window_get_message_window       (MainWindow     *mainwin);
164
165 /* Mailing list support */
166 void main_create_mailing_list_menu      (MainWindow *mainwin, MsgInfo *msginfo);
167 gint mailing_list_get_list_post_mailto  (gchar **url, gchar *mailto, gint maxlen);
168
169 void main_window_separation_change      (MainWindow     *mainwin,
170                                          SeparateType    type);
171
172 void main_window_toggle_message_view    (MainWindow *mainwin);
173
174 void main_window_get_size               (MainWindow     *mainwin);
175 void main_window_get_position           (MainWindow     *mainwin);
176
177 void main_window_progress_on            (MainWindow     *mainwin);
178 void main_window_progress_off           (MainWindow     *mainwin);
179 void main_window_progress_set           (MainWindow     *mainwin,
180                                          gint            cur,
181                                          gint            total);
182
183 void main_window_empty_trash            (MainWindow     *mainwin,
184                                          gboolean        confirm);
185 void main_window_add_mailbox            (MainWindow     *mainwin);
186
187 void main_window_set_menu_sensitive     (MainWindow     *mainwin);
188
189
190 void main_window_show                   (MainWindow     *mainwin);
191 void main_window_hide                   (MainWindow     *mainwin);
192 void main_window_popup                  (MainWindow     *mainwin);
193
194 void main_window_toolbar_set_compose_button     (MainWindow *mainwin, 
195                                                  ComposeButtonType compose_btn_type);
196
197 SensitiveCond main_window_get_current_state   (MainWindow *mainwin);
198
199 void toolbar_set_compose_button               (Toolbar           *toolbar, 
200                                                ComposeButtonType  compose_btn_type);
201 void main_window_destroy_all                  (void);
202
203 void main_window_toggle_work_offline          (MainWindow        *mainwin, 
204                                                gboolean           offline,
205                                                gboolean           ask_sync);
206
207 /* public so it can be disabled from summaryview */
208 gboolean mainwindow_key_pressed               (GtkWidget         *widget, 
209                                                GdkEventKey       *event,
210                                                gpointer           data);
211 MainWindow *mainwindow_get_mainwindow         (void);
212 void mainwindow_learn                         (MainWindow *mainwin,
213                                                gboolean is_spam);
214 void mainwindow_jump_to                       (const gchar       *target);
215 #endif /* __MAINWINDOW_H__ */