diff options
| author | Huang Peng <shawn.p.huang@gmail.com> | 2008-06-05 15:29:22 +0800 |
|---|---|---|
| committer | Huang Peng <shawn.p.huang@gmail.com> | 2008-06-05 15:29:22 +0800 |
| commit | e5ca9c4a0a1e1ef45c6cd52984b87412c3f41764 (patch) | |
| tree | 314bc4f5c555e08408ef84945c67c7a5c13d8ffc /ibus/interface/ipanel.py | |
| parent | ff7292352b7d4b1609f077c3650d94a3c83051fc (diff) | |
| download | ibus-e5ca9c4a0a1e1ef45c6cd52984b87412c3f41764.tar.gz ibus-e5ca9c4a0a1e1ef45c6cd52984b87412c3f41764.tar.xz ibus-e5ca9c4a0a1e1ef45c6cd52984b87412c3f41764.zip | |
Add property.
Diffstat (limited to 'ibus/interface/ipanel.py')
| -rw-r--r-- | ibus/interface/ipanel.py | 25 |
1 files changed, 5 insertions, 20 deletions
diff --git a/ibus/interface/ipanel.py b/ibus/interface/ipanel.py index 93a8b47..d95b830 100644 --- a/ibus/interface/ipanel.py +++ b/ibus/interface/ipanel.py @@ -22,31 +22,16 @@ class IPanel (dbus.service.Object): def SetCursorLocation (self, x, y, w, h): pass @method (in_signature="svub") - def UpdatePreedit (self, text, attrs, cursor_pos, show): pass - - @method () - def ShowPreeditString (self): pass - - @method () - def HidePreeditString (self): pass + def UpdatePreedit (self, text, attrs, cursor_pos, visible): pass @method (in_signature="svb") - def UpdateAuxString (self, text, attrs, show): pass - - @method () - def ShowAuxString (self): pass - - @method () - def HideAuxString (self): pass + def UpdateAuxString (self, text, attrs, visible): pass @method (in_signature="vb") - def UpdateLookupTable (self, lookup_table, show): pass + def UpdateLookupTable (self, lookup_table, visible): pass - @method () - def ShowCandidateWindow (self): pass - - @method () - def HideCandidateWindow (self): pass + @method (in_signature="v") + def UpdateProperties (self, props): pass @method () def ShowLanguageBar (self): pass |
