aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-cal-event.c
blob: ecd1ea5b7e541b5ba81b7f0b476c85f3acacb77f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/*
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) version 3.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with the program; if not, see <http://www.gnu.org/licenses/>  
 *
 *
 * Authors:
 *      David Trowbridge <trowbrds@cs.colorado.edu>
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include "e-cal-event.h"

static GObjectClass *ece_parent;

static void
ece_init (GObject *o)
{
}

static void
ece_finalize (GObject *o)
{
    ((GObjectClass *) ece_parent)->finalize (o);
}

static void
ece_target_free (EEvent *ev, EEventTarget *t)
{
    switch (t->type) {
    case E_CAL_EVENT_TARGET_MODULE: {
        ECalEventTargetModule *s = (ECalEventTargetModule *) t;
        if (s->shell_module)
            g_object_unref (s->shell_module);
        break; }
    }

    ((EEventClass *)ece_parent)->target_free (ev, t);
}

static void
ece_class_init (GObjectClass *klass)
{
    klass->finalize = ece_finalize;
    ((EEventClass *)klass)->target_free = ece_target_free;
}

GType
e_cal_event_get_type (void)
{
    static GType type = 0;

    if (!type) {
        static const GTypeInfo info = {
            sizeof (ECalEventClass),
            NULL, NULL,
            (GClassInitFunc) ece_class_init,
            NULL, NULL,
            sizeof (ECalEvent), 0,
            (GInstanceInitFunc) ece_init
        };
        ece_parent = g_type_class_ref (e_event_get_type ());
        type = g_type_register_static (e_event_get_type (), "ECalEvent", &info, 0);
    }

    return type;
}

ECalEvent *
e_cal_event_peek (void)
{
    static ECalEvent *e_cal_event = NULL;
    if (!e_cal_event) {
        e_cal_event = g_object_new (e_cal_event_get_type (), NULL);
        e_event_construct (&e_cal_event->event, "org.gnome.evolution.calendar.events");
    }
    return e_cal_event;
}

ECalEventTargetModule *
e_cal_event_target_new_module (ECalEvent *ece, EShellModule *shell_module, guint32 flags)
{
    ECalEventTargetModule *t = e_event_target_new (&ece->event, E_CAL_EVENT_TARGET_MODULE, sizeof (*t));

    t->shell_module = g_object_ref (shell_module);
    t->target.mask = ~flags;

    return t;
}

/* ********************************************************************** */

static void *eceh_parent_class;

static const EEventHookTargetMask eceh_module_masks[] = {
    { "migration", E_CAL_EVENT_MODULE_MIGRATION },
    { NULL },
};

static const EEventHookTargetMap eceh_targets[] = {
    { "module", E_CAL_EVENT_TARGET_MODULE, eceh_module_masks },
    { NULL },
};

static void
eceh_finalize (GObject *o)
{
    ((GObjectClass *) eceh_parent_class)->finalize (o);
}

static void
eceh_class_init (EPluginHookClass *klass)
{
    int i;

    ((GObjectClass *)klass)->finalize = eceh_finalize;
    ((EPluginHookClass *)klass)->id = "org.gnome.evolution.calendar.events:1.0";

    for (i = 0; eceh_targets[i].type; i++)
        e_event_hook_class_add_target_map ((EEventHookClass *)klass, &eceh_targets[i]);

    ((EEventHookClass *)klass)->event = (EEvent *) e_cal_event_peek ();
}

GType
e_cal_event_hook_get_type (void)
{
    static GType type = 0;

    if (!type) {
        static const GTypeInfo info = {
            sizeof (ECalEventHookClass),
            NULL, NULL,
            (GClassInitFunc) eceh_class_init,
            NULL, NULL,
            sizeof (ECalEventHook), 0,
            (GInstanceInitFunc) NULL,
        };

        eceh_parent_class = g_type_class_ref (e_event_hook_get_type ());
        type = g_type_register_static (e_event_hook_get_type (), "ECalEventHook", &info, 0);
    }

    return type;
}