diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2004-01-15 01:29:24 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-01-15 01:29:24 +0800 |
commit | 6f24ef0425086b04b2961ac9df004ad5400bca0a (patch) | |
tree | 19e80123c96db083f4cc71326cc6496038e3d2b2 /e-util/e-bconf-map.h | |
parent | 945d1677e2f74b0210c4482116f8bb3557cddc32 (diff) | |
download | gsoc2013-evolution-6f24ef0425086b04b2961ac9df004ad5400bca0a.tar gsoc2013-evolution-6f24ef0425086b04b2961ac9df004ad5400bca0a.tar.gz gsoc2013-evolution-6f24ef0425086b04b2961ac9df004ad5400bca0a.tar.bz2 gsoc2013-evolution-6f24ef0425086b04b2961ac9df004ad5400bca0a.tar.lz gsoc2013-evolution-6f24ef0425086b04b2961ac9df004ad5400bca0a.tar.xz gsoc2013-evolution-6f24ef0425086b04b2961ac9df004ad5400bca0a.tar.zst gsoc2013-evolution-6f24ef0425086b04b2961ac9df004ad5400bca0a.zip |
New source files for mapping bonobo-conf keys to gconf keys. Moved out of
2004-01-14 Jeffrey Stedfast <fejj@ximian.com>
* e-bconf-map.[c,h]: New source files for mapping bonobo-conf keys
to gconf keys. Moved out of shell/e-config-upgrade.c
svn path=/trunk/; revision=24222
Diffstat (limited to 'e-util/e-bconf-map.h')
-rw-r--r-- | e-util/e-bconf-map.h | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/e-util/e-bconf-map.h b/e-util/e-bconf-map.h new file mode 100644 index 0000000000..8db5771401 --- /dev/null +++ b/e-util/e-bconf-map.h @@ -0,0 +1,102 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Authors: Jeffrey Stedfast <fejj@ximian.com> + * + * Copyright 2004 Ximian, Inc. (www.ximian.com) + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * 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 Street #330, Boston, MA 02111-1307, USA. + * + */ + + +#ifndef __E_BCONF_MAP_H__ +#define __E_BCONF_MAP_H__ + +#include <gconf/gconf-client.h> + +#include <libxml/tree.h> + +#ifdef __cplusplus +extern "C" { +#pragma } +#endif /* __cplusplus */ + +enum { + E_BCONF_MAP_END = 0, /* end of table */ + E_BCONF_MAP_BOOL, /* bool -> prop of name 'to' value true or false */ + E_BCONF_MAP_LONG, /* long -> prop of name 'to' value a long */ + E_BCONF_MAP_STRING, /* string -> prop of name 'to' */ + E_BCONF_MAP_ENUM, /* long/bool -> prop of name 'to', with the value indexed into the child map table's from field */ + E_BCONF_MAP_CHILD, /* a new child of name 'to' */ + E_BCONF_MAP_MASK = 0x3f, + E_BCONF_MAP_CONTENT = 0x80, /* if set, create a new node of name 'to' instead of a property */ +}; + +typedef struct _e_bconf_map { + char *from; + char *to; + int type; + struct _e_bconf_map *child; +} e_bconf_map_t; + + +char *e_bconf_hex_decode (const char *val); +char *e_bconf_url_decode (const char *val); + +xmlNodePtr e_bconf_get_path (xmlDocPtr doc, const char *path); +xmlNodePtr e_bconf_get_entry (xmlNodePtr root, const char *name); + +char *e_bconf_get_value (xmlNodePtr root, const char *name); +char *e_bconf_get_bool (xmlNodePtr root, const char *name); +char *e_bconf_get_long (xmlNodePtr root, const char *name); +char *e_bconf_get_string (xmlNodePtr root, const char *name); + +int e_bconf_import_xml_blob (GConfClient *gconf, xmlDocPtr config_xmldb, e_bconf_map_t *map, + const char *bconf_path, const char *gconf_path, + const char *name, const char *idparam); + + +enum { + E_GCONF_MAP_BOOL, + E_GCONF_MAP_BOOLNOT, + E_GCONF_MAP_INT, + E_GCONF_MAP_STRING, + E_GCONF_MAP_SIMPLESTRING, /* a non-encoded string */ + E_GCONF_MAP_COLOUR, + E_GCONF_MAP_FLOAT, /* bloody floats, who uses floats ... idiots */ + E_GCONF_MAP_STRLIST, /* strings separated to !<-->! -> gconf list */ + E_GCONF_MAP_ANYLIST, /* corba sequence corba string -> gconf list */ + E_GCONF_MAP_MASK = 0x7f, + E_GCONF_MAP_LIST = 0x80 /* from includes a %i field for the index of the key, to be converted to a list of type MAP_* */ +}; + +typedef struct { + char *from; + char *to; + int type; +} e_gconf_map_t; + +typedef struct { + char *root; + e_gconf_map_t *map; +} e_gconf_map_list_t; + +int e_bconf_import (GConfClient *gconf, xmlDocPtr config_xmldb, e_gconf_map_list_t *remap_list); + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* __E_BCONF_MAP_H__ */ |