This is a manual merge of branch drop split view intro trunk.
[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_TOOLKIT_GTK
49 #include <gtk/gtkwindow.h>
50 typedef GtkWindow      ModestWindowParent;
51 typedef GtkWindowClass ModestWindowParentClass;
52 #else
53 #if MODEST_HILDON_API == 0
54 #include <hildon-widgets/hildon-window.h>
55 #else
56 #ifdef MODEST_TOOLKIT_HILDON2
57 #include <hildon/hildon-stackable-window.h>
58 #else
59 #include <hildon/hildon-window.h>
60 #endif
61 #endif /*MODEST_HILDON_API == 0*/
62 #ifdef MODEST_TOOLKIT_HILDON2
63 typedef HildonStackableWindow      ModestWindowParent;
64 typedef HildonStackableWindowClass ModestWindowParentClass;
65 #else
66 typedef HildonWindow      ModestWindowParent;
67 typedef HildonWindowClass ModestWindowParentClass;
68 #endif
69
70 #ifndef GTK_STOCK_FULLSCREEN
71 #define GTK_STOCK_FULLSCREEN ""
72 #endif /*GTK_STOCK_FULLSCREEN*/
73
74 #endif /*!MODEST_TOOLKIT_GTK */
75
76 /* Dimmed state variables */
77 typedef struct _DimmedState {   
78         guint    n_selected;
79         guint    already_opened_msg;
80         gboolean any_marked_as_deleted;
81         gboolean all_marked_as_deleted;
82         gboolean any_marked_as_seen;
83         gboolean all_marked_as_seen;
84         gboolean any_marked_as_cached;
85         gboolean all_marked_as_cached;
86         gboolean any_has_attachments;
87         gboolean all_has_attachments;
88         gboolean sent_in_progress;
89         gboolean all_selected;
90 } DimmedState;
91
92 /* convenience macros */
93 #define MODEST_TYPE_WINDOW             (modest_window_get_type())
94 #define MODEST_WINDOW(obj)             (G_TYPE_CHECK_INSTANCE_CAST((obj),MODEST_TYPE_WINDOW,ModestWindow))
95 #define MODEST_WINDOW_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST((klass),MODEST_TYPE_WINDOW,GObject))
96 #define MODEST_IS_WINDOW(obj)          (G_TYPE_CHECK_INSTANCE_TYPE((obj),MODEST_TYPE_WINDOW))
97 #define MODEST_IS_WINDOW_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE((klass),MODEST_TYPE_WINDOW))
98 #define MODEST_WINDOW_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS((obj),MODEST_TYPE_WINDOW,ModestWindowClass))
99
100 typedef struct _ModestWindow      ModestWindow;
101 typedef struct _ModestWindowClass ModestWindowClass;
102
103 struct _ModestWindow {
104          ModestWindowParent parent;
105 };
106
107 struct _ModestWindowClass {
108         ModestWindowParentClass parent_class;
109
110         /* virtual methods */
111         void (*set_zoom_func) (ModestWindow *self, gdouble zoom);
112         gdouble (*get_zoom_func) (ModestWindow *self);
113         gboolean (*zoom_plus_func) (ModestWindow *self);
114         gboolean (*zoom_minus_func) (ModestWindow *self);
115         void (*show_toolbar_func) (ModestWindow *self, gboolean show_toolbar);
116         void (*save_state_func) (ModestWindow *self);
117         void (*disconnect_signals_func) (ModestWindow *self);
118 };
119
120 /**
121  * modest_window_get_type:
122  *
123  * get the #GType for #ModestWindow
124  * 
125  * Returns: the type
126  */     
127 GType        modest_window_get_type    (void) G_GNUC_CONST;
128
129
130 /**
131  * modest_window_get_active_account:
132  * @self: a modest window instance
133  * 
134  * get the name of the active account
135  * 
136  * Returns: the active account name as a constant string
137  */     
138 const gchar* modest_window_get_active_account (ModestWindow *self);
139
140
141
142 /**
143  * modest_window_set_active_account:
144  * @self: a modest window instance
145  * @active_account: a new active account name for this window
146  * 
147  * set the active account for this window.
148  * NOTE: this must be a valid, non-pseudo account.
149  * 
150  */     
151 void modest_window_set_active_account (ModestWindow *self, const gchar *active_account);
152
153 /**
154  * modest_window_set_zoom:
155  * @window: a #ModestWindow instance
156  * @zoom: the zoom level (1.0 is no zoom)
157  *
158  * sets the zoom level of the window
159  */
160 void            modest_window_set_zoom    (ModestWindow *window,
161                                            gdouble value);
162
163 /**
164  * modest_window_get_zoom:
165  * @window: a #ModestWindow instance
166  *
167  * gets the zoom of the window
168  *
169  * Returns: the current zoom value (1.0 is no zoom)
170  */
171 gdouble         modest_window_get_zoom    (ModestWindow *window);
172
173 /**
174  * modest_window_zoom_plus:
175  * @window: a #ModestWindow
176  *
177  * increases one level the zoom.
178  *
179  * Returns: %TRUE if successful, %FALSE if increasing zoom is not available
180  */
181 gboolean modest_window_zoom_plus (ModestWindow *window);
182
183 /**
184  * modest_window_zoom_minus:
185  * @window: a #ModestWindow
186  *
187  * decreases one level the zoom.
188  *
189  * Returns: %TRUE if successful, %FALSE if increasing zoom is not available
190  */
191 gboolean modest_window_zoom_minus (ModestWindow *window);
192
193
194 /**
195  * modest_window_show_toolbar:
196  * @window: 
197  * @view_toolbar: whether or not the toolbar should be shown
198  * 
199  * shows/hides the window toolbar
200  **/
201 void     modest_window_show_toolbar (ModestWindow *window, 
202                                      gboolean show_toolbar);
203                                      
204 /**
205  * modest_window_save_state:
206  * @window: 
207  * 
208  * Ask the window to save its settings for loading again later.
209  * This actually invokes the save_setting_func vfunc, which 
210  * derived windows should implement.
211  **/
212 void     modest_window_save_state (ModestWindow *window);
213
214
215 /**
216  * modest_window_set_dimming_state:
217  * @window: a #ModestWindow instance object
218  * @state: the #DimmedState state at specific time 
219  * 
220  * Set basic dimming variables from selected headers at
221  * specific moment.
222  **/
223 void
224 modest_window_set_dimming_state (ModestWindow *window,
225                                  DimmedState *state);
226
227 /**
228  * modest_window_set_dimming_state:
229  * @window: a #ModestWindow instance object
230  * 
231  * Set basic dimming variables from selected headers at
232  * specific moment.
233  * 
234  * @Returns: a  #DimmedState state saved previously. 
235  **/
236 const DimmedState *
237 modest_window_get_dimming_state (ModestWindow *window);
238                                 
239
240 /**
241  * modest_window_get_action:
242  * @window: a #ModestWindow instance object
243  * @action_path: the full path of required action.
244  * 
245  * Get an action from ui manager, using @action_path parameter,
246  * which represent the full path to the required action into UIManager 
247  * xml definition.
248  **/
249 GtkAction * modest_window_get_action (ModestWindow *window, const gchar *action_path); 
250
251 /**
252  * modest_window_get_action_widget:
253  * @window: a #ModestWindow instance object
254  * @action_path: the full path of required action.
255  * 
256  * Get action widget from ui manager, using @action_path parameter,
257  * which represent the full path to the required action into UIManager 
258  * xml definition.
259  **/
260 GtkWidget *modest_window_get_action_widget (ModestWindow *window, 
261                                             const gchar *action_path);
262
263 /**
264  * modest_window_check_dimming_rules:
265  * @self: a #ModestWindow instance object
266  * 
267  * Calls UI Dimming Manager of @self window to check all dimming rules.
268  * 
269  **/
270 void modest_window_check_dimming_rules (ModestWindow *self);
271
272 /**
273  * modest_window_check_dimming_rules:
274  * @self: a #ModestWindow instance object
275  * @group: a #ModestWindow instance object
276  * 
277  * Calls UI Dimming Manager of @self window to check @group_name specific
278  * dimming rules.
279  * 
280  **/
281 void modest_window_check_dimming_rules_group (ModestWindow *self,
282                                               const gchar *group_name);
283
284
285 /**
286  * modest_window_enable_dimming:
287  * @self: a #ModestWindow instance object
288  * 
289  * Enables UI dimming rules checking.
290  *
291  **/
292 void modest_window_enable_dimming (ModestWindow *self);
293
294
295 /**
296  * modest_window_disable_dimming:
297  * @self: a #ModestWindow instance object
298  * 
299  * Disables UI dimming rules checking.
300  *
301  **/
302 void modest_window_disable_dimming (ModestWindow *self);
303
304
305 void modest_window_disconnect_signals (ModestWindow *self);
306
307
308 G_END_DECLS
309
310 #endif /* __MODEST_WINDOW_H__ */