[SOLVED] save and restore window / dialog positions
-
wrote on 4 Aug 2011, 23:24 last edited by
I would like to save my mainwindow, dialogs and toolbar positions. I am having a difficult time implementing the save and restore geometry code found "here.":http://developer.qt.nokia.com/wiki/Saving_Window_Size_State the problem is that i don't know how to create the savegeometry and savestate functions.
can I have a working example that works with x11 please.
-
wrote on 5 Aug 2011, 00:30 last edited by
You don't have to create them. They're already provided by "QWidget":http://doc.qt.nokia.com/4.7/qwidget.html#restoreGeometry (unless you're using a version of Qt older than 4.2). If your class inherits QWidget, then you can just call the methods.
-
wrote on 5 Aug 2011, 00:49 last edited by
I am have a problem with line 24 / 25 of the code. I am getting the error mainwindow.cpp:24: error: 'saveGeometry' was not declared in this scope and mainwindow.cpp:25: error: 'saveState' was not declared in this scope.
do i have to create the saveGeometry and saveState functions? I need examples for this code please.
@#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QWidget>
#include <QSettings>MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
QSettings settings;restoreGeometry(settings.value("mainWindowGeometry").toByteArray()); // create docks, toolbars, etc... restoreState(settings.value("mainWindowState").toByteArray());
}
void closeEvent(QCloseEvent *event) {
QSettings settings;
settings.setValue("mainWindowGeometry", saveGeometry());
settings.setValue("mainWindowState", saveState());
}MainWindow::~MainWindow()
{
delete ui;
}@ -
wrote on 5 Aug 2011, 01:39 last edited by
Line 22 should be:
@
void MainWindow::closeEvent(QCloseEvent *event) {
@ -
wrote on 5 Aug 2011, 02:24 last edited by
thank you Mlong.
I changed line 22. run the program and i do not get any errors. Yet the code is not saving the main window position. what am i doing wrong?
-
wrote on 5 Aug 2011, 02:45 last edited by
i solved it. i needed the following code in the main.cpp file
@ QCoreApplication::setOrganizationDomain("OrgDomain");
QCoreApplication::setOrganizationName("OrgName");
QCoreApplication::setApplicationName("AppName");
QCoreApplication::setApplicationVersion("1.0.0");@ -
wrote on 5 Aug 2011, 02:47 last edited by
Glad it's working! (Be sure and use meaningful values in your Organization & App domains and names.)
-
wrote on 5 Aug 2011, 03:09 last edited by
ok, I will. thank you
-
wrote on 5 Aug 2011, 03:20 last edited by
"here":http://developer.qt.nokia.com/doc/qt-4.7/qapplication.html#id-7292984e-d337-4916-bbdf-6b5499d193c1 is the link from the save state quote below
[quote]This function deals with session management. It is invoked when the session manager wants the application to preserve its state for a future session.For example, a text editor would create a temporary file that includes the current contents of its edit buffers, the location of the cursor and other aspects of the current editing session.
You should never exit the application within this function. Instead, the session manager may or may not do this afterwards, depending on the context. Futhermore, most session managers will very likely request a saved state immediately after the application has been started. This permits the session manager to learn about the application's restart policy.[/quote]
one last question. above is a quote about saveStates. the savestate code that I have in my program (see below code), will my program exit within this saveState function?
@settings.setValue("mainWindowState", saveState());@
-
wrote on 5 Aug 2011, 03:31 last edited by
I'm not sure exactly what you're asking.
The saveState() won't ever cause your program to exit.
However, when the above program exits, the closeEvent() will be called as the window is closed and, thus, saveState() will be called.
-
wrote on 5 Aug 2011, 04:58 last edited by
the save state quote above is saying that You should never exit the application within this save state function. is my code exiting within the save state function?
-
wrote on 5 Aug 2011, 07:59 last edited by
no, your code is exiting after saveState(), when closeEvent() is ended.
This warning is only for people who re-implement the saveState() fucntion, it's not your case, you are using the original one.
-
wrote on 6 Aug 2011, 01:23 last edited by
thank you redkite. i marked this topic as solved.
5/13