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