d79ad62a717b54d663b329d8536d8fd02a5eaa1c
[modest] / src / widgets / modest-msg-view.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 <config.h>
31
32 #include <widgets/modest-msg-view.h>
33 #include <widgets/modest-isearch-view.h>
34 #include <modest-marshal.h>
35
36 enum {
37         ATTACHMENT_CLICKED_SIGNAL,
38         RECPT_ACTIVATED_SIGNAL,
39         LINK_CONTEXTUAL_SIGNAL,
40         FETCH_IMAGE_SIGNAL,
41         LAST_SIGNAL
42 };
43 static guint signals[LAST_SIGNAL] = {0};
44
45 GtkAdjustment*
46 modest_msg_view_get_vadjustment (ModestMsgView *self)
47 {
48         return MODEST_MSG_VIEW_GET_IFACE (self)->get_vadjustment_func (self);
49 }
50
51 GtkAdjustment*
52 modest_msg_view_get_hadjustment (ModestMsgView *self)
53 {
54         return MODEST_MSG_VIEW_GET_IFACE (self)->get_hadjustment_func (self);
55 }
56
57 void
58 modest_msg_view_set_vadjustment (ModestMsgView *self, GtkAdjustment *vadj)
59 {
60         MODEST_MSG_VIEW_GET_IFACE (self)->set_vadjustment_func (self, vadj);
61 }
62
63 void
64 modest_msg_view_set_hadjustment (ModestMsgView *self, GtkAdjustment *hadj)
65 {
66         MODEST_MSG_VIEW_GET_IFACE (self)->set_hadjustment_func (self, hadj);
67 }
68
69 void
70 modest_msg_view_set_shadow_type (ModestMsgView *self, GtkShadowType type)
71 {
72         MODEST_MSG_VIEW_GET_IFACE (self)->set_shadow_type_func (self, type);
73 }
74
75 GtkShadowType
76 modest_msg_view_get_shadow_type (ModestMsgView *self)
77 {
78         return MODEST_MSG_VIEW_GET_IFACE (self)->get_shadow_type_func (self);
79 }
80
81 TnyHeaderFlags
82 modest_msg_view_get_priority (ModestMsgView *self)
83 {
84         return MODEST_MSG_VIEW_GET_IFACE (self)->get_priority_func (self);
85 }
86
87 void
88 modest_msg_view_set_priority (ModestMsgView *self, TnyHeaderFlags flags)
89 {
90         MODEST_MSG_VIEW_GET_IFACE (self)->set_priority_func (self, flags);
91 }
92
93 void
94 modest_msg_view_set_view_images (ModestMsgView *self, gboolean view_images)
95 {
96         MODEST_MSG_VIEW_GET_IFACE (self)->set_view_images_func (self, view_images);
97 }
98
99 TnyList*
100 modest_msg_view_get_selected_attachments (ModestMsgView *self)
101 {
102         return MODEST_MSG_VIEW_GET_IFACE (self)->get_selected_attachments_func (self);
103 }
104
105 TnyList*
106 modest_msg_view_get_attachments (ModestMsgView *self)
107 {
108         return MODEST_MSG_VIEW_GET_IFACE (self)->get_attachments_func (self);
109 }
110
111 void
112 modest_msg_view_grab_focus (ModestMsgView *self)
113 {
114         MODEST_MSG_VIEW_GET_IFACE (self)->grab_focus_func (self);
115 }
116
117 void
118 modest_msg_view_remove_attachment (ModestMsgView *self, TnyMimePart *attachment)
119 {
120         MODEST_MSG_VIEW_GET_IFACE (self)->remove_attachment_func (self, attachment);
121 }
122
123 static void
124 modest_msg_view_base_init (gpointer g_class)
125 {
126         static gboolean initialized = FALSE;
127
128         if (!initialized) {
129                 
130                 signals[ATTACHMENT_CLICKED_SIGNAL] =
131                         g_signal_new ("attachment_clicked",
132                                       MODEST_TYPE_MSG_VIEW,
133                                       G_SIGNAL_RUN_FIRST,
134                                       G_STRUCT_OFFSET(ModestMsgViewIface, attachment_clicked),
135                                       NULL, NULL,
136                                       g_cclosure_marshal_VOID__OBJECT,
137                                       G_TYPE_NONE, 1, G_TYPE_OBJECT);
138                 
139                 signals[RECPT_ACTIVATED_SIGNAL] =
140                         g_signal_new ("recpt_activated",
141                                       MODEST_TYPE_MSG_VIEW,
142                                       G_SIGNAL_RUN_FIRST,
143                                       G_STRUCT_OFFSET(ModestMsgViewIface, recpt_activated),
144                                       NULL, NULL,
145                                       g_cclosure_marshal_VOID__STRING,
146                                       G_TYPE_NONE, 1, G_TYPE_STRING);
147                 
148                 signals[LINK_CONTEXTUAL_SIGNAL] =
149                         g_signal_new ("link_contextual",
150                                       MODEST_TYPE_MSG_VIEW,
151                                       G_SIGNAL_RUN_FIRST,
152                                       G_STRUCT_OFFSET(ModestMsgViewIface, link_contextual),
153                                       NULL, NULL,
154                                       g_cclosure_marshal_VOID__STRING,
155                                       G_TYPE_NONE, 1, G_TYPE_STRING);
156                 
157                 signals[FETCH_IMAGE_SIGNAL] =
158                         g_signal_new ("fetch_image",
159                                       MODEST_TYPE_MSG_VIEW,
160                                       G_SIGNAL_ACTION | G_SIGNAL_RUN_LAST,
161                                       G_STRUCT_OFFSET(ModestMsgViewIface, fetch_image),
162                                       NULL, NULL,
163                                       modest_marshal_BOOLEAN__STRING_OBJECT,
164                                       G_TYPE_BOOLEAN, 2, G_TYPE_STRING, G_TYPE_OBJECT);
165                 
166                 initialized = TRUE;
167         }
168 }
169
170 GType
171 modest_msg_view_get_type (void)
172 {
173         static GType my_type = 0;
174         if (!my_type) {
175                 static const GTypeInfo my_info = {
176                         sizeof(ModestMsgViewIface),
177                         modest_msg_view_base_init,   /* base init */
178                         NULL,           /* base finalize */
179                         NULL,           /* class_init */
180                         NULL,           /* class finalize */
181                         NULL,           /* class data */
182                         0,
183                         0,              /* n_preallocs */
184                         NULL,           /* instance_init */
185                         NULL
186                 };
187
188                 my_type = g_type_register_static (G_TYPE_INTERFACE,
189                                                   "ModestMsgView",
190                                                   &my_info, 0);
191
192                 g_type_interface_add_prerequisite (my_type,
193                                                    MODEST_TYPE_ZOOMABLE);
194                 g_type_interface_add_prerequisite (my_type,
195                                                    MODEST_TYPE_ISEARCH_VIEW);
196                 g_type_interface_add_prerequisite (my_type,
197                                                    TNY_TYPE_MIME_PART_VIEW);
198                 g_type_interface_add_prerequisite (my_type,
199                                                    MODEST_TYPE_MIME_PART_VIEW);
200
201         }
202         return my_type;
203 }