Work to make attachments be opened in a single instance (raise window
[modest] / src / widgets / modest-window-mgr.h
1 /* Copyright (c) 2006,2007 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_MGR_H__
31 #define __MODEST_WINDOW_MGR_H__
32
33 #include <glib-object.h>
34 #include "widgets/modest-msg-view-window.h"
35
36 G_BEGIN_DECLS
37
38 /* convenience macros */
39 #define MODEST_TYPE_WINDOW_MGR             (modest_window_mgr_get_type())
40 #define MODEST_WINDOW_MGR(obj)             (G_TYPE_CHECK_INSTANCE_CAST((obj),MODEST_TYPE_WINDOW_MGR,ModestWindowMgr))
41 #define MODEST_WINDOW_MGR_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST((klass),MODEST_TYPE_WINDOW_MGR,GObject))
42 #define MODEST_IS_WINDOW_MGR(obj)          (G_TYPE_CHECK_INSTANCE_TYPE((obj),MODEST_TYPE_WINDOW_MGR))
43 #define MODEST_IS_WINDOW_MGR_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE((klass),MODEST_TYPE_WINDOW_MGR))
44 #define MODEST_WINDOW_MGR_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS((obj),MODEST_TYPE_WINDOW_MGR,ModestWindowMgrClass))
45
46 typedef struct _ModestWindowMgr      ModestWindowMgr;
47 typedef struct _ModestWindowMgrClass ModestWindowMgrClass;
48
49 struct _ModestWindowMgr {
50          GObject parent;
51 };
52
53 struct _ModestWindowMgrClass {
54         GObjectClass parent_class;
55 };
56
57
58 /* member functions */
59 GType        modest_window_mgr_get_type    (void) G_GNUC_CONST;
60
61 /* typical parameter-less _new function */
62 ModestWindowMgr*    modest_window_mgr_new         (void);
63
64
65 /**
66  * modest_window_mgr_register_window:
67  * @self: the #ModestWindowMgr
68  * @window: a #ModestWindow
69  * 
70  * Registers a new window in the window manager. The window manager
71  * will keep a reference.
72  **/
73 void           modest_window_mgr_register_window       (ModestWindowMgr *self, 
74                                                         ModestWindow *window);
75
76 /**
77  * modest_window_mgr_unregister_window:
78  * @self: the #ModestWindowMgr
79  * @window: a #ModestWindow
80  * 
81  * Unregisters a given window from the window manager. The window
82  * manager will free its reference to it.
83  **/
84 void           modest_window_mgr_unregister_window     (ModestWindowMgr *self, 
85                                                         ModestWindow *window);
86
87
88
89 /**
90  * modest_window_mgr_set_fullscreen_mode:
91  * @self: a #ModestWindowMgr
92  * @on: a #gboolean
93  * 
94  * sets/unsets the application windows in fullscreen mode
95  **/
96 void           modest_window_mgr_set_fullscreen_mode   (ModestWindowMgr *self,
97                                                         gboolean on);
98
99 /**
100  * modest_window_mgr_get_fullscreen_mode:
101  * @self: a #ModestWindowMgr
102  * 
103  * gets the application current fullscreen mode
104  *
105  * Return value: TRUE is the application is in fullscrenn mode,
106  * otherwise FALSE
107  **/
108 gboolean       modest_window_mgr_get_fullscreen_mode   (ModestWindowMgr *self);
109
110
111 /**
112  * modest_window_mgr_show_toolbars:
113  * @self: a #ModestWindowMgr
114  * @window_type: apply the show toolbars command only to the windows of this type
115  * @show_toolbar: whether or not the toolbars should be shown
116  * @fullscreen: TRUE/FALSE for show/hide in fullscreen mode, otherwise
117  * it applies to normal mode
118  * 
119  * shows or hides the toolbars of the registered windows. Note that if
120  * the #fullscreen attribute is TRUE and the application is in normal
121  * mode, you will not see the changes until the application switches
122  * to fullscreen mode and viceversa
123  **/
124 void           modest_window_mgr_show_toolbars         (ModestWindowMgr *self,
125                                                         GType window_type,
126                                                         gboolean show_toolbars,
127                                                         gboolean fullscreen);
128 /**
129  * modest_window_mgr_get_main_window:
130  * @self: a #ModestWindowMgr
131  *
132  * get the main window, or create if it's not there. don't destroy
133  * it.
134  *
135  * Returns: the main window or NULL in case of error
136  **/
137 ModestWindow*  modest_window_mgr_get_main_window       (ModestWindowMgr *self);
138
139
140 /**
141  * modest_window_mgr_get_modal:
142  * @self: a #ModestWindowMgr
143  *
144  * get the modal window; if it's NULL, there's no active modal window
145  *
146  * Returns: the modal window or NULL
147  **/
148 GtkWindow*    modest_window_mgr_get_modal  (ModestWindowMgr *self);
149
150
151 /**
152  * modest_window_mgr_get_easysetup_dialog:
153  * @self: a #ModestWindowMgr
154  *
155  * set the modal dialog; set it to NULL after destroying the dialog
156  *
157  * Returns: the modal dialog just set
158  **/
159 void          modest_window_mgr_set_modal  (ModestWindowMgr *self,
160                                             GtkWindow *window);
161
162 /**
163  * modest_window_mgr_prevent_hibernation_while_window_is_shown:
164  * @self: a #ModestWindowMgr
165  * @window: The window that should prevent hibernation while it is shown.
166  * 
167  * Call this if hibernation should not be allowed because 
168  * windows are open whose state cannot sensible be saved, such as Account 
169  * Settings dialogs.
170  * This causes modest_window_mgr_get_hibernation_is_prevented() to return TRUE 
171  * until all such windows have been closed. That means, until the windows have 
172  * been hidden - window destruction or other memory management is not relevant.
173  **/
174 void modest_window_mgr_prevent_hibernation_while_window_is_shown (ModestWindowMgr *self, 
175         GtkWindow *window);
176
177
178 /**
179  * modest_window_mgr_find_registered_header
180  * @self: a #ModestWindowMgr
181  * @header: a valid #TnyHeader
182  * 
183  * search for the given uid in both the list of preregistered uids and in the window list;
184  * if it's available in the window list, fill the *win out-param
185  *
186  * returns TRUE if found, FALSE otherwise
187  **/
188 gboolean modest_window_mgr_find_registered_header (ModestWindowMgr *self,  TnyHeader *header,
189                                                ModestWindow **win);
190
191
192 /**
193  * modest_window_mgr_close_all_windows
194  * @self: a #ModestWindowMgr
195  * 
196  * Close all registered windows. 
197  **/
198 void modest_window_mgr_close_all_windows (ModestWindowMgr *self);
199
200 /**
201  * modest_window_mgr_register_header
202  * @self: a #ModestWindowMgr
203  * @header: a valid #TnyHeader
204  * @alt_uid: alternative uid in case @header does not provide one
205  * 
206  * register the uid, even before the window is created. thus, we know when
207  * some window creation might already be underway. the uid will automatically be
208  * removed when the window itself will registered
209  * 
210  **/
211 void  modest_window_mgr_register_header   (ModestWindowMgr *self,  TnyHeader *header, const gchar *alt_uid);
212         
213
214 /**
215  * modest_window_mgr_unregister_header
216  * @self: a #ModestWindowMgr
217  * @header: a valid #TnyHeader
218  * 
219  * unregister the uid. We could need to do that if there is any error
220  * retrieving a message. In that case the window will not be
221  * registered and thus the header will not be removed, so we must do
222  * it manually
223  **/
224 void  modest_window_mgr_unregister_header (ModestWindowMgr *self,  TnyHeader *header);
225
226 /**
227  * modest_window_mgr_get_hibernation_is_prevented:
228  * @self: a #ModestWindowMgr
229  * @result: Whether any windows are currently preventing hibernation.
230  * 
231  * Use this to discover whether hibernation should not be allowed because 
232  * windows are open whose state cannot sensible be saved, such as Account 
233  * Settings dialogs. This function will return true after someone has called 
234  * modest_window_mgr_prevent_hibernation_while_window_is_shown() and before 
235  * that window has been closed.
236  **/
237 gboolean modest_window_mgr_get_hibernation_is_prevented (ModestWindowMgr *self);
238
239 /**
240  * modest_window_mgr_save_state_for_all_windows:
241  * @self: a #ModestWindowMgr
242  * 
243  * Save any state for all windows. For instance, call this before allowing 
244  * application hibernation.
245  **/
246 void modest_window_mgr_save_state_for_all_windows (ModestWindowMgr *self);
247         
248 G_END_DECLS
249
250 #endif /* __MODEST_WINDOW_MGR_H__ */
251