summaryrefslogtreecommitdiff
path: root/gio/gsettingsschema.h
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2010-04-15 22:30:11 -0400
committerRyan Lortie <desrt@desrt.ca>2010-04-15 22:30:11 -0400
commit2bc81577350ad479c6e261b998269bcbde489b5d (patch)
treeb249329f1a384635a843f4b079f8f608a0ac9cc1 /gio/gsettingsschema.h
parent45a1c41e8cfdeb4edeb7a671b95e599a49c6c281 (diff)
downloadglib-2bc81577350ad479c6e261b998269bcbde489b5d.tar.gz
merge GSettingsSchema
Diffstat (limited to 'gio/gsettingsschema.h')
-rw-r--r--gio/gsettingsschema.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/gio/gsettingsschema.h b/gio/gsettingsschema.h
new file mode 100644
index 000000000..a1a2d26f6
--- /dev/null
+++ b/gio/gsettingsschema.h
@@ -0,0 +1,67 @@
+/*
+ * Copyright © 2010 Codethink Limited
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the licence, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __G_SETTINGS_SCHEMA_H__
+#define __G_SETTINGS_SCHEMA_H__
+
+#include <glib-object.h>
+
+G_BEGIN_DECLS
+
+#define G_TYPE_SETTINGS_SCHEMA (g_settings_schema_get_type ())
+#define G_SETTINGS_SCHEMA(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
+ G_TYPE_SETTINGS_SCHEMA, GSettingsSchema))
+#define G_SETTINGS_SCHEMA_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
+ G_TYPE_SETTINGS_SCHEMA, GSettingsSchemaClass))
+#define G_IS_SETTINGS_SCHEMA(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
+ G_TYPE_SETTINGS_SCHEMA))
+#define G_IS_SETTINGS_SCHEMA_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
+ G_TYPE_SETTINGS_SCHEMA))
+#define G_SETTINGS_SCHEMA_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
+ G_TYPE_SETTINGS_SCHEMA, GSettingsSchemaClass))
+
+typedef struct _GSettingsSchemaPrivate GSettingsSchemaPrivate;
+typedef struct _GSettingsSchemaClass GSettingsSchemaClass;
+typedef struct _GSettingsSchema GSettingsSchema;
+
+struct _GSettingsSchemaClass
+{
+ GObjectClass parent_class;
+};
+
+struct _GSettingsSchema
+{
+ GObject parent_instance;
+
+ GSettingsSchemaPrivate *priv;
+};
+
+GType g_settings_schema_get_type (void);
+GSettingsSchema * g_settings_schema_new (const gchar *name);
+const gchar * g_settings_schema_get_path (GSettingsSchema *schema);
+const gchar * g_settings_schema_get_gettext_domain (GSettingsSchema *schema);
+GVariant * g_settings_schema_get_value (GSettingsSchema *schema,
+ const gchar *key,
+ GVariant **options);
+gboolean g_settings_schema_has_key (GSettingsSchema *schema,
+ const gchar *key);
+
+G_END_DECLS
+
+#endif /* __G_SETTINGS_SCHEMA_H__ */