Search:
Login
Preferences
Help/Guide
About Trac
Register
Wiki
Timeline
Roadmap
Browse Source
View Tickets
New Ticket
Search
Context Navigation
Back to Ticket #1776
Ticket #1776
: foo.py
File foo.py,
234 bytes
(added by nk,
3 years
ago)
oh boy I'm centered
Line
1
import
gtk
2
3
win
=
gtk
.
Window
()
4
win
.
add
(
gtk
.
Button
(
'click'
))
5
win
.
set_default_size
(
200
,
400
)
6
dlg
=
gtk
.
Dialog
()
7
dlg
.
set_transient_for
(
win
)
8
dlg
.
vbox
.
pack_start
(
gtk
.
Button
(
'oh boy Im centered'
))
9
10
dlg
.
show_all
()
11
win
.
show_all
()
12
13
gtk
.
main
()
Download in other formats:
Original Format