mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 14:40:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
	
		
			541 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
	
		
			541 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <QWizard>
 | |
| 
 | |
| namespace scwx
 | |
| {
 | |
| namespace qt
 | |
| {
 | |
| namespace ui
 | |
| {
 | |
| namespace setup
 | |
| {
 | |
| 
 | |
| class SetupWizard : public QWizard
 | |
| {
 | |
| public:
 | |
|    enum class Page : int
 | |
|    {
 | |
|       Welcome = 0,
 | |
|       MapProvider,
 | |
|       MapLayout,
 | |
|       AudioCodec,
 | |
|       Finish
 | |
|    };
 | |
| 
 | |
|    explicit SetupWizard(QWidget* parent = nullptr);
 | |
|    ~SetupWizard();
 | |
| 
 | |
|    int nextId() const override;
 | |
| 
 | |
|    static bool IsSetupRequired();
 | |
| 
 | |
| private:
 | |
|    class Impl;
 | |
|    std::shared_ptr<Impl> p;
 | |
| };
 | |
| 
 | |
| } // namespace setup
 | |
| } // namespace ui
 | |
| } // namespace qt
 | |
| } // namespace scwx
 | 
