1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-03 17:37:18 +00:00
OpenMW/apps/wizard/intropage.cpp

17 lines
362 B
C++
Raw Normal View History

2013-12-08 20:35:57 +00:00
#include "intropage.hpp"
2013-12-08 21:58:29 +00:00
#include "mainwizard.hpp"
Wizard::IntroPage::IntroPage(MainWizard *wizard) :
QWizardPage(wizard),
mWizard(wizard)
2013-12-08 20:35:57 +00:00
{
setupUi(this);
setPixmap(QWizard::WatermarkPixmap, QPixmap(QLatin1String(":/images/intropage-background.png")));
2013-12-08 20:35:57 +00:00
}
2013-12-08 21:58:29 +00:00
int Wizard::IntroPage::nextId() const
{
return MainWizard::Page_MethodSelection;
}