diff options
| author | Huang Peng <shawn.p.huang@gmail.com> | 2008-07-30 09:13:34 +0800 |
|---|---|---|
| committer | Huang Peng <shawn.p.huang@gmail.com> | 2008-07-30 09:13:34 +0800 |
| commit | e7f1fdccdd9a7df42eb2edc15efb1c1b2508cc3e (patch) | |
| tree | 5c679ad1b950b0f46ae81c506fbaa925b3f466d9 /ibus/interface | |
| parent | cc152299d39d52727dcb2977c1438876e9ec6b45 (diff) | |
| download | ibus-e7f1fdccdd9a7df42eb2edc15efb1c1b2508cc3e.tar.gz ibus-e7f1fdccdd9a7df42eb2edc15efb1c1b2508cc3e.tar.xz ibus-e7f1fdccdd9a7df42eb2edc15efb1c1b2508cc3e.zip | |
Refine coding style.
Diffstat (limited to 'ibus/interface')
| -rw-r--r-- | ibus/interface/iconfig.py | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/ibus/interface/iconfig.py b/ibus/interface/iconfig.py index 04e3f5c..7758927 100644 --- a/ibus/interface/iconfig.py +++ b/ibus/interface/iconfig.py @@ -25,20 +25,20 @@ import dbus.service from ibus.common import \ IBUS_CONFIG_IFACE -class IConfig (dbus.service.Object): +class IConfig(dbus.service.Object): # define method decorator. method = lambda **args: \ - dbus.service.method (dbus_interface = IBUS_CONFIG_IFACE, \ + dbus.service.method(dbus_interface = IBUS_CONFIG_IFACE, \ **args) # define signal decorator. signal = lambda **args: \ - dbus.service.signal (dbus_interface = IBUS_CONFIG_IFACE, \ + dbus.service.signal(dbus_interface = IBUS_CONFIG_IFACE, \ **args) # define async method decorator. async_method = lambda **args: \ - dbus.service.method (dbus_interface = IBUS_CONFIG_IFACE, \ + dbus.service.method(dbus_interface = IBUS_CONFIG_IFACE, \ async_callbacks = ("reply_cb", "error_cb"), \ **args) @@ -49,39 +49,39 @@ class IConfig (dbus.service.Object): def SetValue(self, key, value): pass - @method (in_signature = "s", out_signature = "s") - def GetString (self, key): pass + @method(in_signature = "s", out_signature = "s") + def GetString(self, key): pass - @method (in_signature = "s", out_signature = "i") - def GetInt (self, key): pass + @method(in_signature = "s", out_signature = "i") + def GetInt(self, key): pass - @method (in_signature = "s", out_signature = "b") - def GetBool (self, key): pass + @method(in_signature = "s", out_signature = "b") + def GetBool(self, key): pass - @method (in_signature = "s", out_signature = "f") - def GetFloat (self, key): pass + @method(in_signature = "s", out_signature = "f") + def GetFloat(self, key): pass - @method (in_signature = "s", out_signature = "av") - def GetList (self, key): pass + @method(in_signature = "s", out_signature = "av") + def GetList(self, key): pass - @method (in_signature = "ss") - def SetString (self, key, value): pass + @method(in_signature = "ss") + def SetString(self, key, value): pass - @method (in_signature = "si") - def SetInt (self, key, value): pass + @method(in_signature = "si") + def SetInt(self, key, value): pass - @method (in_signature = "sb") - def SetBool (self, key, value): pass + @method(in_signature = "sb") + def SetBool(self, key, value): pass - @method (in_signature = "sf") - def SetFloat (self, key, value): pass + @method(in_signature = "sf") + def SetFloat(self, key, value): pass - @method (in_signature = "sav") - def SetList (self, key, value): pass + @method(in_signature = "sav") + def SetList(self, key, value): pass - @method () - def Destroy (self): pass + @method() + def Destroy(self): pass - @signal (signature = "sv") - def ValueChanged (self, key, value): pass + @signal(signature = "sv") + def ValueChanged(self, key, value): pass |
