summaryrefslogtreecommitdiffstats
path: root/Tools/QtBiomeVisualiser/GeneratorSetup.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Tools/QtBiomeVisualiser/GeneratorSetup.h (renamed from Tools/QtBiomeVisualiser/GeneratorSetupDlg.h)16
1 files changed, 10 insertions, 6 deletions
diff --git a/Tools/QtBiomeVisualiser/GeneratorSetupDlg.h b/Tools/QtBiomeVisualiser/GeneratorSetup.h
index d7070e331..0594e1998 100644
--- a/Tools/QtBiomeVisualiser/GeneratorSetupDlg.h
+++ b/Tools/QtBiomeVisualiser/GeneratorSetup.h
@@ -11,21 +11,25 @@
class cIniFile;
+typedef std::shared_ptr<cIniFile> cIniFilePtr;
-class GeneratorSetupDlg :
- public QDialog
+class GeneratorSetup :
+ public QWidget
{
- typedef QDialog super;
+ typedef QWidget 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);
+ /** 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:
@@ -39,7 +43,7 @@ protected:
QVBoxLayout * m_MainLayout;
QFormLayout * m_FormLayout;
- std::unique_ptr<cIniFile> m_IniFile;
+ cIniFilePtr m_IniFile;
int m_Seed;