]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/structs/EntryStruct.h
6b0fed550804c969c0e9f741cc035770d4352d57
[PrivacyBrowserPC.git] / src / structs / EntryStruct.h
1 /*
2  * Copyright 2024 Soren Stoutner <soren@stoutner.com>.
3  *
4  * This file is part of Privacy Browser PC <https://www.stoutner.com/privacy-browser-pc/>.
5  *
6  * Privacy Browser PC is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Privacy Browser PC is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Privacy Browser PC.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #ifndef ENTRY_STRUCT_H
21 #define ENTRY_STRUCT_H
22
23 // Qt toolkit headers.
24 #include <QStringList>
25
26 enum FilterOptionDisposition
27 {
28     Null = 0,
29     Apply = 1,
30     Override = 2,
31 };
32
33 struct EntryStruct
34 {
35     // The strings.
36     QString originalEntry;
37     QString originalFilterOptions;
38
39     // The string lists.
40     QStringList appliedEntryList;
41     QStringList appliedFilterOptionsList;
42     QStringList domainList;
43
44     // The booleans.
45     bool finalMatch = false;
46     bool hasRequestOptions = false;
47     bool initialMatch = false;
48     bool singleAppliedEntry = false;
49
50     // The ints.
51     int sizeOfAppliedEntryList;
52
53     // The filter options.
54     FilterOptionDisposition domain = FilterOptionDisposition::Null;
55     FilterOptionDisposition font = FilterOptionDisposition::Null;
56     FilterOptionDisposition image = FilterOptionDisposition::Null;
57     FilterOptionDisposition mainFrame = FilterOptionDisposition::Null;
58     FilterOptionDisposition media = FilterOptionDisposition::Null;
59     FilterOptionDisposition object = FilterOptionDisposition::Null;
60     FilterOptionDisposition other = FilterOptionDisposition::Null;
61     FilterOptionDisposition ping = FilterOptionDisposition::Null;
62     FilterOptionDisposition script = FilterOptionDisposition::Null;
63     FilterOptionDisposition styleSheet = FilterOptionDisposition::Null;
64     FilterOptionDisposition subFrame = FilterOptionDisposition::Null;
65     FilterOptionDisposition thirdParty = FilterOptionDisposition::Null;
66     FilterOptionDisposition xmlHttpRequest = FilterOptionDisposition::Null;
67 };
68 #endif