3eda53e02927382db68f55c52ba451db2cf72686
[modest] / src / widgets / modest-window.c
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 #include "modest-window.h"
31 #include "modest-window-priv.h"
32 #include "modest-tny-platform-factory.h"
33
34 /* 'private'/'protected' functions */
35 static void modest_window_class_init (ModestWindowClass *klass);
36 static void modest_window_init       (ModestWindow *obj);
37 static void modest_window_finalize   (GObject *obj);
38
39 static void        modest_window_set_zoom_default       (ModestWindow *window,
40                                                          gdouble zoom);
41 static gdouble     modest_window_get_zoom_default       (ModestWindow *window);
42 static gboolean    modest_window_zoom_plus_default      (ModestWindow *window);
43 static gboolean    modest_window_zoom_minus_default     (ModestWindow *window);
44 static void        modest_window_show_toolbar_default   (ModestWindow *window,
45                                                          gboolean show_toolbar);
46
47 /* list my signals  */
48 enum {
49         LAST_SIGNAL
50 };
51
52 /* globals */
53 static GObjectClass *parent_class = NULL;
54
55 /* uncomment the following if you have defined any signals */
56 /* static guint signals[LAST_SIGNAL] = {0}; */
57
58 GType
59 modest_window_get_type (void)
60 {
61         static GType my_type = 0;
62         static GType parent_type = 0;
63         if (!my_type) {
64                 static const GTypeInfo my_info = {
65                         sizeof(ModestWindowClass),
66                         NULL,           /* base init */
67                         NULL,           /* base finalize */
68                         (GClassInitFunc) modest_window_class_init,
69                         NULL,           /* class finalize */
70                         NULL,           /* class data */
71                         sizeof(ModestWindow),
72                         1,              /* n_preallocs */
73                         (GInstanceInitFunc) modest_window_init,
74                         NULL
75                 };
76 #ifdef MODEST_PLATFORM_MAEMO
77                 parent_type = HILDON_TYPE_WINDOW;
78 #else
79                 parent_type = GTK_TYPE_WINDOW;
80 #endif 
81                 my_type = g_type_register_static (parent_type,
82                                                   "ModestWindow",
83                                                   &my_info, 
84                                                   G_TYPE_FLAG_ABSTRACT);
85         }
86         return my_type;
87 }
88
89 static void
90 modest_window_class_init (ModestWindowClass *klass)
91 {
92         GObjectClass *gobject_class;
93         gobject_class = (GObjectClass*) klass;
94
95         parent_class            = g_type_class_peek_parent (klass);
96         gobject_class->finalize = modest_window_finalize;
97
98         klass->set_zoom_func = modest_window_set_zoom_default;
99         klass->get_zoom_func = modest_window_get_zoom_default;
100         klass->zoom_plus_func = modest_window_zoom_plus_default;
101         klass->zoom_minus_func = modest_window_zoom_minus_default;
102         klass->show_toolbar_func = modest_window_show_toolbar_default;
103
104         g_type_class_add_private (gobject_class, sizeof(ModestWindowPrivate));
105 }
106
107 static void
108 modest_window_init (ModestWindow *obj)
109 {
110         ModestWindowPrivate *priv;
111
112         priv = MODEST_WINDOW_GET_PRIVATE(obj);
113
114         priv->ui_manager     = NULL;
115         priv->ui_dimming_manager     = NULL;
116         priv->toolbar        = NULL;
117         priv->menubar        = NULL;
118
119         priv->active_account = NULL;
120 }
121
122 static void
123 modest_window_finalize (GObject *obj)
124 {
125         ModestWindowPrivate *priv;      
126
127         priv = MODEST_WINDOW_GET_PRIVATE(obj);
128
129         if (priv->ui_manager) {
130                 g_object_unref (G_OBJECT(priv->ui_manager));
131                 priv->ui_manager = NULL;
132         }
133         if (priv->ui_dimming_manager) {
134                 g_object_unref (G_OBJECT(priv->ui_dimming_manager));
135                 priv->ui_dimming_manager = NULL;
136         }
137
138         g_free (priv->active_account);
139         
140         G_OBJECT_CLASS(parent_class)->finalize (obj);
141 }
142
143
144
145 const gchar*
146 modest_window_get_active_account (ModestWindow *self)
147 {
148         g_return_val_if_fail (self, NULL);
149
150         return MODEST_WINDOW_GET_PRIVATE(self)->active_account;
151 }
152
153 void
154 modest_window_set_active_account (ModestWindow *self, const gchar *active_account)
155 {
156         ModestWindowPrivate *priv;      
157
158         priv = MODEST_WINDOW_GET_PRIVATE(self);
159
160         if (active_account == priv->active_account)
161                 return;
162         else {
163                 g_free (priv->active_account);
164                 priv->active_account = NULL;
165                 if (active_account)
166                         priv->active_account = g_strdup (active_account);
167         }
168 }
169
170 void
171 modest_window_check_dimming_rules (ModestWindow *self)
172 {
173         ModestWindowPrivate *priv;      
174
175         priv = MODEST_WINDOW_GET_PRIVATE(self);
176         modest_ui_dimming_manager_process_dimming_rules (priv->ui_dimming_manager);
177 }
178
179 GtkAction *
180 modest_window_get_action (ModestWindow *window, 
181                           const gchar *action_path) 
182 {
183         GtkAction *action = NULL;
184         ModestWindowPrivate *priv;      
185
186         priv = MODEST_WINDOW_GET_PRIVATE(window);
187
188         action = gtk_ui_manager_get_action (priv->ui_manager, action_path);     
189
190         return action;
191 }
192
193 void
194 modest_window_set_zoom (ModestWindow *window,
195                         gdouble zoom)
196 {
197         MODEST_WINDOW_GET_CLASS (window)->set_zoom_func (window, zoom);
198         return;
199 }
200
201 gdouble
202 modest_window_get_zoom (ModestWindow *window)
203 {
204         return MODEST_WINDOW_GET_CLASS (window)->get_zoom_func (window);
205 }
206
207 gboolean
208 modest_window_zoom_plus (ModestWindow *window)
209 {
210         return MODEST_WINDOW_GET_CLASS (window)->zoom_plus_func (window);
211 }
212
213 gboolean
214 modest_window_zoom_minus (ModestWindow *window)
215 {
216         return MODEST_WINDOW_GET_CLASS (window)->zoom_minus_func (window);
217 }
218
219 void 
220 modest_window_show_toolbar (ModestWindow *window,
221                             gboolean show_toolbar)
222 {
223         MODEST_WINDOW_GET_CLASS (window)->show_toolbar_func (window,
224                                                              show_toolbar);
225 }
226
227
228 /* Default implementations */
229
230 static void
231 modest_window_set_zoom_default (ModestWindow *window,
232                                 gdouble zoom)
233 {
234         g_warning ("modest: You should implement %s", __FUNCTION__);
235
236 }
237
238 static gdouble
239 modest_window_get_zoom_default (ModestWindow *window)
240 {
241         g_warning ("modest: You should implement %s", __FUNCTION__);
242         return 1.0;
243 }
244
245 static gboolean
246 modest_window_zoom_plus_default (ModestWindow *window)
247 {
248         g_warning ("modest: You should implement %s", __FUNCTION__);
249         return FALSE;
250 }
251
252 static gboolean
253 modest_window_zoom_minus_default (ModestWindow *window)
254 {
255         g_warning ("modest: You should implement %s", __FUNCTION__);
256         return FALSE;
257 }
258
259 static void 
260 modest_window_show_toolbar_default (ModestWindow *window,
261                                     gboolean show_toolbar)
262 {
263         g_warning ("modest: You should implement %s", __FUNCTION__);
264 }
265
266 void
267 modest_window_save_state (ModestWindow *window)
268 {
269         ModestWindowClass *klass = MODEST_WINDOW_GET_CLASS (window);
270         if (klass->save_state_func)
271                 klass->save_state_func (window);
272 }