aboutsummaryrefslogtreecommitdiff
path: root/staging/adblock/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'staging/adblock/options.h')
-rw-r--r--staging/adblock/options.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/staging/adblock/options.h b/staging/adblock/options.h
new file mode 100644
index 0000000..327e0ec
--- /dev/null
+++ b/staging/adblock/options.h
@@ -0,0 +1,37 @@
+/*
+ * This file is part of smolbote. It's copyrighted by the contributors recorded
+ * in the version control history of the file, available from its original
+ * location: https://library.iserlohn-fortress.net/aqua/smolbote.git
+ *
+ * SPDX-License-Identifier: GPL-3.0
+ */
+
+#ifndef SMOLBOTE_ADBLOCK_OPTIONS_H
+#define SMOLBOTE_ADBLOCK_OPTIONS_H
+
+#include <QHash>
+#include <QString>
+#include <QWebEngineUrlRequestInfo>
+
+namespace AdblockPlus
+{
+
+enum OptionState {
+ Allow,
+ Block,
+ Unset
+};
+
+struct Options {
+ bool exception = false;
+ bool matchcase = false;
+ bool firstparty = true;
+ bool thirdparty = true;
+ QHash<QWebEngineUrlRequestInfo::ResourceType, bool> resource_options;
+
+ bool set(const QString &option);
+};
+
+}
+
+#endif // SMOLBOTE_ADBLOCK_OPTIONS_H