]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/dialogs/DomainSettingsDialog.h
41438ce0aafa8082b9290036f1895ea94e4aac42
[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(QWidget *parent = nullptr);
40
41 signals:
42     void domainSettingsUpdated() const;
43
44 private Q_SLOTS:
45     // The private slots.
46     void apply() const;
47     void cancel();
48     void customZoomFactorChanged(const double &newValue) const;
49     void domainNameChanged(const QString &updatedDomainName) const;
50     void domainSelected(const QModelIndex &modelIndex) const;
51     void javaScriptChanged(const int &newIndex) const;
52     void localStorageChanged(const int &newIndex) const;
53     void ok();
54     void reset() const;
55     void showAddMessageBox();
56     void showDeleteMessageBox() const;
57     void userAgentChanged(const QString &updatedUserAgent) const;
58     void zoomFactorComboBoxChanged(const int &newIndex) const;
59
60 private:
61     // The private variables.
62     QPushButton *applyButtonPointer;
63     QDoubleSpinBox *customZoomFactorSpinBoxPointer;
64     QPushButton *deleteDomainButtonPointer;
65     QListView *domainsListViewPointer;
66     KLineEdit *domainNameLineEditPointer;
67     QWidget *domainSettingsWidgetPointer;
68     QSqlTableModel *domainsTableModelPointer;
69     QComboBox *javaScriptComboBoxPointer;
70     QLabel *javaScriptLabelPointer;
71     QComboBox *localStorageComboBoxPointer;
72     QLabel *localStorageLabelPointer;
73     QPushButton *resetButtonPointer;
74     QComboBox *userAgentComboBoxPointer;
75     QLabel *userAgentLabelPointer;
76     QComboBox *zoomFactorComboBoxPointer;
77
78     // The private functions.
79     void populateJavaScriptLabel() const;
80     void populateLocalStorageLabel() const;
81     void populateUserAgentLabel(const QString &userAgentName) const;
82     void updateUi() const;
83 };
84 #endif