I created a dialog with a scrolled window inside:
self.dialog = gtk.Dialog()
self.dialog.set_title("Test")
self.dialog.set_size_request(600, 300)
self.window = gtk.ScrolledWindow()
self.window.set_border_width(10)
self.window.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_ALWAYS)
self.dialog.vbox.
uld be the
solution to display a scrolled window which I could minimize/maximize etc...
Laurent Luce
- Original Message
From: Simon van der Linden
To: pygtk@daa.com.au
Sent: Wednesday, June 3, 2009 1:07:21 AM
Subject: Re: [pygtk] dialog minimize/maximize icons/buttons missing
On Tue, 200
I just tried set_resizable(True) on the dialog object and it doesn't do
anything. I still don't see the minimize/maximize options.
Laurent Luce
- Original Message
From: Simon van der Linden
To: pygtk@daa.com.au
Sent: Wednesday, June 3, 2009 1:07:21 AM
Subject: Re: [pyg
vbox.pack_start(scrolled_window, True, True, 0)
# add the vertical box to the window
win.add(vbox)
# display window
win.show_all()
Laurent Luce
- Original Message
From: Laurent Luce
To: pygtk@daa.com.au
Sent: Wednesday, June 3, 2009 9:59:26 AM
Subject: Re: [pygtk] dialog minimize/maximize icons
Does remove() removes iter and all its childs ?
Laurent Luce
___
pygtk mailing list pygtk@daa.com.au
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://faq.pygtk.org/