40caf60f2a52220f4d4d54d2d4b1340cd6acfd07
[modest] / src / widgets / modest-toolkit-factory.c
1 /* Copyright (c) 2009, Igalia
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 <glib/gi18n.h>
31 #ifdef MODEST_TOOLKIT_HILDON2
32 #include <modest-hildon-pannable-area-scrollable.h>
33 #else
34 #include <modest-scrolled-window-scrollable.h>
35 #endif
36 #include "modest-toolkit-factory.h"
37
38 static void modest_toolkit_factory_class_init (ModestToolkitFactoryClass *klass);
39 static void modest_toolkit_factory_init (ModestToolkitFactory *self);
40
41 /* GObject interface */
42 static GtkWidget * modest_toolkit_factory_create_scrollable_default (ModestToolkitFactory *self);
43 /* globals */
44 static GObjectClass *parent_class = NULL;
45
46 G_DEFINE_TYPE    (ModestToolkitFactory,
47                   modest_toolkit_factory,
48                   G_TYPE_OBJECT);
49
50 ModestToolkitFactory *
51 modest_toolkit_factory_get_instance                            (void)
52 {
53     GObject* self = g_object_new (MODEST_TYPE_TOOLKIT_FACTORY, NULL);
54
55     return (ModestToolkitFactory *) self;
56 }
57
58 static void
59 modest_toolkit_factory_class_init (ModestToolkitFactoryClass *klass)
60 {
61         parent_class = g_type_class_peek_parent (klass);
62
63         klass->create_scrollable = modest_toolkit_factory_create_scrollable_default;
64 }
65
66 static void
67 modest_toolkit_factory_init (ModestToolkitFactory *self)
68 {
69 }
70
71 GtkWidget *
72 modest_toolkit_factory_create_scrollable (ModestToolkitFactory *self)
73 {
74         return MODEST_TOOLKIT_FACTORY_GET_CLASS (self)->create_scrollable (self);
75 }
76
77 static GtkWidget *
78 modest_toolkit_factory_create_scrollable_default (ModestToolkitFactory *self)
79 {
80 #ifdef MODEST_TOOLKIT_HILDON2
81         return modest_hildon_pannable_area_scrollable_new ();
82 #else
83         return modest_scrolled_window_scrollable_new ();
84 #endif
85 }