]> Pileus Git - grits/blob - src/gis-prefs.h
ac9cde620904dd3e95bf7e41a81a0d7bc4155b46
[grits] / src / gis-prefs.h
1 /*
2  * Copyright (C) 2009 Andy Spencer <spenceal@rose-hulman.edu>
3  * 
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #ifndef __GIS_PREFS_H__
19 #define __GIS_PREFS_H__
20
21 #include <glib-object.h>
22
23 /* Type macros */
24 #define GIS_TYPE_PREFS            (gis_prefs_get_type())
25 #define GIS_PREFS(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),   GIS_TYPE_PREFS, GisPrefs))
26 #define GIS_IS_PREFS(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),   GIS_TYPE_PREFS))
27 #define GIS_PREFS_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST   ((klass), GIS_TYPE_PREFS, GisPrefsClass))
28 #define GIS_IS_PREFS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE   ((klass), GIS_TYPE_PREFS))
29 #define GIS_PREFS_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),   GIS_TYPE_PREFS, GisPrefsClass))
30
31 typedef struct _GisPrefs      GisPrefs;
32 typedef struct _GisPrefsClass GisPrefsClass;
33
34 struct _GisPrefs {
35         GObject parent_instance;
36
37         /* instance members */
38         gchar    *key_path;
39         GKeyFile *key_file;
40 };
41
42 struct _GisPrefsClass {
43         GObjectClass parent_class;
44         
45         /* class members */
46 };
47
48 GType gis_prefs_get_type(void);
49
50 /* Methods */
51 GisPrefs *gis_prefs_new(const gchar *config, const gchar *defaults);
52
53 gchar    *gis_prefs_get_string   (GisPrefs *prefs, const gchar *key);
54 gboolean  gis_prefs_get_boolean  (GisPrefs *prefs, const gchar *key);
55 gint      gis_prefs_get_integer  (GisPrefs *prefs, const gchar *key);
56 gdouble   gis_prefs_get_double   (GisPrefs *prefs, const gchar *key);
57
58 gchar    *gis_prefs_get_string_v (GisPrefs *prefs, const gchar *group, const gchar *key);
59 gboolean  gis_prefs_get_boolean_v(GisPrefs *prefs, const gchar *group, const gchar *key);
60 gint      gis_prefs_get_integer_v(GisPrefs *prefs, const gchar *group, const gchar *key);
61 gdouble   gis_prefs_get_double_v (GisPrefs *prefs, const gchar *group, const gchar *key);
62
63 void      gis_prefs_set_string   (GisPrefs *prefs, const gchar *key, const gchar *string);
64 void      gis_prefs_set_boolean  (GisPrefs *prefs, const gchar *key, gboolean value);
65 void      gis_prefs_set_integer  (GisPrefs *prefs, const gchar *key, gint value);
66 void      gis_prefs_set_double   (GisPrefs *prefs, const gchar *key, gdouble value);
67
68 void      gis_prefs_set_string_v (GisPrefs *prefs, const gchar *group, const gchar *key, const gchar *string);
69 void      gis_prefs_set_boolean_v(GisPrefs *prefs, const gchar *group, const gchar *key, gboolean value);
70 void      gis_prefs_set_integer_v(GisPrefs *prefs, const gchar *group, const gchar *key, gint value);
71 void      gis_prefs_set_double_v (GisPrefs *prefs, const gchar *group, const gchar *key, gdouble value);
72 #endif