From 8550ca3f28108f315db18a0edc508f6e682b66fd Mon Sep 17 00:00:00 2001 From: Eskil Heyn Olsen Date: Wed, 8 Sep 1999 13:06:07 +0000 Subject: uses GNOME_PILOT_CHECK * configure.in: uses GNOME_PILOT_CHECK * gncal/GnomeCal.idl: added a get_objects() call, which returns all the objects in the calendar. * gncal/Makefile.am: added two conduits with control-applets. Compiled only if configure sets HAVE_GNOME_PILOT * gncal/calender-conduit.[ch]: began implementing conduit. * gncal/todo-conduit.[ch]: begin implementing conduit. * gncal/corba-cal.c: implemented the get_objects() call. svn path=/trunk/; revision=1216 --- calendar/gui/todo-conduit.h | 59 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 calendar/gui/todo-conduit.h (limited to 'calendar/gui/todo-conduit.h') diff --git a/calendar/gui/todo-conduit.h b/calendar/gui/todo-conduit.h new file mode 100644 index 0000000000..c224b2b1f3 --- /dev/null +++ b/calendar/gui/todo-conduit.h @@ -0,0 +1,59 @@ +/* $Id$ */ + +#ifndef __TODO_CONDUIT_H__ +#define __TODO_CONDUIT_H__ + +#include +#include +#include +#include +#include + +typedef struct _ConduitCfg ConduitCfg; + +struct _ConduitCfg { + gboolean open_secret; + guint32 pilotId; +}; + +#define GET_CONFIG(c) ((ConduitCfg*)gtk_object_get_data(GTK_OBJECT(c),"conduit_cfg")) + +typedef struct _ConduitData ConduitData; + +struct _ConduitData { + struct ToDoAppInfo ai; +}; + +#define GET_DATA(c) ((ConduitData*)gtk_object_get_data(GTK_OBJECT(c),"conduit_data")) + +static void load_configuration(ConduitCfg **c,guint32 pilotId) { + gchar prefix[256]; + g_snprintf(prefix,255,"/gnome-pilot.d/todod-conduit/Pilot_%u/",pilotId); + + *c = g_new0(ConduitCfg,1); + gnome_config_push_prefix(prefix); + (*c)->open_secret = gnome_config_get_bool("open secret=FALSE"); + gnome_config_pop_prefix(); + + (*c)->pilotId = pilotId; +} + +static void save_configuration(ConduitCfg *c) { + gchar prefix[256]; + + g_snprintf(prefix,255,"/gnome-pilot.d/todo-conduit/Pilot_%u/",c->pilotId); + + gnome_config_push_prefix(prefix); + gnome_config_set_bool("open secret",c->open_secret); + gnome_config_pop_prefix(); + + gnome_config_sync(); + gnome_config_drop_all(); +} + +static void destroy_configuration(ConduitCfg **c) { + g_free(*c); + *c = NULL; +} + +#endif __TODO_CONDUIT_H__ -- cgit v1.2.3