1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-28 18:18:52 +00:00
OpenMW/apps/wizard/importpage.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
526 B
C++
Raw Normal View History

2013-12-08 20:35:57 +00:00
#include "importpage.hpp"
2013-12-08 21:58:29 +00:00
#include "mainwizard.hpp"
Wizard::ImportPage::ImportPage(QWidget* parent)
: QWizardPage(parent)
2013-12-08 20:35:57 +00:00
{
mWizard = qobject_cast<MainWizard*>(parent);
2013-12-08 20:35:57 +00:00
setupUi(this);
registerField(QLatin1String("installation.import-settings"), importCheckBox);
registerField(QLatin1String("installation.import-addons"), addonsCheckBox);
registerField(QLatin1String("installation.import-fonts"), fontsCheckBox);
2013-12-08 20:35:57 +00:00
}
2013-12-08 21:58:29 +00:00
int Wizard::ImportPage::nextId() const
{
return MainWizard::Page_Conclusion;
}