You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw/apps/wizard/intropage.cpp

22 lines
446 B
C++

#include "intropage.hpp"
#include "mainwizard.hpp"
#include <QObject>
#include <QPixmap>
#include <QWidget>
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;
}