Update Romanian translation
[evolution.git] / src / calendar / gui / e-comp-editor-event.h
blobd0ff49920b61cd72761427949429522d34480b0a
1 /*
2 * Copyright (C) 2015 Red Hat, Inc. (www.redhat.com)
4 * This program is free software: you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by
6 * the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
10 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
11 * for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #ifndef E_COMP_EDITOR_EVENT_H
19 #define E_COMP_EDITOR_EVENT_H
21 #include <calendar/gui/e-comp-editor.h>
23 /* Standard GObject macros */
25 #define E_TYPE_COMP_EDITOR_EVENT \
26 (e_comp_editor_event_get_type ())
27 #define E_COMP_EDITOR_EVENT(obj) \
28 (G_TYPE_CHECK_INSTANCE_CAST \
29 ((obj), E_TYPE_COMP_EDITOR_EVENT, ECompEditorEvent))
30 #define E_COMP_EDITOR_EVENT_CLASS(cls) \
31 (G_TYPE_CHECK_CLASS_CAST \
32 ((cls), E_TYPE_COMP_EDITOR_EVENT, ECompEditorEventClass))
33 #define E_IS_COMP_EDITOR_EVENT(obj) \
34 (G_TYPE_CHECK_INSTANCE_TYPE \
35 ((obj), E_TYPE_COMP_EDITOR_EVENT))
36 #define E_IS_COMP_EDITOR_EVENT_CLASS(cls) \
37 (G_TYPE_CHECK_CLASS_TYPE \
38 ((cls), E_TYPE_COMP_EDITOR_EVENT))
39 #define E_COMP_EDITOR_EVENT_GET_CLASS(obj) \
40 (G_TYPE_INSTANCE_GET_CLASS \
41 ((obj), E_TYPE_COMP_EDITOR_EVENT, ECompEditorEventClass))
43 G_BEGIN_DECLS
45 typedef struct _ECompEditorEvent ECompEditorEvent;
46 typedef struct _ECompEditorEventClass ECompEditorEventClass;
47 typedef struct _ECompEditorEventPrivate ECompEditorEventPrivate;
49 struct _ECompEditorEvent {
50 ECompEditor parent;
52 ECompEditorEventPrivate *priv;
55 struct _ECompEditorEventClass {
56 ECompEditorClass parent_class;
59 GType e_comp_editor_event_get_type (void) G_GNUC_CONST;
61 G_END_DECLS
63 #endif /* E_COMP_EDITOR_EVENT_H */