mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-10-31 12:56:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
	
		
			829 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
	
		
			829 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef CSV_PREFS_DIALOGUE_H
 | |
| #define CSV_PREFS_DIALOGUE_H
 | |
| 
 | |
| #include <QMainWindow>
 | |
| 
 | |
| class QSplitter;
 | |
| class QListWidget;
 | |
| class QStackedWidget;
 | |
| class QListWidgetItem;
 | |
| 
 | |
| namespace CSVPrefs
 | |
| {
 | |
|     class PageBase;
 | |
| 
 | |
|     class Dialogue : public QMainWindow
 | |
|     {
 | |
|             Q_OBJECT
 | |
| 
 | |
|             QStackedWidget *mContent;
 | |
| 
 | |
|         private:
 | |
| 
 | |
|             void buildCategorySelector (QSplitter *main);
 | |
| 
 | |
|             void buildContentArea (QSplitter *main);
 | |
| 
 | |
|             PageBase *makePage (const std::string& key);
 | |
| 
 | |
|         public:
 | |
| 
 | |
|             Dialogue();
 | |
| 
 | |
|             virtual ~Dialogue();
 | |
| 
 | |
|         protected:
 | |
| 
 | |
|             void closeEvent (QCloseEvent *event);
 | |
| 
 | |
|         public slots:
 | |
| 
 | |
|             void show();
 | |
| 
 | |
|         private slots:
 | |
| 
 | |
|             void selectionChanged (QListWidgetItem *current, QListWidgetItem *previous);
 | |
|     };
 | |
| }
 | |
| 
 | |
| #endif
 |