mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 12:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			388 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 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;
 | 
						|
}
 |