mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 03:19:44 +00:00
18 lines
388 B
C++
18 lines
388 B
C++
#include "intropage.hpp"
|
|
|
|
#include "mainwizard.hpp"
|
|
|
|
Wizard::IntroPage::IntroPage(QWidget *parent) :
|
|
QWizardPage(parent)
|
|
{
|
|
mWizard = qobject_cast<MainWizard*>(parent);
|
|
|
|
setupUi(this);
|
|
setPixmap(QWizard::WatermarkPixmap, QPixmap(QLatin1String(":/images/intropage-background.png")));
|
|
}
|
|
|
|
int Wizard::IntroPage::nextId() const
|
|
{
|
|
return MainWizard::Page_MethodSelection;
|
|
}
|