1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-21 09:23:51 +00:00
openmw-tes3mp/apps/opencs/view/doc/newgame.hpp

36 lines
513 B
C++
Raw Normal View History

#ifndef CSV_DOC_NEWGAME_H
#define CSV_DOC_NEWGAME_H
#include <QDialog>
class QPushButton;
namespace CSVDoc
{
class FileWidget;
class NewGameDialogue : public QDialog
{
Q_OBJECT
QPushButton *mCreate;
FileWidget *mFileWidget;
public:
NewGameDialogue();
signals:
void createRequest (const QString& file);
private slots:
void stateChanged (bool valid);
void create();
};
}
#endif