summaryrefslogtreecommitdiffstats
path: root/Tools/QtBiomeVisualiser/GeneratorSetup.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-09-22 18:26:35 +0200
committermadmaxoft <github@xoft.cz>2014-09-22 21:52:37 +0200
commit10c5d5056691f0a03798c7e9439138126da30b8a (patch)
treec07994699a9d5bc1891fb47cb70620d47e9114c4 /Tools/QtBiomeVisualiser/GeneratorSetup.h
parentMerge pull request #1398 from mc-server/1.8-Protocol (diff)
downloadcuberite-10c5d5056691f0a03798c7e9439138126da30b8a.tar
cuberite-10c5d5056691f0a03798c7e9439138126da30b8a.tar.gz
cuberite-10c5d5056691f0a03798c7e9439138126da30b8a.tar.bz2
cuberite-10c5d5056691f0a03798c7e9439138126da30b8a.tar.lz
cuberite-10c5d5056691f0a03798c7e9439138126da30b8a.tar.xz
cuberite-10c5d5056691f0a03798c7e9439138126da30b8a.tar.zst
cuberite-10c5d5056691f0a03798c7e9439138126da30b8a.zip
Diffstat (limited to 'Tools/QtBiomeVisualiser/GeneratorSetup.h')
-rw-r--r--Tools/QtBiomeVisualiser/GeneratorSetup.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/Tools/QtBiomeVisualiser/GeneratorSetup.h b/Tools/QtBiomeVisualiser/GeneratorSetup.h
new file mode 100644
index 000000000..0594e1998
--- /dev/null
+++ b/Tools/QtBiomeVisualiser/GeneratorSetup.h
@@ -0,0 +1,57 @@
+#pragma once
+
+#include <memory>
+#include <QDialog>
+#include <QComboBox>
+#include <QVBoxLayout>
+#include <QFormLayout>
+
+
+
+
+
+class cIniFile;
+typedef std::shared_ptr<cIniFile> cIniFilePtr;
+
+
+
+
+
+class GeneratorSetup :
+ public QWidget
+{
+ typedef QWidget super;
+
+ Q_OBJECT
+
+public:
+ /** Creates the widget and loads the contents of the INI file, if not empty. */
+ explicit GeneratorSetup(const std::string & a_IniFileName, QWidget * parent = nullptr);
+
+ /** Returns the cIniFile instance that is being edited by this widget. */
+ cIniFilePtr getIniFile() { return m_IniFile; }
+
+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;
+
+ cIniFilePtr m_IniFile;
+
+ int m_Seed;
+
+
+ /** Updates the form layout with the values from m_IniFile. */
+ void updateFromIni();
+};
+
+
+
+