Falkon Develop
Cross-platform Qt-based web browser
bookmarksmenu.h
Go to the documentation of this file.
1/* ============================================================
2* Falkon - Qt web browser
3* Copyright (C) 2014 David Rosca <nowrep@gmail.com>
4*
5* This program is free software: you can redistribute it and/or modify
6* it under the terms of the GNU General Public License as published by
7* the Free Software Foundation, either version 3 of the License, or
8* (at your option) any later version.
9*
10* This program is distributed in the hope that it will be useful,
11* but WITHOUT ANY WARRANTY; without even the implied warranty of
12* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13* GNU General Public License for more details.
14*
15* You should have received a copy of the GNU General Public License
16* along with this program. If not, see <http://www.gnu.org/licenses/>.
17* ============================================================ */
18#ifndef BOOKMARKSMENU_H
19#define BOOKMARKSMENU_H
20
21#include <QPointer>
22
23#include "enhancedmenu.h"
24#include "qzcommon.h"
25
26class BrowserWindow;
27class BookmarkItem;
28
30{
31 Q_OBJECT
32
33public:
34 explicit BookmarksMenu(QWidget* parent = nullptr);
35
36 void setMainWindow(BrowserWindow* window);
37
38private Q_SLOTS:
39 void bookmarkPage();
40 void bookmarkAllTabs();
41 void showBookmarksManager();
42
43 void bookmarksChanged();
44 void aboutToShow();
45 void menuAboutToShow();
46 void menuMiddleClicked(Menu* menu);
47
48 void bookmarkActivated();
49 void bookmarkCtrlActivated();
50 void bookmarkShiftActivated();
51
52 void openFolder(BookmarkItem* item);
53 void openBookmark(BookmarkItem* item);
54 void openBookmarkInNewTab(BookmarkItem* item);
55 void openBookmarkInNewWindow(BookmarkItem* item);
56
57private:
58 void init();
59 void refresh();
60
61 QPointer<BrowserWindow> m_window;
62 bool m_changed;
63};
64
65#endif // BOOKMARKSMENU_H
void menuMiddleClicked(Menu *)
#define FALKON_EXPORT
Definition: qzcommon.h:28