Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: ibus/interface/iibus.py

Issue 1735020: Support changing the global input method engine without focus. (Closed) Base URL: ssh://git@chromiumos-git/ibus.git
Patch Set: Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ibus/bus.py ('k') | ui/gtk/panel.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
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") 75 @method(out_signature="b")
76 def GetUseSysLayout(self, dbusconn): pass 76 def GetUseSysLayout(self, dbusconn): pass
77 77
78 @method(out_signature="b")
79 def GetUseGlobalEngine(self, dbusconn): pass
80
81 @method(out_signature="v")
82 def GetGlobalEngine(self, dbusconn): pass
83
84 @method(in_signature="s")
85 def SetGlobalEngine(self, engine_name, dbusconn): pass
86
87 @method(out_signature="b")
88 def IsGlobalEngineEnabled(self, dbusconn): pass
89
78 @signal(signature="") 90 @signal(signature="")
79 def RegistryChanged(self): pass 91 def RegistryChanged(self): pass
92
93 @signal(signature="")
94 def GlobalEngineChanged(self): pass
OLDNEW
« no previous file with comments | « ibus/bus.py ('k') | ui/gtk/panel.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698