mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 14:20:04 +00:00 
			
		
		
		
	Split out map page into map provider and map layout, provider initial content
This commit is contained in:
		
							parent
							
								
									411d2a3832
								
							
						
					
					
						commit
						7aa5190476
					
				
					 7 changed files with 254 additions and 14 deletions
				
			
		
							
								
								
									
										31
									
								
								scwx-qt/source/scwx/qt/ui/setup/map_layout_page.cpp
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										31
									
								
								scwx-qt/source/scwx/qt/ui/setup/map_layout_page.cpp
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,31 @@ | |||
| #include <scwx/qt/ui/setup/map_layout_page.hpp> | ||||
| 
 | ||||
| namespace scwx | ||||
| { | ||||
| namespace qt | ||||
| { | ||||
| namespace ui | ||||
| { | ||||
| namespace setup | ||||
| { | ||||
| 
 | ||||
| class MapLayoutPage::Impl | ||||
| { | ||||
| public: | ||||
|    explicit Impl() = default; | ||||
|    ~Impl()         = default; | ||||
| }; | ||||
| 
 | ||||
| MapLayoutPage::MapLayoutPage(QWidget* parent) : | ||||
|     QWizardPage(parent), p {std::make_shared<Impl>()} | ||||
| { | ||||
|    setTitle(tr("Map Layout")); | ||||
|    setSubTitle(tr("Configure the Supercell Wx map layout.")); | ||||
| } | ||||
| 
 | ||||
| MapLayoutPage::~MapLayoutPage() = default; | ||||
| 
 | ||||
| } // namespace setup
 | ||||
| } // namespace ui
 | ||||
| } // namespace qt
 | ||||
| } // namespace scwx
 | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Dan Paulat
						Dan Paulat