On Fri, 2004-08-27 at 21:48, Douglas Soares de Andrade wrote:
>
> How to make a form init the execution maximized using libglade. I already did 
> the window and it is work perfectly. 
> 
> The only thing left to do is make it start maximized.

Just call maximize() on the window before you enter the main loop.

I've no idea how you're getting hold of the window object from glade,
but the pure gtk code would look something like this:

win = gtk.Window()
win.maximize()
win.show()
gtk.main()

You may not need the show() as glade shows things by default.

--
Graham

_______________________________________________
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/

Reply via email to