summaryrefslogtreecommitdiff
path: root/src/panels/bookmarkscontextmenu.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/panels/bookmarkscontextmenu.hpp')
-rw-r--r--src/panels/bookmarkscontextmenu.hpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/panels/bookmarkscontextmenu.hpp b/src/panels/bookmarkscontextmenu.hpp
new file mode 100644
index 00000000..b2ea1ffa
--- /dev/null
+++ b/src/panels/bookmarkscontextmenu.hpp
@@ -0,0 +1,21 @@
+/* ============================================================
+ * The rekonq project
+ * ============================================================
+ * SPDX-License-Identifier: GPL-3.0-only
+ * Copyright (C) 2022 aqua <aqua@iserlohn-fortress.net>
+ * ============================================================ */
+
+#pragma once
+
+#include <QMenu>
+
+class BookmarksTreeModel;
+class RekonqWindow;
+
+class BookmarksContextMenu : public QMenu {
+ Q_OBJECT
+
+public:
+ explicit BookmarksContextMenu(const QModelIndex &index, BookmarksTreeModel *model, QWidget *parent = nullptr);
+ ~BookmarksContextMenu() override = default;
+};