]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/dialogs/DomainSettingsDialog.h
Rename Local Storage to DOM Storage. https://redmine.stoutner.com/issues/852
[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 ok();
59     void reset() const;
60     void showAddMessageBox();
61     void showDeleteMessageBox() const;
62     void userAgentChanged(const QString &updatedUserAgent) const;
63     void zoomFactorComboBoxChanged(const int &newIndex) const;
64
65 private:
66     // The private variables.
67     QPushButton *applyButtonPointer;
68     QDoubleSpinBox *customZoomFactorSpinBoxPointer;
69     QPushButton *deleteDomainButtonPointer;
70     QComboBox *domStorageComboBoxPointer;
71     QLabel *domStorageLabelPointer;
72     QListView *domainsListViewPointer;
73     KLineEdit *domainNameLineEditPointer;
74     QWidget *domainSettingsWidgetPointer;
75     QSqlTableModel *domainsTableModelPointer;
76     QComboBox *javaScriptComboBoxPointer;
77     QLabel *javaScriptLabelPointer;
78     QPushButton *resetButtonPointer;
79     QComboBox *userAgentComboBoxPointer;
80     QLabel *userAgentLabelPointer;
81     QComboBox *zoomFactorComboBoxPointer;
82
83     // The private functions.
84     void addDomain(const QString &domainName) const;
85     void populateJavaScriptLabel() const;
86     void populateDomStorageLabel() const;
87     void populateUserAgentLabel(const QString &userAgentName) const;
88     void updateUi() const;
89 };
90 #endif