def __init__(self):
Gtk.HBox.__init__(self)
title = Gtk.Label('Size:')
self.width = Gtk.Entry()
self.height = Gtk.Entry()
text = Gtk.Label('x')
okay = Gtk.Button('Okay')
okay.connect('clicked', self.clicked)
self.pack_start(title, True, True, 10)
self.pack_start(self.width, True, True, 0)
self.pack_start(text, True, True, 0)
self.pack_start(self.height, True, True, 0)
self.pack_start(okay, True, True, 0)
self.set_size(*self.default)
评论列表
文章目录