2 * $Id: config.h,v 1.2 2007-10-22 21:12:54 nkeynes Exp $
4 * User configuration support
6 * Copyright (c) 2005 Nathan Keynes.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
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 General Public License for more details.
19 #ifndef lxdream_config_H
20 #define lxdream_config_H 1
22 #include <glib/gtypes.h>
24 #define CONFIG_TYPE_NONE 0
25 #define CONFIG_TYPE_FILE 1
26 #define CONFIG_TYPE_PATH 2
27 #define CONFIG_TYPE_KEY 3
29 #define DEFAULT_CONFIG_FILENAME "lxdreamrc"
31 typedef struct lxdream_config_entry {
34 const gchar *default_value;
36 } *lxdream_config_entry_t;
38 typedef struct lxdream_config_group {
40 struct lxdream_config_entry *params;
41 } *lxdream_config_group_t;
43 #define CONFIG_BIOS_PATH 0
44 #define CONFIG_FLASH_PATH 1
45 #define CONFIG_DEFAULT_PATH 2
46 #define CONFIG_SAVE_PATH 3
47 #define CONFIG_BOOTSTRAP 4
49 extern struct lxdream_config_group lxdream_config_root[];
51 /* Global config values */
52 const gchar *lxdream_get_config_value( int key );
54 void lxdream_set_config_value( int key, const gchar *value );
55 gboolean lxdream_set_group_value( lxdream_config_group_t group, const gchar *key, const gchar *value );
57 * Search the standard locations for the configuration file:
60 * $SYSCONF_DIR/lxdreamrc
61 * @return TRUE if the file was found, otherwise FALSE.
63 gboolean lxdream_find_config( );
66 * Set the configuration file filename to the supplied string.
67 * The string is copied internally (ie can be released by the
70 void lxdream_set_config_filename( const gchar *filename );
73 * Load the configuration from the previously determined filename.
75 gboolean lxdream_load_config( );
78 * Update the configuration
80 gboolean lxdream_save_config( );
83 #endif /* !lxdream_config_H */
.