diff options
author | Stiepen <stiepen22@gmx.de> | 2013-07-14 20:26:53 +0200 |
---|---|---|
committer | Stiepen <stiepen22@gmx.de> | 2013-07-14 20:26:53 +0200 |
commit | ce253ded0e0d2ae90a971c2e074d561f5e7baeb2 (patch) | |
tree | d44cbbd0773b0ab813bc65756d316bffae53942b /gui/instancesettings.h | |
parent | 33b9b25da7d3d29f949c9418295de257d437c9f8 (diff) | |
download | MultiMC-ce253ded0e0d2ae90a971c2e074d561f5e7baeb2.tar MultiMC-ce253ded0e0d2ae90a971c2e074d561f5e7baeb2.tar.gz MultiMC-ce253ded0e0d2ae90a971c2e074d561f5e7baeb2.tar.lz MultiMC-ce253ded0e0d2ae90a971c2e074d561f5e7baeb2.tar.xz MultiMC-ce253ded0e0d2ae90a971c2e074d561f5e7baeb2.zip |
Added Per-Instance settings
Diffstat (limited to 'gui/instancesettings.h')
-rw-r--r-- | gui/instancesettings.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gui/instancesettings.h b/gui/instancesettings.h new file mode 100644 index 00000000..af75a0f1 --- /dev/null +++ b/gui/instancesettings.h @@ -0,0 +1,32 @@ +#ifndef INSTANCESETTINGS_H +#define INSTANCESETTINGS_H + +#include <QDialog> + +namespace Ui { +class InstanceSettings; +} + +class InstanceSettings : public QDialog +{ + Q_OBJECT + +public: + explicit InstanceSettings(QWidget *parent = 0); + ~InstanceSettings(); + + void updateCheckboxStuff(); + + void applySettings(SettingsObject *s); + void loadSettings(SettingsObject* s); + +private slots: + void on_overrideGlobalMcCheck_clicked(bool checked); + + void on_customCommandsGroupBox_toggled(bool arg1); + +private: + Ui::InstanceSettings *ui; +}; + +#endif // INSTANCESETTINGS_H |