fix new map popup window to allow layout selection

This commit is contained in:
garak
2023-02-08 17:08:42 -05:00
parent f8c7ada585
commit a4fdb0de64
5 changed files with 234 additions and 86 deletions

View File

@@ -23,6 +23,7 @@ public:
bool importedMap;
QString layoutId;
void init();
void initUi();
void init(MapSortOrder type, QVariant data);
void init(Layout *);
static void setDefaultSettings(Project *project);
@@ -60,6 +61,8 @@ private:
static struct Settings settings;
private slots:
void on_checkBox_UseExistingLayout_stateChanged(int state);
void on_comboBox_Layout_currentTextChanged(const QString &text);
void on_pushButton_NewMap_Accept_clicked();
void on_lineEdit_NewMap_Name_textChanged(const QString &);
};