Ticket #1776: foo.py

File foo.py, 234 bytes (added by nk, 3 years ago)

oh boy I'm centered

Line 
1import gtk
2
3win = gtk.Window()
4win.add(gtk.Button('click'))
5win.set_default_size(200, 400)
6dlg = gtk.Dialog()
7dlg.set_transient_for(win)
8dlg.vbox.pack_start(gtk.Button('oh boy Im centered'))
9
10dlg.show_all()
11win.show_all()
12
13gtk.main()