]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/dialogs/DomainSettingsDialog.h
Add local storage domain settings.
[PrivacyBrowserPC.git] / src / dialogs / DomainSettingsDialog.h
1 /*
2  * Copyright © 2022 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 DOMAINSETTINGSDIALOG_H
21 #define DOMAINSETTINGSDIALOG_H
22
23 // KDE Frameworks headers.
24 #include <KLineEdit>
25
26 // Qt toolkit headers.
27 #include <QDialog>
28 #include <QDoubleSpinBox>
29 #include <QLabel>
30 #include <QtSql>
31
32 class DomainSettingsDialog : public QDialog
33 {
34     // Include the Q_OBJECT macro.
35     Q_OBJECT
36
37 public:
38     // The primary constructor.
39     explicit DomainSettingsDialog(const int &startType = SHOW_ALL_DOMAINS, const QString &domainName = QStringLiteral(""));
40
41     // The public static int constants.
42     static const int SHOW_ALL_DOMAINS;
43     static const int ADD_DOMAIN;
44     static const int EDIT_DOMAIN;
45
46 signals:
47     void domainSettingsUpdated() const;
48
49 private Q_SLOTS:
50     // The private slots.
51     void apply() const;
52     void cancel();
53     void customZoomFactorChanged(const double &newValue) const;
54     void domStorageChanged(const int &newIndex) const;
55     void domainNameChanged(const QString &updatedDomainName) const;
56     void domainSelected(const QModelIndex &modelIndex) const;
57     void javaScriptChanged(const int &newIndex) const;
58     void localStorageChanged(const int &newIndex) const;
59     void ok();
60     void reset() const;
61     void showAddMessageBox();
62     void showDeleteMessageBox() const;
63     void userAgentChanged(const QString &updatedUserAgent) const;
64     void zoomFactorComboBoxChanged(const int &newIndex) const;
65
66 private:
67     // The private variables.
68     QPushButton *applyButtonPointer;
69     QDoubleSpinBox *customZoomFactorSpinBoxPointer;
70     QPushButton *deleteDomainButtonPointer;
71     QComboBox *domStorageComboBoxPointer;
72     QLabel *domStorageLabelPointer;
73     KLineEdit *domainNameLineEditPointer;
74     QWidget *domainSettingsWidgetPointer;
75     QListView *domainsListViewPointer;
76     QSqlTableModel *domainsTableModelPointer;
77     QItemSelectionModel *domainsSelectionModelPointer;
78     QComboBox *javaScriptComboBoxPointer;
79     QLabel *javaScriptLabelPointer;
80     QComboBox *localStorageComboBoxPointer;
81     QLabel *localStorageLabelPointer;
82     QPushButton *resetButtonPointer;
83     QComboBox *userAgentComboBoxPointer;
84     QLabel *userAgentLabelPointer;
85     QComboBox *zoomFactorComboBoxPointer;
86
87     // The private functions.
88     void addDomain(const QString &domainName) const;
89     void populateDomStorageLabel() const;
90     void populateJavaScriptLabel() const;
91     void populateLocalStorageLabel() const;
92     void populateUserAgentLabel(const QString &userAgentName) const;
93     void updateUi() const;
94 };
95 #endif