mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-10-31 03:40:05 +00:00 
			
		
		
		
	Add county selection dialog
This commit is contained in:
		
							parent
							
								
									bcc7391a19
								
							
						
					
					
						commit
						769ce896e7
					
				
					 6 changed files with 325 additions and 0 deletions
				
			
		
							
								
								
									
										37
									
								
								scwx-qt/source/scwx/qt/ui/county_dialog.hpp
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										37
									
								
								scwx-qt/source/scwx/qt/ui/county_dialog.hpp
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,37 @@ | |||
| #pragma once | ||||
| 
 | ||||
| #include <QDialog> | ||||
| 
 | ||||
| namespace Ui | ||||
| { | ||||
| class CountyDialog; | ||||
| } | ||||
| 
 | ||||
| namespace scwx | ||||
| { | ||||
| namespace qt | ||||
| { | ||||
| namespace ui | ||||
| { | ||||
| class CountyDialog : public QDialog | ||||
| { | ||||
|    Q_OBJECT | ||||
|    Q_DISABLE_COPY_MOVE(CountyDialog) | ||||
| 
 | ||||
| public: | ||||
|    explicit CountyDialog(QWidget* parent = nullptr); | ||||
|    ~CountyDialog(); | ||||
| 
 | ||||
|    std::string county_fips_id(); | ||||
| 
 | ||||
|    void SelectState(const std::string& state); | ||||
| 
 | ||||
| private: | ||||
|    class Impl; | ||||
|    std::unique_ptr<Impl> p; | ||||
|    Ui::CountyDialog*     ui; | ||||
| }; | ||||
| 
 | ||||
| } // namespace ui
 | ||||
| } // namespace qt
 | ||||
| } // namespace scwx
 | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Dan Paulat
						Dan Paulat