mirror of
				https://github.com/TES3MP/openmw-tes3mp.git
				synced 2025-10-31 01:26:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
	
		
			712 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
	
		
			712 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef CSV_DOC_STARTUP_H
 | |
| #define CSV_DOC_STARTUP_H
 | |
| 
 | |
| #include <QWidget>
 | |
| 
 | |
| class QGridLayout;
 | |
| class QString;
 | |
| class QPushButton;
 | |
| class QWidget;
 | |
| class QIcon;
 | |
| 
 | |
| namespace CSVDoc
 | |
| {
 | |
|     class StartupDialogue : public QWidget
 | |
|     {
 | |
|         Q_OBJECT
 | |
| 
 | |
|         private:
 | |
| 
 | |
|             int mWidth;
 | |
|             int mColumn;
 | |
|             QGridLayout *mLayout;
 | |
| 
 | |
|             QPushButton *addButton (const QString& label, const QIcon& icon);
 | |
| 
 | |
|             QWidget *createButtons();
 | |
| 
 | |
|             QWidget *createTools();
 | |
| 
 | |
|         public:
 | |
| 
 | |
|             StartupDialogue();
 | |
| 
 | |
|         signals:
 | |
| 
 | |
|             void createGame();
 | |
| 
 | |
|             void createAddon();
 | |
| 
 | |
|             void loadDocument();
 | |
| 
 | |
|             void editConfig();
 | |
|     };
 | |
| }
 | |
| 
 | |
| #endif
 |