| OLD | NEW |
| 1 # vim:set et sts=4 sw=4: | 1 # vim:set et sts=4 sw=4: |
| 2 # | 2 # |
| 3 # ibus - The Input Bus | 3 # ibus - The Input Bus |
| 4 # | 4 # |
| 5 # Copyright (c) 2007-2010 Peng Huang <shawn.p.huang@gmail.com> | 5 # Copyright (c) 2007-2010 Peng Huang <shawn.p.huang@gmail.com> |
| 6 # Copyright (c) 2007-2010 Red Hat, Inc. | 6 # Copyright (c) 2007-2010 Red Hat, Inc. |
| 7 # | 7 # |
| 8 # This library is free software; you can redistribute it and/or | 8 # This library is free software; you can redistribute it and/or |
| 9 # modify it under the terms of the GNU Lesser General Public | 9 # modify it under the terms of the GNU Lesser General Public |
| 10 # License as published by the Free Software Foundation; either | 10 # License as published by the Free Software Foundation; either |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 | 65 |
| 66 @method(out_signature="av") | 66 @method(out_signature="av") |
| 67 def ListActiveEngines(self, dbusconn): pass | 67 def ListActiveEngines(self, dbusconn): pass |
| 68 | 68 |
| 69 @method(in_signature="b") | 69 @method(in_signature="b") |
| 70 def Exit(self, restart, dbusconn): pass | 70 def Exit(self, restart, dbusconn): pass |
| 71 | 71 |
| 72 @method(in_signature="v", out_signature="v") | 72 @method(in_signature="v", out_signature="v") |
| 73 def Ping(self, data, dbusconn): pass | 73 def Ping(self, data, dbusconn): pass |
| 74 | 74 |
| 75 @method(out_signature="b") |
| 76 def GetUseSysLayout(self, dbusconn): pass |
| 77 |
| 75 @signal(signature="") | 78 @signal(signature="") |
| 76 def RegistryChanged(self): pass | 79 def RegistryChanged(self): pass |
| 77 | |
| OLD | NEW |