Better attachments detection for text/calendar
[modest] / src / widgets / modest-isearch-toolbar.c
1 /* Copyright (c) 2009, Igalia 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-isearch-toolbar.h>
33
34
35 /******************* METHODS */
36 void
37 modest_isearch_toolbar_highlight_entry (ModestISearchToolbar *self, gboolean get_focus)
38 {
39         MODEST_ISEARCH_TOOLBAR_GET_IFACE (self)->highlight_entry (self, get_focus);
40 }
41
42 void
43 modest_isearch_toolbar_set_label (ModestISearchToolbar *self, const gchar *label)
44 {
45         MODEST_ISEARCH_TOOLBAR_GET_IFACE (self)->set_label (self, label);
46 }
47
48 const gchar *
49 modest_isearch_toolbar_get_search (ModestISearchToolbar *self)
50 {
51         return MODEST_ISEARCH_TOOLBAR_GET_IFACE (self)->get_search (self);
52 }
53
54 static void
55 modest_isearch_toolbar_base_init (gpointer g_class)
56 {
57         static gboolean initialized = FALSE;
58
59         if (!initialized) {
60
61                 /* init signals here */
62                 g_signal_new ("isearch-close",
63                               MODEST_TYPE_ISEARCH_TOOLBAR,
64                               G_SIGNAL_RUN_LAST,
65                               G_STRUCT_OFFSET (ModestISearchToolbarIface, isearch_close),
66                               NULL, NULL,
67                               g_cclosure_marshal_VOID__VOID,
68                               G_TYPE_NONE, 0);
69                 g_signal_new ("isearch-search",
70                               MODEST_TYPE_ISEARCH_TOOLBAR,
71                               G_SIGNAL_RUN_LAST,
72                               G_STRUCT_OFFSET (ModestISearchToolbarIface, isearch_search),
73                               NULL, NULL,
74                               g_cclosure_marshal_VOID__VOID,
75                               G_TYPE_NONE, 0);
76                 initialized = TRUE;
77         }
78 }
79
80 GType
81 modest_isearch_toolbar_get_type (void)
82 {
83         static GType type = 0;
84
85         if (G_UNLIKELY(type == 0)) 
86         {
87                 static const GTypeInfo info = 
88                 {
89                   sizeof (ModestISearchToolbarIface),
90                   modest_isearch_toolbar_base_init,   /* base_init */
91                   NULL,   /* base_finalize */
92                   NULL,   /* class_init */
93                   NULL,   /* class_finalize */
94                   NULL,   /* class_data */
95                   0,
96                   0,      /* n_preallocs */
97                   NULL,   /* instance_init */
98                   NULL
99                 };
100
101                 type = g_type_register_static (G_TYPE_INTERFACE,
102                         "ModestISearchToolbar", &info, 0);
103
104         }
105
106         return type;
107 }