mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 04:26:42 +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
 |