diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-07-20 10:45:59 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-08-02 03:06:59 -0400 |
| commit | e4dcdb01ac2e3f99fea76b21e1acfd21d0de89c7 (patch) | |
| tree | a5112b6d33a7e82d63c97a20f8a02be90bb15473 /src/settingsdialogworkarounds.h | |
| parent | 55eafd62dd3c96f363cde4537061e7f03ae8fd0a (diff) | |
split workarounds tab
Diffstat (limited to 'src/settingsdialogworkarounds.h')
| -rw-r--r-- | src/settingsdialogworkarounds.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/settingsdialogworkarounds.h b/src/settingsdialogworkarounds.h new file mode 100644 index 00000000..1687624b --- /dev/null +++ b/src/settingsdialogworkarounds.h @@ -0,0 +1,25 @@ +#ifndef SETTINGSDIALOGWORKAROUNDS_H +#define SETTINGSDIALOGWORKAROUNDS_H + +#include "settings.h" +#include "settingsdialog.h" + +class WorkaroundsSettingsTab : public SettingsTab +{ +public: + WorkaroundsSettingsTab(Settings *m_parent, SettingsDialog &m_dialog); + + void update(); + +private: + QString m_ExecutableBlacklist; + + void on_bsaDateBtn_clicked(); + void on_execBlacklistBtn_clicked(); + void on_resetGeometryBtn_clicked(); + + QString getExecutableBlacklist() { return m_ExecutableBlacklist; } + void setExecutableBlacklist(QString blacklist) { m_ExecutableBlacklist = blacklist; } +}; + +#endif // SETTINGSDIALOGWORKAROUNDS_H |
