]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/dialogs/BookmarksDialog.h
Add dragging and dropping of bookmarks.
[PrivacyBrowserPC.git] / src / dialogs / BookmarksDialog.h
1 /*
2  * Copyright 2023 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     explicit BookmarksDialog(QIcon currentWebsiteFavoriteIcon);
40
41     // The public constants.
42     static const int BOOKMARK_NAME_COLUMN = 0;
43     static const int BOOKMARK_URL_COLUMN = 1;
44     static const int DATABASE_ID_COLUMN = 2;
45     static const int DISPLAY_ORDER = 3;
46
47 signals:
48     // The signals.
49     void bookmarkUpdated() const;
50
51 private Q_SLOTS:
52     // The private slots.
53     void deleteItems() const;
54     void refreshBookmarks() const;
55     void showAddBookmarkDialog() const;
56     void showEditDialog();
57     void updateBookmarkFromTree(QStandardItem *modifiedStandardItem);
58     void updateUi() const;
59
60 private:
61     // The private functions.
62     void populateBookmarks() const;
63
64     // The private variables.
65     QPushButton *deleteItemsButtonPointer;
66     QPushButton *editButtonPointer;
67     QStandardItemModel *treeModelPointer;
68     QItemSelectionModel *treeSelectionModelPointer;
69     DraggableTreeView *draggableTreeViewPointer;
70     QIcon websiteFavoriteIcon;
71 };
72 #endif