2 * Copyright 2023 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 BOOKMARKSDIALOG_H
21 #define BOOKMARKSDIALOG_H
23 // Application headers.
24 #include "structs/BookmarkStruct.h"
25 #include "widgets/DraggableTreeView.h"
27 // Qt toolkit headers.
29 #include <QItemSelectionModel>
30 #include <QStandardItem>
32 class BookmarksDialog : public QDialog
34 // Include the Q_OBJECT macro.
38 // The primary constructor.
39 explicit BookmarksDialog(QString currentWebsiteTitle, QString currentWebsiteUrl, QIcon currentWebsiteFavoriteIcon);
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;
51 void bookmarkUpdated() const;
55 void deleteItems() const;
56 void refreshBookmarks() const;
57 void showAddBookmarkDialog() const;
58 void showAddFolderDialog() const;
59 void showEditDialog();
60 void updateBookmarkFromTree(QStandardItem *modifiedStandardItem);
61 void updateSelection() const;
64 // The private variables.
65 QPushButton *deleteItemsButtonPointer;
66 QPushButton *editButtonPointer;
67 QStandardItemModel *treeModelPointer;
68 QItemSelectionModel *treeSelectionModelPointer;
69 DraggableTreeView *draggableTreeViewPointer;
70 QIcon websiteFavoriteIcon;
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;