* Define a new mail-operation to remove several messages.
[modest] / src / widgets / modest-window.h
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #ifndef __MODEST_WINDOW_H__
31 #define __MODEST_WINDOW_H__
32
33 #include <glib-object.h>
34 #include <tny-account-store.h>
35
36 G_BEGIN_DECLS
37
38 #ifdef HAVE_CONFIG_H
39 #include <config.h>
40 #endif /*HAVE_CONFIG_H*/
41
42 #include <gtk/gtk.h>
43  
44 /* 
45  * admittedly, the ifdefs for gtk and maemo are rather ugly; still
46  * this way is probably the easiest to maintain
47  */
48 #ifdef MODEST_PLATFORM_GNOME
49 #include <gtk/gtkwindow.h>
50 typedef GtkWindow      ModestWindowParent;
51 typedef GtkWindowClass ModestWindowParentClass;
52 #endif /* MODEST_PLATFORM_GNOME */
53
54 #ifdef MODEST_PLATFORM_MAEMO
55 #ifdef MODEST_HAVE_HILDON0_WIDGETS
56 #include <hildon-widgets/hildon-window.h>
57 #else
58 #include <hildon/hildon-window.h>
59 #endif /*MODEST_HAVE_HILDON0_WIDGETS*/
60 typedef HildonWindow      ModestWindowParent;
61 typedef HildonWindowClass ModestWindowParentClass;
62
63 #ifndef GTK_STOCK_FULLSCREEN
64 #define GTK_STOCK_FULLSCREEN ""
65 #endif /*GTK_STOCK_FULLSCREEN*/
66
67 #endif /*MODEST_PLATFORM_MAEMO */
68
69 /* Dimmed state variables */
70 typedef struct _DimmedState {   
71         guint    n_selected;
72         gboolean already_opened_msg;
73         gboolean any_marked_as_deleted;
74         gboolean all_marked_as_deleted;
75         gboolean any_marked_as_seen;
76         gboolean all_marked_as_seen;
77         gboolean any_marked_as_cached;
78         gboolean all_marked_as_cached;
79         gboolean any_has_attachments;
80         gboolean all_has_attachments;
81         gboolean sent_in_progress;
82         gboolean all_selected;
83 } DimmedState;
84
85 /* convenience macros */
86 #define MODEST_TYPE_WINDOW             (modest_window_get_type())
87 #define MODEST_WINDOW(obj)             (G_TYPE_CHECK_INSTANCE_CAST((obj),MODEST_TYPE_WINDOW,ModestWindow))
88 #define MODEST_WINDOW_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST((klass),MODEST_TYPE_WINDOW,GObject))
89 #define MODEST_IS_WINDOW(obj)          (G_TYPE_CHECK_INSTANCE_TYPE((obj),MODEST_TYPE_WINDOW))
90 #define MODEST_IS_WINDOW_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE((klass),MODEST_TYPE_WINDOW))
91 #define MODEST_WINDOW_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS((obj),MODEST_TYPE_WINDOW,ModestWindowClass))
92
93 typedef struct _ModestWindow      ModestWindow;
94 typedef struct _ModestWindowClass ModestWindowClass;
95
96 struct _ModestWindow {
97          ModestWindowParent parent;
98 };
99
100 struct _ModestWindowClass {
101         ModestWindowParentClass parent_class;
102
103         /* virtual methods */
104         void (*set_zoom_func) (ModestWindow *self, gdouble zoom);
105         gdouble (*get_zoom_func) (ModestWindow *self);
106         gboolean (*zoom_plus_func) (ModestWindow *self);
107         gboolean (*zoom_minus_func) (ModestWindow *self);
108         void (*show_toolbar_func) (ModestWindow *self, gboolean show_toolbar);
109         void (*save_state_func) (ModestWindow *self);
110         void (*disconnect_signals_func) (ModestWindow *self);
111 };
112
113 /**
114  * modest_window_get_type:
115  *
116  * get the #GType for #ModestWindow
117  * 
118  * Returns: the type
119  */     
120 GType        modest_window_get_type    (void) G_GNUC_CONST;
121
122
123 /**
124  * modest_window_get_active_account:
125  * @self: a modest window instance
126  * 
127  * get the name of the active account
128  * 
129  * Returns: the active account name as a constant string
130  */     
131 const gchar* modest_window_get_active_account (ModestWindow *self);
132
133
134
135 /**
136  * modest_window_set_active_account:
137  * @self: a modest window instance
138  * @active_account: a new active account name for this window
139  * 
140  * set the active account for this window
141  * 
142  */     
143 void modest_window_set_active_account (ModestWindow *self, const gchar *active_account);
144
145 /**
146  * modest_window_set_zoom:
147  * @window: a #ModestWindow instance
148  * @zoom: the zoom level (1.0 is no zoom)
149  *
150  * sets the zoom level of the window
151  */
152 void            modest_window_set_zoom    (ModestWindow *window,
153                                            gdouble value);
154
155 /**
156  * modest_window_get_zoom:
157  * @window: a #ModestWindow instance
158  *
159  * gets the zoom of the window
160  *
161  * Returns: the current zoom value (1.0 is no zoom)
162  */
163 gdouble         modest_window_get_zoom    (ModestWindow *window);
164
165 /**
166  * modest_window_zoom_plus:
167  * @window: a #ModestWindow
168  *
169  * increases one level the zoom.
170  *
171  * Returns: %TRUE if successful, %FALSE if increasing zoom is not available
172  */
173 gboolean modest_window_zoom_plus (ModestWindow *window);
174
175 /**
176  * modest_window_zoom_minus:
177  * @window: a #ModestWindow
178  *
179  * decreases one level the zoom.
180  *
181  * Returns: %TRUE if successful, %FALSE if increasing zoom is not available
182  */
183 gboolean modest_window_zoom_minus (ModestWindow *window);
184
185
186 /**
187  * modest_window_show_toolbar:
188  * @window: 
189  * @view_toolbar: whether or not the toolbar should be shown
190  * 
191  * shows/hides the window toolbar
192  **/
193 void     modest_window_show_toolbar (ModestWindow *window, 
194                                      gboolean show_toolbar);
195                                      
196 /**
197  * modest_window_save_state:
198  * @window: 
199  * 
200  * Ask the window to save its settings for loading again later.
201  * This actually invokes the save_setting_func vfunc, which 
202  * derived windows should implement.
203  **/
204 void     modest_window_save_state (ModestWindow *window);
205
206
207 /**
208  * modest_window_set_dimming_state:
209  * @window: a #ModestWindow instance object
210  * @state: the #DimmedState state at specific time 
211  * 
212  * Set basic dimming variables from selected headers at
213  * specific moment.
214  **/
215 void
216 modest_window_set_dimming_state (ModestWindow *window,
217                                  DimmedState *state);
218
219 /**
220  * modest_window_set_dimming_state:
221  * @window: a #ModestWindow instance object
222  * 
223  * Set basic dimming variables from selected headers at
224  * specific moment.
225  * 
226  * @Returns: a  #DimmedState state saved previously. 
227  **/
228 const DimmedState *
229 modest_window_get_dimming_state (ModestWindow *window);
230                                 
231
232 /**
233  * modest_window_get_action:
234  * @window: a #ModestWindow instance object
235  * @action_path: the full path of required action.
236  * 
237  * Get an action from ui manager, using @action_path parameter,
238  * which represent the full path to the required action into UIManager 
239  * xml definition.
240  **/
241 GtkAction * modest_window_get_action (ModestWindow *window, const gchar *action_path); 
242
243 /**
244  * modest_window_get_action_widget:
245  * @window: a #ModestWindow instance object
246  * @action_path: the full path of required action.
247  * 
248  * Get action widget from ui manager, using @action_path parameter,
249  * which represent the full path to the required action into UIManager 
250  * xml definition.
251  **/
252 GtkWidget *modest_window_get_action_widget (ModestWindow *window, 
253                                             const gchar *action_path);
254
255 /**
256  * modest_window_check_dimming_rules:
257  * @self: a #ModestWindow instance object
258  * 
259  * Calls UI Dimming Manager of @self window to check all dimming rules.
260  * 
261  **/
262 void modest_window_check_dimming_rules (ModestWindow *self);
263
264 /**
265  * modest_window_check_dimming_rules:
266  * @self: a #ModestWindow instance object
267  * @group: a #ModestWindow instance object
268  * 
269  * Calls UI Dimming Manager of @self window to check @group_name specific
270  * dimming rules.
271  * 
272  **/
273 void modest_window_check_dimming_rules_group (ModestWindow *self,
274                                               const gchar *group_name);
275
276
277 /**
278  * modest_window_enable_dimming:
279  * @self: a #ModestWindow instance object
280  * 
281  * Enables UI dimming rules checking.
282  *
283  **/
284 void modest_window_enable_dimming (ModestWindow *self);
285
286
287 /**
288  * modest_window_disable_dimming:
289  * @self: a #ModestWindow instance object
290  * 
291  * Disables UI dimming rules checking.
292  *
293  **/
294 void modest_window_disable_dimming (ModestWindow *self);
295
296
297 void modest_window_disconnect_signals (ModestWindow *self);
298
299
300 G_END_DECLS
301
302 #endif /* __MODEST_WINDOW_H__ */