summaryrefslogtreecommitdiff
path: root/gconf/gconf-dbus-utils.h
blob: 3554a33b41add03c5dd6c193f1085bc898590a67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/* GConf
 * Copyright (C) 2003 Imendio HB
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library 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 GCONF_DBUS_UTILS_H
#define GCONF_DBUS_UTILS_H

#include <glib.h>
#include <dbus/dbus-glib.h>
#include <gconf/gconf.h>
#include <gconf/gconf-value.h>

#define GCONF_DBUS_SERVICE                  "org.gnome.GConf"

#define GCONF_DBUS_SERVER_INTERFACE         "org.gnome.GConf.Server"
#define GCONF_DBUS_DATABASE_INTERFACE       "org.gnome.GConf.Database"

#define GCONF_DBUS_SERVER_OBJECT            "/org/gnome/GConf/Server"

#define GCONF_DBUS_SERVER_GET_DEFAULT_DB    "GetDefaultDatabase"
#define GCONF_DBUS_SERVER_GET_DB            "GetDatabase"
#define GCONF_DBUS_SERVER_SHUTDOWN          "Shutdown"

#define GCONF_DBUS_DATABASE_LOOKUP          "Lookup"
#define GCONF_DBUS_DATABASE_LOOKUP_EXTENDED "LookupExtended" 
#define GCONF_DBUS_DATABASE_SET             "Set"
#define GCONF_DBUS_DATABASE_UNSET           "Unset"
#define GCONF_DBUS_DATABASE_RECURSIVE_UNSET "RecursiveUnset"
#define GCONF_DBUS_DATABASE_DIR_EXISTS      "DirExists"
#define GCONF_DBUS_DATABASE_GET_ALL_ENTRIES "AllEntries"
#define GCONF_DBUS_DATABASE_GET_ALL_DIRS    "AllDirs"
#define GCONF_DBUS_DATABASE_SET_SCHEMA      "SetSchema"
#define GCONF_DBUS_DATABASE_ADD_NOTIFY      "AddNotify"
#define GCONF_DBUS_DATABASE_REMOVE_NOTIFY   "RemoveNotify"
 
#define GCONF_DBUS_LISTENER_NOTIFY          "Notify"

#define GCONF_DBUS_CLIENT_SERVICE           "org.gnome.GConf.ClientService"
#define GCONF_DBUS_CLIENT_OBJECT            "/org/gnome/GConf/Client"
#define GCONF_DBUS_CLIENT_INTERFACE         "org.gnome.GConf.Client"

#define GCONF_DBUS_UNSET_INCLUDING_SCHEMA_NAMES 0x1
 
#define GCONF_DBUS_ERROR_FAILED               "org.gnome.GConf.Error.Failed"
#define GCONF_DBUS_ERROR_NO_PERMISSION        "org.gnome.GConf.Error.NoPermission"
#define GCONF_DBUS_ERROR_BAD_ADDRESS          "org.gnome.GConf.Error.BadAddress"
#define GCONF_DBUS_ERROR_BAD_KEY              "org.gnome.GConf.Error.BadKey"
#define GCONF_DBUS_ERROR_PARSE_ERROR          "org.gnome.GConf.Error.ParseError"
#define GCONF_DBUS_ERROR_CORRUPT              "org.gnome.GConf.Error.Corrupt"
#define GCONF_DBUS_ERROR_TYPE_MISMATCH        "org.gnome.GConf.Error.TypeMismatch"
#define GCONF_DBUS_ERROR_IS_DIR               "org.gnome.GConf.Error.IsDir"
#define GCONF_DBUS_ERROR_IS_KEY               "org.gnome.GConf.Error.IsKey"
#define GCONF_DBUS_ERROR_NO_WRITABLE_DATABASE "org.gnome.GConf.Error.NoWritableDatabase"
#define GCONF_DBUS_ERROR_IN_SHUTDOWN          "org.gnome.GConf.Error.InShutdown"
#define GCONF_DBUS_ERROR_OVERRIDDEN           "org.gnome.GConf.Error.Overriden"
#define GCONF_DBUS_ERROR_LOCK_FAILED          "org.gnome.GConf.Error.LockFailed"


void        gconf_dbus_message_append_gconf_value           (DBusMessage       *message,
							     const GConfValue  *value);
void        gconf_dbus_message_iter_append_gconf_value      (DBusMessageIter   *iter,
							     const GConfValue  *value);
GConfValue *gconf_dbus_create_gconf_value_from_message_iter (DBusMessageIter   *iter);
void        gconf_dbus_message_append_entry                 (DBusMessage       *message,
							     const gchar       *key,
							     const GConfValue  *value,
							     gboolean           is_default,
							     gboolean           is_writable,
							     const gchar       *schema_name);
gboolean    gconf_dbus_get_entry_values_from_message_iter   (DBusMessageIter   *iter,
							     gchar            **key,
							     GConfValue       **value,
							     gboolean          *is_default,
							     gboolean          *is_writable,
							     gchar            **schema_name);


#endif/* GCONF_DBUS_UTILS_H */