|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /usr/share/doc/pygtk2-2.10.1/examples/atk/ |
Upload File : |
#!/usr/bin/env python
import gtk
import atk
win = gtk.Window()
win.connect('destroy', lambda win: gtk.main_quit())
button = gtk.Button(stock=gtk.STOCK_QUIT)
button.connect('pressed', lambda button: gtk.main_quit())
atk_button = button.get_accessible()
atk_button.set_description('Be careful, clicking this button will exit')
label = gtk.Label('This label describes a button')
atk_label = label.get_accessible()
atk_label.set_description('This is a useless label')
relation_set = atk_label.ref_relation_set()
relation = atk.Relation((atk_button,), atk.RELATION_LABEL_FOR)
relation_set.add(relation)
box = gtk.HBox()
box.pack_start(label)
box.pack_start(button)
win.add(box)
win.show_all()
gtk.main()