aboutsummaryrefslogtreecommitdiff
path: root/src/webengine/widgets/pagetoolsmenu.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/webengine/widgets/pagetoolsmenu.h')
-rw-r--r--src/webengine/widgets/pagetoolsmenu.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/webengine/widgets/pagetoolsmenu.h b/src/webengine/widgets/pagetoolsmenu.h
new file mode 100644
index 0000000..010bb43
--- /dev/null
+++ b/src/webengine/widgets/pagetoolsmenu.h
@@ -0,0 +1,28 @@
+/*
+ * This file is part of smolbote. It's copyrighted by the contributors recorded
+ * in the version control history of the file, available from its original
+ * location: https://neueland.iserlohn-fortress.net/smolbote.hg
+ *
+ * SPDX-License-Identifier: GPL-3.0
+ */
+
+#ifndef SMOLBOTE_PAGETOOLSMENU_H
+#define SMOLBOTE_PAGETOOLSMENU_H
+
+#include <QMenu>
+
+class WebView;
+class PageToolsMenu : public QMenu
+{
+ Q_OBJECT
+public:
+ explicit PageToolsMenu(WebView *parent = nullptr);
+
+public slots:
+ void createEntries();
+
+private:
+ WebView *parentView;
+};
+
+#endif //SMOLBOTE_PAGETOOLSMENU_H