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 COOKIESDIALOG_H
21 #define COOKIESDIALOG_H
23 // Qt toolkit headers.
25 #include <QItemSelectionModel>
26 #include <QNetworkCookie>
27 #include <QStandardItemModel>
33 class CookiesDialog : public QDialog
35 // Include the Q_OBJECT macro.
39 // The primary constructor.
40 explicit CookiesDialog(std::list<QNetworkCookie> *cookieListPointer);
44 void addCookie(const QNetworkCookie &cookie) const;
45 void deleteAllCookies() const;
46 void deleteCookie(const QNetworkCookie &cookie) const;
50 void addCookieFromDialog(const QNetworkCookie &cookie, const bool &isDurable) const;
51 void deleteCookieFromDatabase(const QNetworkCookie &cookie) const;
52 void deleteCookieFromDialog(const QNetworkCookie &cookie) const;
53 void showAddCookieDialog() const;
54 void showDeleteAllMessageBox() const;
55 void showDeleteCookieMessageBox() const;
56 void showDurableCookiesDialog() const;
57 void showEditCookieDialog() const;
58 void updateUi() const;
61 // The private variables.
62 QPushButton *addCookieButtonPointer;
63 std::list<QNetworkCookie> *cookieListPointer;
64 QPushButton *deleteAllButtonPointer;
65 QPushButton *deleteCookieButtonPointer;
66 QPushButton *durableCookiesButtonPointer;
67 QPushButton *editCookieButtonPointer;
68 QStandardItemModel *treeModelPointer;
69 QItemSelectionModel *treeSelectionModelPointer;
70 QTreeView *treeViewPointer;
72 // The private functions.
73 void deleteCookie(const QModelIndex &modelIndex, const bool &deleteDurableCookies) const;
74 void deleteDomain(const QModelIndex &modelIndex, const bool &deleteDurableCookies) const;