diff options
Diffstat (limited to 'VMProtect/settings_dialog.h')
-rw-r--r-- | VMProtect/settings_dialog.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/VMProtect/settings_dialog.h b/VMProtect/settings_dialog.h new file mode 100644 index 0000000..faf7eab --- /dev/null +++ b/VMProtect/settings_dialog.h @@ -0,0 +1,21 @@ +#ifndef SETTINGS_DIALOG_H +#define SETTINGS_DIALOG_H + +class SettingsDialog : public QDialog +{ + Q_OBJECT +public: + SettingsDialog(QWidget *parent = NULL); +private slots: + void okButtonClicked(); + void helpClicked(); +private: + EnumEdit *languageEdit_; + BoolEdit *autoSaveEdit_; +#ifndef VMP_GNU + BoolEdit *shellExtEdit_; + bool shellExt_; +#endif +}; + +#endif
\ No newline at end of file |