Updated Spanish translation
[evolution.git] / e-util / e-alarm-selector.h
blob15763add3c15b295ce53daae4e314145b82b8b2c
1 /*
2 * e-alarm-selector.h
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU Lesser 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 Lesser General Public License
14 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 #if !defined (__E_UTIL_H_INSIDE__) && !defined (LIBEUTIL_COMPILATION)
19 #error "Only <e-util/e-util.h> should be included directly."
20 #endif
22 #ifndef E_ALARM_SELECTOR_H
23 #define E_ALARM_SELECTOR_H
25 #include <e-util/e-source-selector.h>
27 /* Standard GObject macros */
28 #define E_TYPE_ALARM_SELECTOR \
29 (e_alarm_selector_get_type ())
30 #define E_ALARM_SELECTOR(obj) \
31 (G_TYPE_CHECK_INSTANCE_CAST \
32 ((obj), E_TYPE_ALARM_SELECTOR, EAlarmSelector))
33 #define E_ALARM_SELECTOR_CLASS(cls) \
34 (G_TYPE_CHECK_CLASS_CAST \
35 ((cls), E_TYPE_ALARM_SELECTOR, EAlarmSelectorClass))
36 #define E_IS_ALARM_SELECTOR(obj) \
37 (G_TYPE_CHECK_INSTANCE_TYPE \
38 ((obj), E_TYPE_ALARM_SELECTOR))
39 #define E_IS_ALARM_SELECTOR_CLASS(cls) \
40 (G_TYPE_CHECK_CLASS_TYPE \
41 ((cls), E_TYPE_ALARM_SELECTOR))
42 #define E_ALARM_SELECTOR_GET_CLASS(obj) \
43 (G_TYPE_INSTANCE_GET_CLASS \
44 ((obj), E_TYPE_ALARM_SELECTOR, EAlarmSelectorClass))
46 G_BEGIN_DECLS
48 typedef struct _EAlarmSelector EAlarmSelector;
49 typedef struct _EAlarmSelectorClass EAlarmSelectorClass;
50 typedef struct _EAlarmSelectorPrivate EAlarmSelectorPrivate;
52 struct _EAlarmSelector {
53 ESourceSelector parent;
54 EAlarmSelectorPrivate *priv;
57 struct _EAlarmSelectorClass {
58 ESourceSelectorClass parent_class;
61 GType e_alarm_selector_get_type (void) G_GNUC_CONST;
62 GtkWidget * e_alarm_selector_new (ESourceRegistry *registry);
64 G_END_DECLS
66 #endif /* E_ALARM_SELECTOR_H */