| Server IP : 182.53.201.61 / Your IP : 216.73.217.175 Web Server : Apache/2.2.15 (Fedora) System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686 User : apache ( 48) PHP Version : 5.3.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/pygtk2-2.16.0/examples/simple/ |
Upload File : |
#!/usr/bin/env python
# translation of the simple.c test in the gtk+ distribution, using the
# new() function from gobject (this is an example of creating objects
# with the properties interface).
import gobject, gtk
def hello(*args):
print "Hello World"
window.destroy()
def destroy(*args):
window.hide()
gtk.main_quit()
window = gobject.new(gtk.Window,
type=gtk.WINDOW_TOPLEVEL,
title='Hello World',
allow_grow=False,
allow_shrink=False,
border_width=10)
window.connect("destroy", destroy)
button = gobject.new(gtk.Button, label="Hello World", parent=window)
button.connect("clicked", hello)
window.show_all()
gtk.main()