summaryrefslogtreecommitdiff
path: root/plugins/PluginLoader/catchcopy-v0002/OptionsWidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/PluginLoader/catchcopy-v0002/OptionsWidget.h')
-rwxr-xr-xplugins/PluginLoader/catchcopy-v0002/OptionsWidget.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/plugins/PluginLoader/catchcopy-v0002/OptionsWidget.h b/plugins/PluginLoader/catchcopy-v0002/OptionsWidget.h
new file mode 100755
index 0000000..cbbf61c
--- /dev/null
+++ b/plugins/PluginLoader/catchcopy-v0002/OptionsWidget.h
@@ -0,0 +1,30 @@
+#ifndef OptionsWidget_H
+#define OptionsWidget_H
+
+#include <QWidget>
+
+namespace Ui {
+class OptionsWidget;
+}
+
+class OptionsWidget : public QWidget
+{
+ Q_OBJECT
+
+public:
+ explicit OptionsWidget(QWidget *parent = 0);
+ ~OptionsWidget();
+ void setAllDllIsImportant(bool allDllIsImportant);
+ void setDebug(bool Debug);
+ void retranslate();
+private:
+ Ui::OptionsWidget *ui;
+signals:
+ void sendAllDllIsImportant(bool allDllIsImportant);
+ void sendDebug(bool Debug);
+private slots:
+ void on_allDllIsImportant_toggled(bool checked);
+ void on_Debug_toggled(bool checked);
+};
+
+#endif // OptionsWidget_H