aboutsummaryrefslogtreecommitdiff
path: root/src/forms/blockerdialog.h
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2017-01-24 16:09:07 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2017-01-24 16:09:07 +0100
commit0250559bcf5764fb8cf3a8ccc4e330b8ed855f96 (patch)
tree2283350e44f78e83a8c0257b66c184939cd95a98 /src/forms/blockerdialog.h
parentMade Profile menu a regular menu (diff)
downloadsmolbote-0250559bcf5764fb8cf3a8ccc4e330b8ed855f96.tar.xz
Blocker UI
Diffstat (limited to 'src/forms/blockerdialog.h')
-rw-r--r--src/forms/blockerdialog.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/forms/blockerdialog.h b/src/forms/blockerdialog.h
new file mode 100644
index 0000000..0c8e8ba
--- /dev/null
+++ b/src/forms/blockerdialog.h
@@ -0,0 +1,24 @@
+#ifndef URLINTERCEPTORDIALOG_H
+#define URLINTERCEPTORDIALOG_H
+
+#include <QDialog>
+#include "webengine/blockersubscription.h"
+
+namespace Ui {
+class UrlInterceptorDialog;
+}
+
+class BlockerDialog : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit BlockerDialog(QWidget *parent = 0);
+ ~BlockerDialog();
+
+private:
+ Ui::UrlInterceptorDialog *ui;
+ BlockerSubscription *subscription;
+};
+
+#endif // URLINTERCEPTORDIALOG_H