aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/cal-client/cal-listener.h
blob: d0f9a718a4cc9ddf8be7475b6355e0a140a3a0e1 (plain) (blame)
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
/* Evolution calendar listener
 *
 * Copyright (C) 2001 Ximian, Inc.
 *
 * Author: Federico Mena-Quintero <federico@ximian.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU General Public
 * License as published by the Free Software Foundation.
 *
 * 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
 */

#ifndef CAL_LISTENER_H
#define CAL_LISTENER_H

#include <bonobo/bonobo-object.h>
#include "evolution-calendar.h"

G_BEGIN_DECLS



#define CAL_LISTENER_TYPE            (cal_listener_get_type ())
#define CAL_LISTENER(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), CAL_LISTENER_TYPE, CalListener))
#define CAL_LISTENER_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), CAL_LISTENER_TYPE,  \
                      CalListenerClass))
#define IS_CAL_LISTENER(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CAL_LISTENER_TYPE))
#define IS_CAL_LISTENER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CAL_LISTENER_TYPE))

typedef struct CalListenerPrivate CalListenerPrivate;

typedef struct {
    BonoboObject xobject;

    /* Private data */
    CalListenerPrivate *priv;
} CalListener;

typedef struct {
    BonoboObjectClass parent_class;

    POA_GNOME_Evolution_Calendar_Listener__epv epv;
} CalListenerClass;

/* Notification functions */
typedef void (* CalListenerCalOpenedFn) (CalListener *listener,
                     GNOME_Evolution_Calendar_Listener_OpenStatus status,
                     GNOME_Evolution_Calendar_Cal cal,
                     gpointer data);

typedef void (* CalListenerCalSetModeFn) (CalListener *listener,
                      GNOME_Evolution_Calendar_Listener_SetModeStatus status,
                      GNOME_Evolution_Calendar_CalMode mode,
                      gpointer data);

typedef void (* CalListenerObjUpdatedFn) (CalListener *listener,
                      const CORBA_char *uid,
                      gpointer data);
typedef void (* CalListenerObjRemovedFn) (CalListener *listener,
                      const CORBA_char *uid,
                      gpointer data);

typedef void (* CalListenerErrorOccurredFn) (CalListener *listener,
                         const char *message,
                         gpointer data);

typedef void (* CalListenerCategoriesChangedFn) (CalListener *listener,
                         const GNOME_Evolution_Calendar_StringSeq *categories,
                         gpointer data);


GType cal_listener_get_type (void);

CalListener *cal_listener_construct (CalListener *listener,
                     CalListenerCalOpenedFn cal_opened_fn,
                     CalListenerCalSetModeFn cal_set_mode_fn,
                     CalListenerObjUpdatedFn obj_updated_fn,
                     CalListenerObjRemovedFn obj_removed_fn,
                     CalListenerErrorOccurredFn error_occurred_fn,
                     CalListenerCategoriesChangedFn categories_changed_fn,
                     gpointer fn_data);

CalListener *cal_listener_new (CalListenerCalOpenedFn cal_opened_fn,
                   CalListenerCalSetModeFn cal_set_mode_fn,
                   CalListenerObjUpdatedFn obj_updated_fn,
                   CalListenerObjRemovedFn obj_removed_fn,
                   CalListenerErrorOccurredFn error_occurred_fn,
                   CalListenerCategoriesChangedFn categories_changed_fn,
                   gpointer fn_data);

void cal_listener_stop_notification (CalListener *listener);



G_END_DECLS

#endif