Partial implementation of Leandro's cool button
[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 "headerwindow.h"
32 #include "logwindow.h"
33
34 typedef enum
35 {
36         SEPARATE_NONE    = 0,
37         SEPARATE_FOLDER  = 1 << 0,
38         SEPARATE_MESSAGE = 1 << 1,
39         SEPARATE_BOTH    = (SEPARATE_FOLDER | SEPARATE_MESSAGE)
40 } SeparateType;
41
42 typedef enum
43 {
44         TOOLBAR_NONE    = 0,
45         TOOLBAR_ICON    = 1,
46         TOOLBAR_TEXT    = 2,
47         TOOLBAR_BOTH    = 3
48 } ToolbarStyle;
49
50 typedef enum 
51 {
52         COMPOSEBUTTON_MAIL,
53         COMPOSEBUTTON_NEWS
54 } ComposeButtonType;
55
56 struct _MainWindow
57 {
58         SeparateType type;
59
60         union CompositeWin {
61                 struct 
62                 {
63                         GtkWidget *hpaned;
64                         GtkWidget *vpaned;
65                 } sep_none;
66                 struct {
67                         GtkWidget *folderwin;
68                         GtkWidget *vpaned;
69                 } sep_folder;
70                 struct {
71                         GtkWidget *messagewin;
72                         GtkWidget *hpaned;
73                 } sep_message;
74                 struct {
75                         GtkWidget *folderwin;
76                         GtkWidget *messagewin;
77                 } sep_both;
78         } win;
79
80         GtkWidget *window;
81         GtkWidget *vbox;
82         GtkWidget *menubar;
83
84         /* tool bar */
85         GtkWidget *handlebox;
86         GtkWidget *toolbar;
87         GtkWidget *get_btn;
88         GtkWidget *getall_btn;
89
90         /* compose button stuff */
91         GtkWidget *compose_mail_btn;
92         GtkWidget *compose_news_btn;
93         ComposeButtonType compose_btn_type;
94         
95         GtkWidget *reply_btn;
96         GtkWidget *replyall_btn;
97         GtkWidget *replysender_btn;
98         GtkWidget *fwd_btn;
99         GtkWidget *send_btn;
100         /*
101         GtkWidget *prefs_btn;
102         GtkWidget *account_btn;
103         */
104         GtkWidget *next_btn;
105         GtkWidget *delete_btn;
106         GtkWidget *exec_btn;
107
108         /* body */
109         GtkWidget *vbox_body;
110         GtkWidget *hbox_stat;
111         GtkWidget *statusbar;
112         GtkWidget *ac_button;
113         GtkWidget *ac_label;
114         GtkWidget *ac_menu;
115
116         /* context IDs for status bar */
117         gint mainwin_cid;
118         gint folderview_cid;
119         gint summaryview_cid;
120
121         ToolbarStyle toolbar_style;
122
123         guint cursor_count;
124
125         FolderView      *folderview;
126         SummaryView     *summaryview;
127         MessageView     *messageview;
128         HeaderWindow    *headerwin;
129         LogWindow       *logwin;
130 };
131
132 MainWindow *main_window_create          (SeparateType    type);
133 void main_window_cursor_wait            (MainWindow     *mainwin);
134 void main_window_cursor_normal          (MainWindow     *mainwin);
135 void main_window_reflect_prefs_all      (void);
136 void main_window_set_account_menu       (GList          *account_list);
137 void main_window_separation_change      (MainWindow     *mainwin,
138                                          SeparateType    type);
139 void main_window_get_size               (MainWindow     *mainwin);
140 void main_window_get_position           (MainWindow     *mainwin);
141 void main_window_empty_trash            (MainWindow     *mainwin,
142                                          gboolean        confirm);
143 void main_window_add_mailbox            (MainWindow     *mainwin);
144
145 void main_window_set_toolbar_sensitive  (MainWindow     *mainwin,
146                                          gboolean        sensitive);
147 void main_window_set_menu_sensitive     (MainWindow     *mainwin,
148                                          gint            selection);
149 void main_window_popup                  (MainWindow     *mainwin);
150 void main_window_set_thread_option      (MainWindow *mainwin);
151
152 #endif /* __MAINWINDOW_H__ */