aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/conduits/todo/todo-conduit-config.h
blob: fb4d35c7e85a78e0f9257b40761d9dcdfee95a0d (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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */

#ifndef __TODO_CONDUIT_CONFIG_H__
#define __TODO_CONDUIT_CONFIG_H__

#include <gnome.h>
#include <libgpilotdCM/gnome-pilot-conduit-management.h>
#include <libgpilotdCM/gnome-pilot-conduit-config.h>

/* This is the configuration of the GnomeCal conduit. */
typedef struct _ToDoConduitCfg ToDoConduitCfg;
struct _ToDoConduitCfg {
    gboolean open_secret;
    guint32 pilotId;
    GnomePilotConduitSyncType  sync_type;   /* only used by capplet */
};

static void 
todoconduit_load_configuration (ToDoConduitCfg **c, guint32 pilotId) 
{
    gchar prefix[256];
    g_snprintf (prefix,255,"/gnome-pilot.d/todo-conduit/Pilot_%u/",pilotId);
    
    *c = g_new0 (ToDoConduitCfg,1);
    g_assert (*c != NULL);
    gnome_config_push_prefix (prefix);
    (*c)->open_secret = gnome_config_get_bool ("open_secret=FALSE");
    (*c)->sync_type = GnomePilotConduitSyncTypeCustom; /* set in capplets main */
    gnome_config_pop_prefix ();
    
    (*c)->pilotId = pilotId;
}

/* Saves the configuration data. */
static void
todoconduit_save_configuration (ToDoConduitCfg *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();
}

/* Creates a duplicate of the configuration data */
static ToDoConduitCfg*
todoconduit_dupe_configuration (ToDoConduitCfg *c) 
{
    ToDoConduitCfg *retval;
    g_return_val_if_fail (c!=NULL,NULL);
    retval = g_new0 (ToDoConduitCfg,1);
    retval->sync_type = c->sync_type;
    retval->open_secret = c->open_secret;
    retval->pilotId = c->pilotId;
    return retval;
}

static void 
todoconduit_destroy_configuration (ToDoConduitCfg **c) 
{
    g_return_if_fail (c!=NULL);
    g_return_if_fail (*c!=NULL);
    g_free (*c);
    *c = NULL;
}

#endif __TODO_CONDUIT_CONFIG_H__