Fix modest_tny_msg_header_get_all_recipients_list (in case from is empty)
[modest] / src / widgets / modest-header-view-observer.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 <modest-header-view-observer.h>
31
32 /**
33  * modest_header_view_observer_update:
34  * @self: A #ModestHeaderViewObserver instance
35  * @change: Informs the observer what kind of change happened in the
36  * observed object.
37  **/
38 void 
39 modest_header_view_observer_update (
40                 ModestHeaderViewObserver *self,
41                 GtkTreeModel *model,
42                 const gchar *tny_folder_id)
43 {
44         g_assert(MODEST_IS_HEADER_VIEW_OBSERVER(self));
45         g_assert(MODEST_HEADER_VIEW_OBSERVER_GET_IFACE(self)->update_func
46                         != NULL);
47
48         MODEST_HEADER_VIEW_OBSERVER_GET_IFACE(self)->update_func(self,
49                         model, tny_folder_id);
50 }
51
52
53 static void
54 modest_header_view_observer_base_init (gpointer g_class)
55 {
56         static gboolean initialized = FALSE;
57
58         if (!initialized) {
59                 /* create interface signals here. */
60                 initialized = TRUE;
61         }
62 }
63
64 GType
65 modest_header_view_observer_get_type (void)
66 {
67         static GType type = 0;
68
69         if (G_UNLIKELY(type == 0))
70         {
71                 static const GTypeInfo info = 
72                 {
73                   sizeof (ModestHeaderViewObserverIface),
74                   modest_header_view_observer_base_init,   /* base_init */
75                   NULL,   /* base_finalize */
76                   NULL,   /* class_init */
77                   NULL,   /* class_finalize */
78                   NULL,   /* class_data */
79                   0,
80                   0,      /* n_preallocs */
81                   NULL,   /* instance_init */
82                   NULL
83                 };
84                 type = g_type_register_static (G_TYPE_INTERFACE, 
85                         "ModestHeaderViewObserver", &info, 0);
86         }
87
88         return type;
89 }
90