~ubuntu-branches/ubuntu/quantal/ibus/quantal

« back to all changes in this revision

Viewing changes to ibus/interface/iengine.py

  • Committer: Bazaar Package Importer
  • Author(s): Barry Warsaw
  • Date: 2011-08-11 17:00:57 UTC
  • mfrom: (6.2.14 sid)
  • Revision ID: james.westby@ubuntu.com-20110811170057-6dmbfs4s3cchzl7x
Tags: 1.3.99.20110419-1ubuntu1
* Merge with Debian unstable.  Remaining Ubuntu changes:
  - Indicator support:
    + Add 05_appindicator.patch: Use an indicator rather than a notification
      icon.
    + debian/control: Recommend python-appindicator.
  - debian/control: Install im-switch instead of im-config by default.
  - debian/README.source: Removed, it was outdated and no longer correct
  - debian/patches/01_ubuntu_desktop: Fix "Desktop entry needs the
    X-Ubuntu-Gettext-Domain key"  (LP: #457632)
  - debian/patches/02_title_update.patch: Rename "IBus Preferences" to
    "Keyboard Input Methods"
  - debian/patches/06_locale_parser.patch: Cherry-picked from upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
    @method(in_signature="iiii")
51
51
    def SetCursorLocation(self, x, y, w, h): pass
52
52
 
 
53
    @method(in_signature="vu")
 
54
    def SetSurroundingText(self, text, cursor_index): pass
 
55
 
53
56
    @method(in_signature="u")
54
57
    def SetCapabilities(self, cap): pass
55
58
 
85
88
    @method()
86
89
    def Disable(self): pass
87
90
 
88
 
    @method(in_signature="si")
 
91
    @method(in_signature="su")
89
92
    def PropertyActivate(self, prop_name, prop_state): pass
90
93
 
91
94
    @method(in_signature="s")
149
152
    @signal(signature="v")
150
153
    def UpdateProperty(self, prop): pass
151
154
 
 
155
    @signal(signature="iu")
 
156
    def DeleteSurroundingText(self, offset_from_cursor, nchars): pass
 
157
 
 
158
    @signal()
 
159
    def RequireSurroundingText(self): pass