aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/cal-client/cal-listener.h
blob: 123010499967d80115663e16846798dbaf70c1e2 (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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/* 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"
#include "cal-client-types.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;

    /* Signals */
    void (*read_only) (CalListener *listener, ECalendarStatus status, gboolean read_only);
    void (*cal_address) (CalListener *listener, ECalendarStatus status, const char *address);
    void (*alarm_address) (CalListener *listener, ECalendarStatus status, const char *address);
    void (*ldap_attribute) (CalListener *listener, ECalendarStatus status, const char *ldap_attribute);
    void (*static_capabilities) (CalListener *listener, ECalendarStatus status, const char *capabilities);

    void (*open) (CalListener *listener, ECalendarStatus status);
    void (*remove) (CalListener *listener, ECalendarStatus status);

    void (*create_object) (CalListener *listener, ECalendarStatus status, const char *id);
    void (*modify_object) (CalListener *listener, ECalendarStatus status);
    void (*remove_object) (CalListener *listener, ECalendarStatus status);

    void (*discard_alarm) (CalListener *listener, ECalendarStatus status);

    void (*receive_objects) (CalListener *listener, ECalendarStatus status);
    void (*send_objects) (CalListener *listener, ECalendarStatus status);

    void (*default_object) (CalListener *listener, ECalendarStatus status, const char *object);
    void (*object) (CalListener *listener, ECalendarStatus status, const char *object);
    void (*object_list) (CalListener *listener, ECalendarStatus status, GList **objects);

    void (*get_timezone) (CalListener *listener, ECalendarStatus status, const char *object);
    void (*add_timezone) (CalListener *listener, ECalendarStatus status, const char *tzid);
    void (*set_default_timezone) (CalListener *listener, ECalendarStatus status, const char *tzid);

    void (*get_changes) (CalListener *listener, ECalendarStatus status, GList *changes);
    void (*get_free_busy) (CalListener *listener, ECalendarStatus status, GList *freebusy);
    
    void (*query) (CalListener *listener, ECalendarStatus status, GNOME_Evolution_Calendar_Query query);
} CalListenerClass;

/* Notification functions */
typedef void (* CalListenerCalSetModeFn) (CalListener *listener,
                      GNOME_Evolution_Calendar_Listener_SetModeStatus status,
                      GNOME_Evolution_Calendar_CalMode mode,
                      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,
                     CalListenerCalSetModeFn cal_set_mode_fn,
                     CalListenerErrorOccurredFn error_occurred_fn,
                     CalListenerCategoriesChangedFn categories_changed_fn,
                     gpointer fn_data);

CalListener *cal_listener_new (CalListenerCalSetModeFn cal_set_mode_fn,
                   CalListenerErrorOccurredFn error_occurred_fn,
                   CalListenerCategoriesChangedFn categories_changed_fn,
                   gpointer fn_data);

void cal_listener_stop_notification (CalListener *listener);



G_END_DECLS

#endif