summaryrefslogtreecommitdiff
path: root/common/gdm-settings-utils.h
diff options
context:
space:
mode:
authorWilliam Jon McCann <mccann@src.gnome.org>2007-05-31 17:39:19 +0000
committerWilliam Jon McCann <mccann@src.gnome.org>2007-05-31 17:39:19 +0000
commite1a7b7cac426f81ea2ab60263907bd92032f1068 (patch)
treee56e4d76b7a386da0a4a4b7f3117bbf51f2b7873 /common/gdm-settings-utils.h
parent7baf40f65e52c651aab4d2c7214672f24195a649 (diff)
downloadgdm-e1a7b7cac426f81ea2ab60263907bd92032f1068.tar.gz
Land the first shot at the new settings framework
svn path=/branches/mccann-gobject/; revision=4946
Diffstat (limited to 'common/gdm-settings-utils.h')
-rw-r--r--common/gdm-settings-utils.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/common/gdm-settings-utils.h b/common/gdm-settings-utils.h
new file mode 100644
index 00000000..b6fdec9b
--- /dev/null
+++ b/common/gdm-settings-utils.h
@@ -0,0 +1,53 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
+ *
+ * Copyright (C) 2007 William Jon McCann <mccann@jhu.edu>
+ *
+ * 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 Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ */
+
+
+#ifndef __GDM_SETTINGS_UTILS_H
+#define __GDM_SETTINGS_UTILS_H
+
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+typedef struct _GdmSettingsEntry GdmSettingsEntry;
+
+GdmSettingsEntry * gdm_settings_entry_new (void);
+GdmSettingsEntry * gdm_settings_entry_copy (GdmSettingsEntry *entry);
+void gdm_settings_entry_free (GdmSettingsEntry *entry);
+
+const char * gdm_settings_entry_get_key (GdmSettingsEntry *entry);
+const char * gdm_settings_entry_get_signature (GdmSettingsEntry *entry);
+const char * gdm_settings_entry_get_default_value (GdmSettingsEntry *entry);
+
+gboolean gdm_settings_parse_schemas (const char *file,
+ const char *root,
+ GSList **list);
+
+gboolean gdm_settings_parse_value_as_boolean (const char *value,
+ gboolean *bool);
+gboolean gdm_settings_parse_value_as_integer (const char *value,
+ int *intval);
+gboolean gdm_settings_parse_value_as_double (const char *value,
+ gdouble *doubleval);
+
+
+G_END_DECLS
+
+#endif /* __GDM_SETTINGS_UTILS_H */