Fix FSF address (Tobias Mueller, #470445)
[platform/upstream/evolution-data-server.git] / calendar / backends / groupwise / e-cal-backend-groupwise-utils.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /* 
3  * Authors : 
4  *  JP Rosevear <jpr@ximian.com>
5  *  Rodrigo Moya <rodrigo@ximian.com>
6  *
7  * Copyright 2003, Novell, Inc.
8  *
9  * This program is free software; you can redistribute it and/or 
10  * modify it under the terms of version 2 of the GNU Lesser General Public 
11  * License as published by the Free Software Foundation.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
21  * USA
22  */
23
24 #ifndef E_CAL_BACKEND_GROUPWISE_UTILS_H
25 #define E_CAL_BACKEND_GROUPWISE_UTILS_H
26
27 #include <e-gw-connection.h>
28 #include <libecal/e-cal-component.h>
29 #include <e-cal-backend-groupwise.h>
30
31 G_BEGIN_DECLS
32
33 #define GW_EVENT_TYPE_ID "@4:"
34 #define GW_TODO_TYPE_ID "@3:"
35
36
37 /* Default reminder */
38 #define CALENDAR_CONFIG_PREFIX "/apps/evolution/calendar"
39 #define CALENDAR_CONFIG_DEFAULT_REMINDER CALENDAR_CONFIG_PREFIX "/other/use_default_reminder"
40 #define CALENDAR_CONFIG_DEFAULT_REMINDER_INTERVAL CALENDAR_CONFIG_PREFIX "/other/default_reminder_interval"
41 #define CALENDAR_CONFIG_DEFAULT_REMINDER_UNITS CALENDAR_CONFIG_PREFIX "/other/default_reminder_units"
42
43 /*
44  * Items management
45  */
46 EGwItem       *e_gw_item_new_from_cal_component (const char *container, ECalBackendGroupwise *cbgw, ECalComponent *comp);
47 ECalComponent *e_gw_item_to_cal_component (EGwItem *item, ECalBackendGroupwise *cbgw);
48 void          e_gw_item_set_changes (EGwItem *item, EGwItem *cached_item);
49
50 /*
51  * Connection-related utility functions
52  */
53 EGwConnectionStatus e_gw_connection_create_appointment (EGwConnection *cnc, const char *container, ECalBackendGroupwise *cbgw, ECalComponent *comp, GSList **id_list);
54 EGwConnectionStatus e_gw_connection_send_appointment (ECalBackendGroupwise *cbgw, const char *container, ECalComponent *comp, icalproperty_method method, gboolean all_instances, ECalComponent **created_comp, icalparameter_partstat *pstatus);
55 EGwConnectionStatus e_gw_connection_get_freebusy_info (EGwConnection *cnc, GList *users, time_t start, time_t end, GList **freebusy, icaltimezone *default_zone);
56 gboolean e_cal_backend_groupwise_store_settings (GwSettings *hold);
57 EGwItem * e_gw_item_new_for_delegate_from_cal (ECalBackendGroupwise *cbgw, ECalComponent *comp);
58 gboolean e_cal_backend_groupwise_utils_check_delegate (ECalComponent *comp, const char *email);
59
60
61 /*
62  * Component related utility functions
63  */
64   
65 const char *e_cal_component_get_gw_id (ECalComponent *comp);
66 G_END_DECLS
67
68 #endif