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

« back to all changes in this revision

Viewing changes to ibus/bus.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:
108
108
    def release_name(self, name):
109
109
        return self.__dbus.ReleaseName(name)
110
110
 
 
111
    def list_queued_owners(self, name):
 
112
        return self.__dbus.ListQueuedOwners(name)
 
113
 
111
114
    def get_name_owner(self, name):
112
115
        return self.__dbus.GetNameOwner(name)
113
116
 
136
139
        engines = self.__ibus.ListActiveEngines()
137
140
        return map(serializable.deserialize_object, engines)
138
141
 
 
142
    def set_global_engine(self, name):
 
143
        return self.__ibus.SetGlobalEngine(name)
 
144
 
139
145
    def create_input_context(self, client_name):
140
146
        return self.__ibus.CreateInputContext(client_name)
141
147