diff options
author | madmaxoft <github@xoft.cz> | 2014-09-21 22:58:09 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-09-21 22:58:27 +0200 |
commit | dda66ea6efaa1ae3305dae97a9ab9bdb4254cf46 (patch) | |
tree | 85056e0b97bf7eca289cb07f7fb0dad27ac13004 /Tools/QtBiomeVisualiser/GeneratorSetupDlg.h | |
parent | Fix crash in cLineBlockTracer (diff) | |
download | cuberite-dda66ea6efaa1ae3305dae97a9ab9bdb4254cf46.tar cuberite-dda66ea6efaa1ae3305dae97a9ab9bdb4254cf46.tar.gz cuberite-dda66ea6efaa1ae3305dae97a9ab9bdb4254cf46.tar.bz2 cuberite-dda66ea6efaa1ae3305dae97a9ab9bdb4254cf46.tar.lz cuberite-dda66ea6efaa1ae3305dae97a9ab9bdb4254cf46.tar.xz cuberite-dda66ea6efaa1ae3305dae97a9ab9bdb4254cf46.tar.zst cuberite-dda66ea6efaa1ae3305dae97a9ab9bdb4254cf46.zip |
Diffstat (limited to 'Tools/QtBiomeVisualiser/GeneratorSetupDlg.h')
-rw-r--r-- | Tools/QtBiomeVisualiser/GeneratorSetupDlg.h | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/Tools/QtBiomeVisualiser/GeneratorSetupDlg.h b/Tools/QtBiomeVisualiser/GeneratorSetupDlg.h new file mode 100644 index 000000000..d7070e331 --- /dev/null +++ b/Tools/QtBiomeVisualiser/GeneratorSetupDlg.h @@ -0,0 +1,53 @@ +#pragma once + +#include <memory> +#include <QDialog> +#include <QComboBox> +#include <QVBoxLayout> +#include <QFormLayout> + + + + + +class cIniFile; + + + + + +class GeneratorSetupDlg : + public QDialog +{ + typedef QDialog super; + + Q_OBJECT + +public: + /** Creates the dialog and loads the contents of the INI file, if not empty. */ + explicit GeneratorSetupDlg(const std::string & a_IniFileName, QWidget * parent = nullptr); + +signals: + +public slots: + /** Called when the user selects a different generator from the top combobox. + Re-creates m_IniFile and updates the form layout. */ + void generatorChanged(const QString & a_NewName); + +protected: + QComboBox * m_cbGenerator; + QVBoxLayout * m_MainLayout; + QFormLayout * m_FormLayout; + + std::unique_ptr<cIniFile> m_IniFile; + + int m_Seed; + + + /** Updates the form layout with the values from m_IniFile. */ + void updateFromIni(); +}; + + + + |