~ubuntu-branches/ubuntu/karmic/ibus/karmic-updates

« back to all changes in this revision

Viewing changes to ui/gtk/handle.py

  • Committer: Bazaar Package Importer
  • Author(s): LI Daobing
  • Date: 2009-07-23 20:22:09 UTC
  • mfrom: (1.1.4 upstream) (6.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20090723202209-bmgqa80g1umg8l2p
Tags: 1.2.0.20090723-1
new upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
import gobject
25
25
 
26
26
class Handle(gtk.EventBox):
 
27
    __gtype_name__ = "IBusHandle"
27
28
    __gsignals__ = {
28
29
        "move-begin" : (
29
30
            gobject.SIGNAL_RUN_LAST,
117
118
                    gtk.ORIENTATION_VERTICAL)
118
119
        return True
119
120
 
120
 
gobject.type_register(Handle, "IBusHandle")
121
 
 
122