34711de082f0e796484df0b2b835a2b9f463ab4f
[claws.git] / src / mainwindow.h
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2001 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 #ifndef __MAINWINDOW_H__
21 #define __MAINWINDOW_H__
22
23 #include <glib.h>
24
25 typedef struct _MainWindow  MainWindow;
26 typedef struct _MainToolbar MainToolbar;
27
28 #include "folderview.h"
29 #include "summaryview.h"
30 #include "headerview.h"
31 #include "messageview.h"
32 #include "logwindow.h"
33 #include "toolbar.h"
34
35 typedef enum
36 {
37         M_UNLOCKED            = 1 << 0,
38         M_MSG_EXIST           = 1 << 1,
39         M_TARGET_EXIST        = 1 << 2,
40         M_SINGLE_TARGET_EXIST = 1 << 3,
41         M_EXEC                = 1 << 4,
42         M_ALLOW_REEDIT        = 1 << 5,
43         M_HAVE_ACCOUNT        = 1 << 6,
44         M_THREADED            = 1 << 7,
45         M_UNTHREADED          = 1 << 8,
46         M_ALLOW_DELETE        = 1 << 9,
47         M_INC_ACTIVE          = 1 << 10,
48         M_NEWS                = 1 << 11,
49         M_HAVE_NEWS_ACCOUNT   = 1 << 12,
50         M_HIDE_READ_MSG       = 1 << 13,
51         M_DELAY_EXEC          = 1 << 14,
52         M_NOT_NEWS            = 1 << 15,
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 } ToolbarStyle;
70
71 struct _MainWindow
72 {
73         SeparateType type;
74
75         union CompositeWin {
76                 struct 
77                 {
78                         GtkWidget *hpaned;
79                         GtkWidget *vpaned;
80                 } sep_none;
81                 struct {
82                         GtkWidget *folderwin;
83                         GtkWidget *vpaned;
84                 } sep_folder;
85                 struct {
86                         GtkWidget *messagewin;
87                         GtkWidget *hpaned;
88                 } sep_message;
89                 struct {
90                         GtkWidget *folderwin;
91                         GtkWidget *messagewin;
92                 } sep_both;
93         } win;
94
95         GtkWidget *window;
96         GtkWidget *vbox;
97         GtkWidget *menubar;
98
99         GtkItemFactory *menu_factory;
100         
101         /* Toolbar handlebox */
102         GtkWidget *handlebox;
103         
104         MainToolbar *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
118         /* context IDs for status bar */
119         gint mainwin_cid;
120         gint folderview_cid;
121         gint summaryview_cid;
122
123         ToolbarStyle toolbar_style;
124
125         guint lock_count;
126         guint menu_lock_count;
127         guint cursor_count;
128
129         FolderView      *folderview;
130         SummaryView     *summaryview;
131         MessageView     *messageview;
132         LogWindow       *logwin;
133 };
134 typedef enum 
135 {
136         COMPOSEBUTTON_MAIL,
137         COMPOSEBUTTON_NEWS
138 } ComposeButtonType;
139
140 struct _MainToolbar {
141
142         GtkWidget *toolbar;
143
144         GtkWidget *get_btn;
145         GtkWidget *getall_btn;
146         GtkWidget *sel_down;
147         GtkWidget *sel_down_all;
148         GtkWidget *sel_down_cur;
149         GtkWidget *send_btn;
150
151         GtkWidget *compose_mail_btn;
152         GtkWidget *compose_news_btn;
153
154         GtkWidget *reply_btn;
155         GtkWidget *replysender_btn;
156         GtkWidget *replyall_btn;
157         GtkWidget *replylist_btn;
158
159         GtkWidget *fwd_btn;
160
161         GtkWidget *delete_btn;
162         GtkWidget *next_btn;
163         GtkWidget *exec_btn;
164
165         GtkWidget *separator;
166
167         /* for the reply buttons */
168         GtkWidget *reply_popup;
169         GtkWidget *replyall_popup;
170         GtkWidget *replylist_popup;
171         GtkWidget *replysender_popup;
172         
173         /* the forward button similar to the reply buttons*/
174         GtkWidget *fwd_popup;
175
176         ComposeButtonType compose_btn_type;
177
178         GSList    *t_action_list;
179         GSList    *t_item_list;
180 };
181
182 MainWindow *main_window_create          (SeparateType    type);
183
184 void main_window_cursor_wait            (MainWindow     *mainwin);
185 void main_window_cursor_normal          (MainWindow     *mainwin);
186
187 void main_window_lock                   (MainWindow     *mainwin);
188 void main_window_unlock                 (MainWindow     *mainwin);
189
190 void main_window_reflect_prefs_all_real         (gboolean pixmap_theme_changed);
191 void main_window_reflect_prefs_all      (void);
192 void main_window_set_summary_column     (void);
193 void main_window_set_account_menu       (GList          *account_list);
194 void main_window_separation_change      (MainWindow     *mainwin,
195                                          SeparateType    type);
196
197 void main_window_toggle_message_view    (MainWindow *mainwin);
198
199 void main_window_get_size               (MainWindow     *mainwin);
200 void main_window_get_position           (MainWindow     *mainwin);
201
202 void main_window_empty_trash            (MainWindow     *mainwin,
203                                          gboolean        confirm);
204 void main_window_add_mailbox            (MainWindow     *mainwin);
205
206 void main_window_set_menu_sensitive     (MainWindow     *mainwin);
207
208
209 void main_window_popup                  (MainWindow     *mainwin);
210
211 void main_window_toolbar_set_compose_button     (MainWindow *mainwin, 
212                                                  ComposeButtonType compose_btn_type);
213
214 SensitiveCond main_window_get_current_state   (MainWindow *mainwin);
215
216 void toolbar_set_sensitive                    (MainWindow *mainwin);
217
218 void toolbar_set_compose_button               (MainToolbar        *toolbar, 
219                                                ComposeButtonType  compose_btn_type);
220 void main_window_destroy_all                  (void);
221 #endif /* __MAINWINDOW_H__ */