mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 05:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
	
		
			866 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
	
		
			866 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef CSV_DOC_NEWGAME_H
 | 
						|
#define CSV_DOC_NEWGAME_H
 | 
						|
 | 
						|
#include <QDialog>
 | 
						|
#include <QMetaType>
 | 
						|
 | 
						|
#include <filesystem>
 | 
						|
 | 
						|
#ifndef CS_QT_STD_FILESYSTEM_PATH_DECLARED
 | 
						|
#define CS_QT_STD_FILESYSTEM_PATH_DECLARED
 | 
						|
Q_DECLARE_METATYPE(std::filesystem::path)
 | 
						|
#endif
 | 
						|
 | 
						|
class QPushButton;
 | 
						|
 | 
						|
namespace CSVDoc
 | 
						|
{
 | 
						|
    class FileWidget;
 | 
						|
    class AdjusterWidget;
 | 
						|
 | 
						|
    class NewGameDialogue : public QDialog
 | 
						|
    {
 | 
						|
        Q_OBJECT
 | 
						|
 | 
						|
        QPushButton* mCreate;
 | 
						|
        FileWidget* mFileWidget;
 | 
						|
        AdjusterWidget* mAdjusterWidget;
 | 
						|
 | 
						|
    public:
 | 
						|
        NewGameDialogue();
 | 
						|
 | 
						|
        void setLocalData(const std::filesystem::path& localData);
 | 
						|
 | 
						|
    signals:
 | 
						|
 | 
						|
        void createRequest(const std::filesystem::path& file);
 | 
						|
 | 
						|
        void cancelCreateGame();
 | 
						|
 | 
						|
    private slots:
 | 
						|
 | 
						|
        void stateChanged(bool valid);
 | 
						|
 | 
						|
        void create();
 | 
						|
 | 
						|
        void reject() override;
 | 
						|
    };
 | 
						|
}
 | 
						|
 | 
						|
#endif
 |