Updated Traditional Chinese translation(Hong Kong and Taiwan)
[evolution.git] / calendar / gui / ea-cal-view-event.h
blobb4b193de2ddfd70d789eb28459713bae1a3be19a
1 /*
2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU Lesser General Public
4 * License as published by the Free Software Foundation; either
5 * version 2 of the License, or (at your option) version 3.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 * Lesser General Public License for more details.
12 * You should have received a copy of the GNU Lesser General Public
13 * License along with the program; if not, see <http://www.gnu.org/licenses/>
16 * Authors:
17 * Bolian Yin <bolian.yin@sun.com>
19 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
23 #ifndef __EA_CAL_VIEW_EVENT_H__
24 #define __EA_CAL_VIEW_EVENT_H__
26 #include <atk/atkgobjectaccessible.h>
28 G_BEGIN_DECLS
30 #define EA_TYPE_CAL_VIEW_EVENT (ea_cal_view_event_get_type ())
31 #define EA_CAL_VIEW_EVENT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EA_TYPE_CAL_VIEW_EVENT, EaCalViewEvent))
32 #define EA_CAL_VIEW_EVENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), EA_TYPE_CAL_VIEW_EVENT, EaCalViewEventClass))
33 #define EA_IS_CAL_VIEW_EVENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EA_TYPE_CAL_VIEW_EVENT))
34 #define EA_IS_CAL_VIEW_EVENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), EA_TYPE_CAL_VIEW_EVENT))
35 #define EA_CAL_VIEW_EVENT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), EA_TYPE_CAL_VIEW_EVENT, EaCalViewEventClass))
37 typedef struct _EaCalViewEvent EaCalViewEvent;
38 typedef struct _EaCalViewEventClass EaCalViewEventClass;
40 struct _EaCalViewEvent
42 AtkGObjectAccessible parent;
43 AtkStateSet *state_set;
46 GType ea_cal_view_event_get_type (void);
48 struct _EaCalViewEventClass
50 AtkGObjectAccessibleClass parent_class;
53 AtkObject *ea_cal_view_event_new (GObject *obj);
55 G_END_DECLS
57 #endif /* __EA_CAL_VIEW_EVENT_H__ */