OESF Portables Forum
Everything Else => Zaurus - Everything Development => Distros, Development, and Model Specific Forums => Archived Forums => X/Qt => Topic started by: ivanhoe on May 29, 2007, 04:41:18 am
-
Hi,
I'm writing a small app in Tcl/Tk for pdaxrom. I want a main (top level) window to be always maximized in both portrait and landscape screen orientations. Is there any simple way to do it (without hacking Tk sources etc)?
Currently I've found that "wm geometry . [winfo screenwidth .]x[winfo screenheight]+0+0" maximizes main window at start, but I don't know how to catch screen rotation within Tk and get proper geometry to resize my window.
-
This is a bad hack, but
while {1} {
wm geometry . [winfo screenwidth .]x[winfo screenheight .]+0+0
after 1000
update idletasks
}
might have the desired effect. You can try also deleting and redrawing the window but that might be overkill.
-
This is a bad hack, but
...
might have the desired effect. You can try also deleting and redrawing the window but that might be overkill.
Unfortunately, it doesn't work. "screenwidth" and "screenheight" remain the same from start of my app.