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

Unified 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, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ibus/bus.py ('k') | ui/gtk/panel.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ibus/interface/iibus.py
diff --git a/ibus/interface/iibus.py b/ibus/interface/iibus.py
index e99de6cb636855146c0f7acb7b8c00b71b00d4d5..24103038e7d448f73e2a8294596ab4cc89d23314 100644
--- a/ibus/interface/iibus.py
+++ b/ibus/interface/iibus.py
@@ -75,5 +75,20 @@ class IIBus(dbus.service.Object):
@method(out_signature="b")
def GetUseSysLayout(self, dbusconn): pass
+ @method(out_signature="b")
+ def GetUseGlobalEngine(self, dbusconn): pass
+
+ @method(out_signature="v")
+ def GetGlobalEngine(self, dbusconn): pass
+
+ @method(in_signature="s")
+ def SetGlobalEngine(self, engine_name, dbusconn): pass
+
+ @method(out_signature="b")
+ def IsGlobalEngineEnabled(self, dbusconn): pass
+
@signal(signature="")
def RegistryChanged(self): pass
+
+ @signal(signature="")
+ def GlobalEngineChanged(self): pass
« 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