forked from GNOME/gnome-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gcal-event.h
125 lines (86 loc) · 5.56 KB
/
gcal-event.h
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
/* gcal-event.h
*
* Copyright (C) 2016 Georges Basile Stavracas Neto <[email protected]>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef GCAL_EVENT_H
#define GCAL_EVENT_H
#include <glib-object.h>
#include <gtk/gtk.h>
#include <libecal/libecal.h>
#include <libedataserver/libedataserver.h>
G_BEGIN_DECLS
/**
* GcalEventError:
* @GCAL_EVENT_ERROR_INVALID_START_DATE: indicated an invalid start date
*
* Errors that #GcalEvent can generate.
*/
typedef enum
{
GCAL_EVENT_ERROR_INVALID_START_DATE
} GcalEventError;
#define GCAL_EVENT_ERROR gcal_event_error_quark ()
#define GCAL_TYPE_EVENT (gcal_event_get_type())
G_DECLARE_FINAL_TYPE (GcalEvent, gcal_event, GCAL, EVENT, GObject)
GQuark gcal_event_error_quark (void);
GcalEvent* gcal_event_new (ESource *source,
ECalComponent *component,
GError **error);
gboolean gcal_event_get_all_day (GcalEvent *self);
void gcal_event_set_all_day (GcalEvent *self,
gboolean all_day);
GdkRGBA* gcal_event_get_color (GcalEvent *self);
void gcal_event_set_color (GcalEvent *self,
GdkRGBA *color);
ECalComponent* gcal_event_get_component (GcalEvent *self);
GDateTime* gcal_event_get_date_end (GcalEvent *self);
void gcal_event_set_date_end (GcalEvent *self,
GDateTime *dt);
GDateTime* gcal_event_get_date_start (GcalEvent *self);
void gcal_event_set_date_start (GcalEvent *self,
GDateTime *dt);
const gchar* gcal_event_get_description (GcalEvent *self);
void gcal_event_set_description (GcalEvent *self,
const gchar *description);
gboolean gcal_event_has_alarms (GcalEvent *self);
GList* gcal_event_get_alarms (GcalEvent *self);
void gcal_event_add_alarm (GcalEvent *self,
guint type,
gboolean has_sound);
void gcal_event_remove_alarm (GcalEvent *self,
guint type);
const gchar* gcal_event_get_location (GcalEvent *self);
void gcal_event_set_location (GcalEvent *self,
const gchar *location);
ESource* gcal_event_get_source (GcalEvent *self);
void gcal_event_set_source (GcalEvent *self,
ESource *source);
const gchar* gcal_event_get_summary (GcalEvent *self);
void gcal_event_set_summary (GcalEvent *self,
const gchar *summary);
GTimeZone* gcal_event_get_timezone (GcalEvent *self);
void gcal_event_set_timezone (GcalEvent *self,
GTimeZone *timezone);
const gchar* gcal_event_get_uid (GcalEvent *self);
/* Utilities */
gboolean gcal_event_is_multiday (GcalEvent *self);
gint gcal_event_compare (GcalEvent *event1,
GcalEvent *event2);
gint gcal_event_compare_with_current (GcalEvent *event1,
GcalEvent *event2,
time_t *current_time);
G_END_DECLS
#endif /* GCAL_EVENT_H */