]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/dialogs/BookmarksDialog.h
Add a default folder icon to the edit folder dialog. https://redmine.stoutner.com...
[PrivacyBrowserPC.git] / src / dialogs / BookmarksDialog.h
1 /*
2  * Copyright 2023-2024 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 BOOKMARKSDIALOG_H
21 #define BOOKMARKSDIALOG_H
22
23 // Application headers.
24 #include "structs/BookmarkStruct.h"
25 #include "widgets/DraggableTreeView.h"
26
27 // Qt toolkit headers.
28 #include <QDialog>
29 #include <QItemSelectionModel>
30 #include <QStandardItem>
31
32 class BookmarksDialog : public QDialog
33 {
34     // Include the Q_OBJECT macro.
35     Q_OBJECT
36
37 public:
38     // The primary constructor.
39     BookmarksDialog(QWidget *parentWidgetPointer, QIcon currentWebsiteFavorieIcon, QString currentWebsiteTitle, QString currentWebsiteUrl);
40
41     // The public constants.
42     static const int NAME_COLUMN = 0;
43     static const int URL_COLUMN = 1;
44     static const int DATABASE_ID_COLUMN = 2;
45     static const int DISPLAY_ORDER_COLUMN = 3;
46     static const int IS_FOLDER_COLUMN = 4;
47     static const int FOLDER_ID_COLUMN = 5;
48
49 signals:
50     // The signals.
51     void bookmarkUpdated() const;
52
53 private Q_SLOTS:
54     // The private slots.
55     void deleteItems() const;
56     void refreshBookmarks() const;
57     void showAddBookmarkDialog();
58     void showAddFolderDialog();
59     void showEditDialog();
60     void updateBookmarkFromTree(QStandardItem *modifiedStandardItem);
61     void updateSelection() const;
62
63 private:
64     // The private variables.
65     QPushButton *deleteItemsButtonPointer;
66     QPushButton *editButtonPointer;
67     QStandardItemModel *treeModelPointer;
68     QItemSelectionModel *treeSelectionModelPointer;
69     DraggableTreeView *draggableTreeViewPointer;
70     QIcon websiteFavoriteIcon;
71     QString websiteTitle;
72     QString websiteUrl;
73
74     // The private functions.
75     void populateBookmarks() const;
76     void populateSubfolders(QStandardItem *folderItemNamePointer, const double folderId) const;
77     void selectSubfolderContents(const QModelIndex &parentModelIndex) const;
78     void updateUi() const;
79 };
80 #endif