Added the function that quotes emails
[modest] / src / widgets / modest-zoomable.c
1 /* Copyright (c) 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 #include <config.h>
31
32 #include <modest-zoomable.h>
33
34 /**
35  * modest_zoomable_set_zoom:
36  * @zoomable: a #ModestZoomable instance
37  * @value: a #gdouble (1.0 is no zoom).
38  *
39  * sets the current zoom leven of @zoomable to @value
40  */
41 void            
42 modest_zoomable_set_zoom (ModestZoomable *zoomable,
43                           gdouble value)
44 {
45         MODEST_ZOOMABLE_GET_IFACE (zoomable)->set_zoom_func (zoomable, value);
46 }
47
48 /**
49  * modest_zoomable_get_zoom:
50  * @zoomable: a #ModestZoomable instance
51  *
52  * obtains the current zoom level of @zoomable.
53  *
54  * Returns: a #gdouble (1.0 is no zoom).
55  */
56 gdouble         
57 modest_zoomable_get_zoom (ModestZoomable *zoomable)
58 {
59         return MODEST_ZOOMABLE_GET_IFACE (zoomable)->get_zoom_func (zoomable);
60 }
61
62 /**
63  * modest_zoomable_zoom_plus:
64  * @zoomable: a #ModestZoomable instance
65  *
66  * increases the zoom level, if it can. If not
67  * it returns %FALSE
68  *
69  * Returns: %TRUE if zoom was increased, %FALSE otherwise
70  */
71 gboolean
72 modest_zoomable_zoom_plus   (ModestZoomable *zoomable)
73 {
74         return MODEST_ZOOMABLE_GET_IFACE (zoomable)->zoom_plus_func (zoomable);
75 }
76
77 /**
78  * modest_zoomable_zoom_minus:
79  * @zoomable: a #ModestZoomable instance
80  *
81  * decreases the zoom level, if it can. If not
82  * it returns %FALSE
83  *
84  * Returns: %TRUE if zoom was decreased, %FALSE otherwise
85  */
86 gboolean        
87 modest_zoomable_zoom_minus  (ModestZoomable *zoomable)
88 {
89         return MODEST_ZOOMABLE_GET_IFACE (zoomable)->zoom_minus_func (zoomable);
90 }
91
92 static void
93 modest_zoomable_base_init (gpointer g_class)
94 {
95         static gboolean initialized = FALSE;
96
97         if (!initialized) {
98                 /* create interface signals here. */
99                 initialized = TRUE;
100         }
101 }
102
103 GType
104 modest_zoomable_get_type (void)
105 {
106         static GType type = 0;
107
108         if (G_UNLIKELY(type == 0)) 
109         {
110                 static const GTypeInfo info = 
111                 {
112                   sizeof (ModestZoomableIface),
113                   modest_zoomable_base_init,   /* base_init */
114                   NULL,   /* base_finalize */
115                   NULL,   /* class_init */
116                   NULL,   /* class_finalize */
117                   NULL,   /* class_data */
118                   0,
119                   0,      /* n_preallocs */
120                   NULL,   /* instance_init */
121                   NULL
122                 };
123
124                 type = g_type_register_static (G_TYPE_INTERFACE,
125                         "ModestZoomable", &info, 0);
126
127         }
128
129         return type;
130 }