2 * Copyright © 2022 Soren Stoutner <soren@stoutner.com>.
4 * This file is part of Privacy Browser PC <https://www.stoutner.com/privacy-browser-pc>.
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.
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.
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/>.
20 #ifndef DOMAINSETTINGSDIALOG_H
21 #define DOMAINSETTINGSDIALOG_H
23 // KDE Frameworks headers.
26 // Qt toolkit headers.
28 #include <QDoubleSpinBox>
32 class DomainSettingsDialog : public QDialog
34 // Include the Q_OBJECT macro.
38 // The primary constructor.
39 explicit DomainSettingsDialog(const int &startType = SHOW_ALL_DOMAINS, const QString &domainName = QStringLiteral(""));
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;
47 void domainSettingsUpdated() const;
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;
61 void showAddMessageBox();
62 void showDeleteMessageBox() const;
63 void userAgentChanged(const QString &updatedUserAgent) const;
64 void zoomFactorComboBoxChanged(const int &newIndex) const;
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;
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;