blob: af75a0f1d0cee0b3c5d596aa8b7199235724a0e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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
|