aboutsummaryrefslogtreecommitdiff
path: root/VMProtect/watermark_dialog.h
diff options
context:
space:
mode:
authorjmpoep <OriginalEntryPoint@qq.com>2023-12-07 16:51:07 +0800
committerjmpoep <OriginalEntryPoint@qq.com>2023-12-07 16:51:07 +0800
commit28008a746a31abb7909dd86cb0cd413ac8943b0b (patch)
treea30b74b8cad548048c3c1551d652828ab76fa9bd /VMProtect/watermark_dialog.h
downloadvmprotect-3.5.1-master.tar
vmprotect-3.5.1-master.tar.gz
vmprotect-3.5.1-master.tar.bz2
vmprotect-3.5.1-master.zip
first commitHEADmaster
Diffstat (limited to 'VMProtect/watermark_dialog.h')
-rw-r--r--VMProtect/watermark_dialog.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/VMProtect/watermark_dialog.h b/VMProtect/watermark_dialog.h
new file mode 100644
index 0000000..cb05587
--- /dev/null
+++ b/VMProtect/watermark_dialog.h
@@ -0,0 +1,24 @@
+#ifndef WATERMARK_DIALOG_H
+#define WATERMARK_DIALOG_H
+
+class WatermarkDialog : public QDialog
+{
+ Q_OBJECT
+public:
+ WatermarkDialog(WatermarkManager *manager, QWidget *parent = NULL);
+ Watermark *watermark() const { return watermark_; }
+private slots:
+ void okButtonClicked();
+ void changed();
+ void generateClicked();
+ void helpClicked();
+private:
+ WatermarkManager *manager_;
+ Watermark *watermark_;
+
+ QPushButton *okButton_;
+ QLineEdit *nameEdit_;
+ BinEditor *valueEdit_;
+};
+
+#endif \ No newline at end of file