2013-07-14 23:56:53 +05:30
|
|
|
#ifndef INSTANCESETTINGS_H
|
|
|
|
#define INSTANCESETTINGS_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2013-07-15 01:31:30 +05:30
|
|
|
#include "settingsobject.h"
|
2013-07-14 23:56:53 +05:30
|
|
|
|
|
|
|
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_customCommandsGroupBox_toggled(bool arg1);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::InstanceSettings *ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INSTANCESETTINGS_H
|