Add wrapper for DBusServer.
[dbus-python-phuang.git] / examples / gconf-proxy-client.py
blobe485796183afcecfbbca4c976245e19b0c0ff36d
1 #!/usr/bin/env python
3 print "WARNING: this hasn't been updated to current API yet, and might not work"
5 # Copyright (C) 2004-2006 Red Hat Inc. <http://www.redhat.com/>
6 # Copyright (C) 2005-2007 Collabora Ltd. <http://www.collabora.co.uk/>
8 # Permission is hereby granted, free of charge, to any person
9 # obtaining a copy of this software and associated documentation
10 # files (the "Software"), to deal in the Software without
11 # restriction, including without limitation the rights to use, copy,
12 # modify, merge, publish, distribute, sublicense, and/or sell copies
13 # of the Software, and to permit persons to whom the Software is
14 # furnished to do so, subject to the following conditions:
16 # The above copyright notice and this permission notice shall be
17 # included in all copies or substantial portions of the Software.
19 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
23 # HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
24 # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26 # DEALINGS IN THE SOFTWARE.
28 import dbus
30 gconf_key = "/desktop/gnome/file_views/icon_theme"
32 bus = dbus.SessionBus()
33 gconf_service = bus.get_service("org.gnome.GConf")
34 gconf_key_object = gconf_service.get_object("/org/gnome/GConf" + gconf_key, "org.gnome.GConf")
36 value = gconf_key_object.getString()
38 print ("Value of GConf key %s is %s" % (gconf_key, value))