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
|
/*
* 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"
G_DEFINE_TYPE (ECalEvent, e_cal_event, E_TYPE_EVENT)
static void
ece_target_free (EEvent *ev,
EEventTarget *t)
{
switch (t->type) {
case E_CAL_EVENT_TARGET_BACKEND: {
ECalEventTargetBackend *s = (ECalEventTargetBackend *) t;
if (s->shell_backend)
g_object_unref (s->shell_backend);
break; }
}
E_EVENT_CLASS (e_cal_event_parent_class)->target_free (ev, t);
}
static void
e_cal_event_class_init (ECalEventClass *class)
{
EEventClass *event_class;
event_class = E_EVENT_CLASS (class);
event_class->target_free = ece_target_free;
}
static void
e_cal_event_init (ECalEvent *event)
{
}
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;
}
ECalEventTargetBackend *
e_cal_event_target_new_module (ECalEvent *ece,
EShellBackend *shell_backend,
guint32 flags)
{
ECalEventTargetBackend *t;
t = e_event_target_new (
&ece->event, E_CAL_EVENT_TARGET_BACKEND, sizeof (*t));
t->shell_backend = g_object_ref (shell_backend);
t->target.mask = ~flags;
return t;
}
|