mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 04:00:04 +00:00 
			
		
		
		
	Add placefile settings initial layout
This commit is contained in:
		
							parent
							
								
									ae1bca3602
								
							
						
					
					
						commit
						4c685e5abb
					
				
					 8 changed files with 207 additions and 4 deletions
				
			
		
							
								
								
									
										38
									
								
								scwx-qt/source/scwx/qt/ui/placefile_settings_widget.cpp
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										38
									
								
								scwx-qt/source/scwx/qt/ui/placefile_settings_widget.cpp
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,38 @@ | |||
| #include "placefile_settings_widget.hpp" | ||||
| #include "ui_placefile_settings_widget.h" | ||||
| 
 | ||||
| namespace scwx | ||||
| { | ||||
| namespace qt | ||||
| { | ||||
| namespace ui | ||||
| { | ||||
| 
 | ||||
| class PlacefileSettingsWidgetImpl | ||||
| { | ||||
| public: | ||||
|    explicit PlacefileSettingsWidgetImpl(PlacefileSettingsWidget* self) : | ||||
|        self_ {self} | ||||
|    { | ||||
|    } | ||||
|    ~PlacefileSettingsWidgetImpl() = default; | ||||
| 
 | ||||
|    PlacefileSettingsWidget* self_; | ||||
| }; | ||||
| 
 | ||||
| PlacefileSettingsWidget::PlacefileSettingsWidget(QWidget* parent) : | ||||
|     QFrame(parent), | ||||
|     p {std::make_unique<PlacefileSettingsWidgetImpl>(this)}, | ||||
|     ui(new Ui::PlacefileSettingsWidget) | ||||
| { | ||||
|    ui->setupUi(this); | ||||
| } | ||||
| 
 | ||||
| PlacefileSettingsWidget::~PlacefileSettingsWidget() | ||||
| { | ||||
|    delete ui; | ||||
| } | ||||
| 
 | ||||
| } // namespace ui
 | ||||
| } // namespace qt
 | ||||
| } // namespace scwx
 | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Dan Paulat
						Dan Paulat