mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 22:56:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			58 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef INSTALLATIONPAGE_HPP
 | |
| #define INSTALLATIONPAGE_HPP
 | |
| 
 | |
| #include <memory>
 | |
| 
 | |
| #include <QWizardPage>
 | |
| 
 | |
| #include "ui_installationpage.h"
 | |
| #include "unshield/unshieldworker.hpp"
 | |
| 
 | |
| namespace Config
 | |
| {
 | |
|     class GameSettings;
 | |
| }
 | |
| 
 | |
| class QThread;
 | |
| class QObject;
 | |
| class QWidget;
 | |
| 
 | |
| namespace Wizard
 | |
| {
 | |
|     class MainWizard;
 | |
| 
 | |
|     class InstallationPage : public QWizardPage, private Ui::InstallationPage
 | |
|     {
 | |
|         Q_OBJECT
 | |
|     public:
 | |
|         InstallationPage(QWidget* parent, Config::GameSettings& gameSettings);
 | |
|         ~InstallationPage() override;
 | |
| 
 | |
|         int nextId() const override;
 | |
|         bool isComplete() const override;
 | |
| 
 | |
|     private:
 | |
|         MainWizard* mWizard;
 | |
|         bool mFinished;
 | |
| 
 | |
|         std::unique_ptr<QThread> mThread;
 | |
|         std::unique_ptr<UnshieldWorker> mUnshield;
 | |
| 
 | |
|         void startInstallation();
 | |
| 
 | |
|         Config::GameSettings& mGameSettings;
 | |
| 
 | |
|     private slots:
 | |
|         void showFileDialog(Wizard::Component component);
 | |
|         void showOldVersionDialog();
 | |
| 
 | |
|         void installationFinished();
 | |
|         void installationError(const QString& text, const QString& details);
 | |
| 
 | |
|     protected:
 | |
|         void initializePage() override;
 | |
|     };
 | |
| 
 | |
| }
 | |
| 
 | |
| #endif // INSTALLATIONPAGE_HPP
 |