vote up 3 vote down star
3

I think the normally window manager determines the initial position of the QMainWindow position on the desk top. I want to set the initial position myself. How is this done with Qt on Windows?

flag
Can people who answer this question tell me this : How do I have the window remember its old position but return to the monitor if that position puts the window off screen? – Tom Leys May 15 at 4:56
doc.trolltech.com/4.3/geometry.html scroll down to "Restoring a window's geometry" – John T May 15 at 6:55

2 Answers

vote up 6 vote down

You can restore the window geometry with restoreGeometry(), and the state of docked elements with restoreState(), during the construction of your MainWindow...

    QSettings settings("yourcompany", "yourapp");

    restoreGeometry(settings.value("geometry").toByteArray());
    restoreState(settings.value("state").toByteArray(),YOUR_UI_VERSION);

Then, if you override closeEvent(), you can save the state as follows:

    QSettings settings("yourcompany", "yourapp");

    settings.setValue("geometry", saveGeometry());
    settings.setValue("state", saveState(YOUR_UI_VERSION));

YOUR_UI_VERSION is a constant you should increment when your UI changes significantly to prevent attempts to restore an invalid state.

link|flag
Exactly. . – Thomi May 27 at 8:02
+1: I had a hunch that something like that existed, but didn't know exactly how... – Torsten Marek Aug 18 at 16:07
vote up 3 vote down

I believe you're looking for setGeometry.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.