Re: [wxEuphoria] max size window?
- Posted by DanM Feb 09, 2009
- 820 views
I probably just gave it a bad size, into which is didn't fit. Not sure if it wants a particular aspect ratio or anything.
It looks like there's a wxTopLevelWindow::Maximize that we haven't wrapped. You could alternatively use show_fullscreen(), which is wrapped. For just figuring stuff out, just put the size as something like 1000 x 800 (or whatever's appropriate for your screen size.
Matt
I guess I'll figure the screen size & use that to open the frame, as show_fullscreen() only semi works: empty flag fails, I forget what -1 & 0 do, but all the rest of the flags are "no_this, no_that, no_something else", so I chose no_toolbar, which displayed the full window with the Media control in it, but did not load the file to show (no return from the "ok" var, indicating fail to load file).
Dan
Ok, using reported screen size works, but the Media control is on left of window. How to put it on right side? Do I have to use the grid control?
Dan