]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/dialogs/DomainSettingsDialog.h
7680a0323252b109ed27f78369837c11e3182af4
[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     QPalette defaultPalette;
71     QPushButton *deleteDomainButtonPointer;
72     QWidget *domStorageWidgetPointer;
73     QComboBox *domStorageComboBoxPointer;
74     QLabel *domStorageLabelPointer;
75     KLineEdit *domainNameLineEditPointer;
76     QWidget *domainSettingsWidgetPointer;
77     QListView *domainsListViewPointer;
78     QSqlTableModel *domainsTableModelPointer;
79     QItemSelectionModel *domainsSelectionModelPointer;
80     QPalette highlightedPalette;
81     QWidget *javaScriptWidgetPointer;
82     QComboBox *javaScriptComboBoxPointer;
83     QLabel *javaScriptLabelPointer;
84     QWidget *localStorageWidgetPointer;
85     QComboBox *localStorageComboBoxPointer;
86     QLabel *localStorageLabelPointer;
87     QPushButton *resetButtonPointer;
88     QWidget *userAgentWidgetPointer;
89     QComboBox *userAgentComboBoxPointer;
90     QLabel *userAgentLabelPointer;
91     QWidget *zoomFactorWidgetPointer;
92     QComboBox *zoomFactorComboBoxPointer;
93
94     // The private functions.
95     void addDomain(const QString &domainName) const;
96     void populateDomStorageLabel() const;
97     void populateJavaScriptLabel() const;
98     void populateLocalStorageLabel() const;
99     void populateUserAgentLabel(const QString &userAgentName) const;
100     void updateUi() const;
101 };
102 #endif