Replace hildon pannable area with modest scrollable in msg view window
[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 #include <modest-hildon-pannable-area-scrollable.h>
32 #include "modest-toolkit-factory.h"
33
34 static void modest_toolkit_factory_class_init (ModestToolkitFactoryClass *klass);
35 static void modest_toolkit_factory_init (ModestToolkitFactory *self);
36
37 /* GObject interface */
38 static GtkWidget * modest_toolkit_factory_create_scrollable_default (ModestToolkitFactory *self);
39 /* globals */
40 static GObjectClass *parent_class = NULL;
41
42 G_DEFINE_TYPE    (ModestToolkitFactory,
43                   modest_toolkit_factory,
44                   G_TYPE_OBJECT);
45
46 ModestToolkitFactory *
47 modest_toolkit_factory_get_instance                            (void)
48 {
49     GObject* self = g_object_new (MODEST_TYPE_TOOLKIT_FACTORY, NULL);
50
51     return (ModestToolkitFactory *) self;
52 }
53
54 static void
55 modest_toolkit_factory_class_init (ModestToolkitFactoryClass *klass)
56 {
57         parent_class = g_type_class_peek_parent (klass);
58
59         klass->create_scrollable = modest_toolkit_factory_create_scrollable_default;
60 }
61
62 static void
63 modest_toolkit_factory_init (ModestToolkitFactory *self)
64 {
65 }
66
67 GtkWidget *
68 modest_toolkit_factory_create_scrollable (ModestToolkitFactory *self)
69 {
70         return MODEST_TOOLKIT_FACTORY_GET_CLASS (self)->create_scrollable (self);
71 }
72
73 static GtkWidget *
74 modest_toolkit_factory_create_scrollable_default (ModestToolkitFactory *self)
75 {
76         return modest_hildon_pannable_area_scrollable_new ();
77 }