filename | src/config.h |
changeset | 450:207461e79f21 |
next | 458:cbb2dd12daeb |
author | nkeynes |
date | Wed Oct 17 11:26:45 2007 +0000 (14 years ago) |
permissions | -rw-r--r-- |
last change | Split config management out to config.[ch] Manage config filename Check home dir + sysconfdir for conf file Initial work on a path settings dialog |
view | annotate | diff | log | raw |
1 /**
2 * $Id: config.h,v 1.1 2007-10-17 11:26:45 nkeynes Exp $
3 *
4 * User configuration support
5 *
6 * Copyright (c) 2005 Nathan Keynes.
7 *
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.
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 General Public License for more details.
17 */
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 {
32 const gchar *key;
33 const int type;
34 const gchar *default_value;
35 gchar *value;
36 } *lxdream_config_entry_t;
38 typedef struct lxdream_config_group {
39 const gchar *key;
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 );
56 /**
57 * Search the standard locations for the configuration file:
58 * $HOME/.lxdreamrc
59 * $CWD/lxdreamrc
60 * $SYSCONF_DIR/lxdreamrc
61 * @return TRUE if the file was found, otherwise FALSE.
62 */
63 gboolean lxdream_find_config( );
65 /**
66 * Set the configuration file filename to the supplied string.
67 * The string is copied internally (ie can be released by the
68 * caller).
69 */
70 void lxdream_set_config_filename( const gchar *filename );
72 /**
73 * Load the configuration from the previously determined filename.
74 */
75 gboolean lxdream_load_config( );
77 /**
78 * Update the configuration
79 */
80 gboolean lxdream_save_config( );
83 #endif /* !lxdream_config_H */
.