/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * This library is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation. * * This library 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 Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library. If not, see . * */ #if !defined (__LIBEDATA_CAL_H_INSIDE__) && !defined (LIBEDATA_CAL_COMPILATION) #error "Only should be included directly." #endif #ifndef E_CAL_BACKEND_SYNC_H #define E_CAL_BACKEND_SYNC_H #include /* Standard GObject macros */ #define E_TYPE_CAL_BACKEND_SYNC \ (e_cal_backend_sync_get_type ()) #define E_CAL_BACKEND_SYNC(obj) \ (G_TYPE_CHECK_INSTANCE_CAST \ ((obj), E_TYPE_CAL_BACKEND_SYNC, ECalBackendSync)) #define E_CAL_BACKEND_SYNC_CLASS(cls) \ (G_TYPE_CHECK_CLASS_CAST \ ((cls), E_TYPE_CAL_BACKEND_SYNC, ECalBackendSyncClass)) #define E_IS_CAL_BACKEND_SYNC(obj) \ (G_TYPE_CHECK_INSTANCE_TYPE \ ((obj), E_TYPE_CAL_BACKEND_SYNC)) #define E_IS_CAL_BACKEND_SYNC_CLASS(cls) \ (G_TYPE_CHECK_CLASS_TYPE \ ((cls), E_TYPE_CAL_BACKEND_SYNC)) #define E_CAL_BACKEND_SYNC_GET_CLASS(cls) \ (G_TYPE_INSTANCE_GET_CLASS \ ((cls), E_TYPE_CAL_BACKEND_SYNC, ECalBackendSyncClass)) G_BEGIN_DECLS typedef struct _ECalBackendSync ECalBackendSync; typedef struct _ECalBackendSyncClass ECalBackendSyncClass; typedef struct _ECalBackendSyncPrivate ECalBackendSyncPrivate; /** * ECalBackendSync: * * Contains only private data that should be read and manipulated using the * functions below. **/ struct _ECalBackendSync { /*< private >*/ ECalBackend parent; ECalBackendSyncPrivate *priv; }; /** * ECalBackendSyncClass: * @open_sync: Open the calendar * @refresh_sync: Refresh the calendar * @get_object_sync: Get single object * @get_object_list_sync: Get multiple objects at once * @get_free_busy_sync: Get Free/Busy objects * @create_objects_sync: Create objects * @modify_objects_sync: Modify objects * @remove_objects_sync: Remove objects * @receive_objects_sync: Receive objects * @send_objects_sync: Send objects * @get_attachment_uris_sync: Get attachments uris for given object * @discard_alarm_sync: Discard alarm * @get_timezone_sync: Get specified timezone * @add_timezone_sync: Add specified timezone * * Base class structure for the #ECalBackendSync class * * Since: 3.4 **/ struct _ECalBackendSyncClass { /*< private >*/ ECalBackendClass parent_class; /*< public >*/ /* Virtual methods */ void (*open_sync) (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, GError **error); void (*refresh_sync) (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, GError **error); void (*get_object_sync) (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const gchar *uid, const gchar *rid, gchar **calobj, GError **error); void (*get_object_list_sync) (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const gchar *sexp, GSList **calobjs, GError **error); void (*get_free_busy_sync) (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const GSList *users, time_t start, time_t end, GSList **freebusyobjs, GError **error); void (*create_objects_sync) (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const GSList *calobjs, ECalOperationFlags opflags, GSList **uids, GSList **new_components, GError **error); void (*modify_objects_sync) (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const GSList *calobjs, ECalObjModType mod, ECalOperationFlags opflags, GSList **old_components, GSList **new_components, GError **error); void (*remove_objects_sync) (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const GSList *ids, ECalObjModType mod, ECalOperationFlags opflags, GSList **old_components, GSList **new_components, GError **error); void (*receive_objects_sync) (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const gchar *calobj, ECalOperationFlags opflags, GError **error); void (*send_objects_sync) (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const gchar *calobj, ECalOperationFlags opflags, GSList **users, gchar **modified_calobj, GError **error); void (*get_attachment_uris_sync) (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const gchar *uid, const gchar *rid, GSList **attachments, GError **error); void (*discard_alarm_sync) (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const gchar *uid, const gchar *rid, const gchar *auid, ECalOperationFlags opflags, GError **error); void (*get_timezone_sync) (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const gchar *tzid, gchar **tzobject, GError **error); void (*add_timezone_sync) (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const gchar *tzobject, GError **error); /* Padding for future expansion */ gpointer reserved_padding[20]; }; GType e_cal_backend_sync_get_type (void) G_GNUC_CONST; void e_cal_backend_sync_open (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, GError **error); void e_cal_backend_sync_refresh (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, GError **error); void e_cal_backend_sync_get_object (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const gchar *uid, const gchar *rid, gchar **calobj, GError **error); void e_cal_backend_sync_get_object_list (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const gchar *sexp, GSList **calobjs, GError **error); void e_cal_backend_sync_get_free_busy (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const GSList *users, time_t start, time_t end, GSList **freebusyobjects, GError **error); void e_cal_backend_sync_create_objects (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const GSList *calobjs, ECalOperationFlags opflags, GSList **uids, GSList **new_components, GError **error); void e_cal_backend_sync_modify_objects (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const GSList *calobjs, ECalObjModType mod, ECalOperationFlags opflags, GSList **old_components, GSList **new_components, GError **error); void e_cal_backend_sync_remove_objects (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const GSList *ids, ECalObjModType mod, ECalOperationFlags opflags, GSList **old_components, GSList **new_components, GError **error); void e_cal_backend_sync_receive_objects (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const gchar *calobj, ECalOperationFlags opflags, GError **error); void e_cal_backend_sync_send_objects (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const gchar *calobj, ECalOperationFlags opflags, GSList **users, gchar **modified_calobj, GError **error); void e_cal_backend_sync_get_attachment_uris (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const gchar *uid, const gchar *rid, GSList **attachments, GError **error); void e_cal_backend_sync_discard_alarm (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const gchar *uid, const gchar *rid, const gchar *auid, ECalOperationFlags opflags, GError **error); void e_cal_backend_sync_get_timezone (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const gchar *tzid, gchar **tzobject, GError **error); void e_cal_backend_sync_add_timezone (ECalBackendSync *backend, EDataCal *cal, GCancellable *cancellable, const gchar *tzobject, GError **error); G_END_DECLS #endif /* E_CAL_BACKEND_SYNC_H */