add omitted prototype
[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
27 #include "folderview.h"
28 #include "summaryview.h"
29 #include "headerview.h"
30 #include "messageview.h"
31 #include "logwindow.h"
32
33 typedef enum
34 {
35         SEPARATE_NONE    = 0,
36         SEPARATE_FOLDER  = 1 << 0,
37         SEPARATE_MESSAGE = 1 << 1,
38         SEPARATE_BOTH    = (SEPARATE_FOLDER | SEPARATE_MESSAGE)
39 } SeparateType;
40
41 typedef enum
42 {
43         TOOLBAR_NONE    = 0,
44         TOOLBAR_ICON    = 1,
45         TOOLBAR_TEXT    = 2,
46         TOOLBAR_BOTH    = 3
47 } ToolbarStyle;
48
49 typedef enum 
50 {
51         COMPOSEBUTTON_MAIL,
52         COMPOSEBUTTON_NEWS
53 } ComposeButtonType;
54
55 struct _MainWindow
56 {
57         SeparateType type;
58
59         union CompositeWin {
60                 struct 
61                 {
62                         GtkWidget *hpaned;
63                         GtkWidget *vpaned;
64                 } sep_none;
65                 struct {
66                         GtkWidget *folderwin;
67                         GtkWidget *vpaned;
68                 } sep_folder;
69                 struct {
70                         GtkWidget *messagewin;
71                         GtkWidget *hpaned;
72                 } sep_message;
73                 struct {
74                         GtkWidget *folderwin;
75                         GtkWidget *messagewin;
76                 } sep_both;
77         } win;
78
79         GtkWidget *window;
80         GtkWidget *vbox;
81         GtkWidget *menubar;
82
83         GtkItemFactory *menu_factory;
84
85         /* toolbar */
86         GtkWidget *handlebox;
87         GtkWidget *toolbar;
88         GtkWidget *get_btn;
89         GtkWidget *getall_btn;
90
91         /* compose button stuff */
92         GtkWidget *compose_mail_btn;
93         GtkWidget *compose_news_btn;
94         ComposeButtonType compose_btn_type;
95         
96         /* for the reply buttons */
97         GtkWidget *reply_btn;
98         GtkWidget *reply_popup;
99         GtkWidget *replyall_btn;
100         GtkWidget *replyall_popup;
101         GtkWidget *replysender_btn;
102         GtkWidget *replysender_popup;
103         
104         /* the forward button similar to the reply buttons*/
105         GtkWidget *fwd_btn;
106         GtkWidget *fwd_popup;
107         
108         GtkWidget *send_btn;
109         /*
110         GtkWidget *prefs_btn;
111         GtkWidget *account_btn;
112         */
113         GtkWidget *next_btn;
114         GtkWidget *delete_btn;
115         GtkWidget *exec_btn;
116
117         /* body */
118         GtkWidget *vbox_body;
119         GtkWidget *hbox_stat;
120         GtkWidget *statusbar;
121         GtkWidget *progressbar;
122         GtkWidget *statuslabel;
123         GtkWidget *ac_button;
124         GtkWidget *ac_label;
125         GtkWidget *ac_menu;
126         GtkWidget *online_switch;
127         GtkWidget *offline_switch;
128
129         /* context IDs for status bar */
130         gint mainwin_cid;
131         gint folderview_cid;
132         gint summaryview_cid;
133
134         ToolbarStyle toolbar_style;
135
136         guint lock_count;
137         guint menu_lock_count;
138         guint cursor_count;
139
140         FolderView      *folderview;
141         SummaryView     *summaryview;
142         MessageView     *messageview;
143         LogWindow       *logwin;
144 };
145
146 MainWindow *main_window_create          (SeparateType    type);
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_set_summary_column     (void);
157 void main_window_set_account_menu       (GList          *account_list);
158 void main_window_separation_change      (MainWindow     *mainwin,
159                                          SeparateType    type);
160
161 void main_window_toggle_message_view    (MainWindow *mainwin);
162
163 void main_window_get_size               (MainWindow     *mainwin);
164 void main_window_get_position           (MainWindow     *mainwin);
165
166 void main_window_empty_trash            (MainWindow     *mainwin,
167                                          gboolean        confirm);
168 void main_window_add_mailbox            (MainWindow     *mainwin);
169
170 void main_window_set_toolbar_sensitive  (MainWindow     *mainwin);
171 void main_window_set_menu_sensitive     (MainWindow     *mainwin);
172
173
174 void main_window_popup                  (MainWindow     *mainwin);
175
176 void main_window_toolbar_set_compose_button     
177                                         (MainWindow *mainwin, 
178                                          ComposeButtonType compose_btn_type);
179
180 #endif /* __MAINWINDOW_H__ */