aboutsummaryrefslogtreecommitdiff
path: root/src/webengine/widgets/pagetoolsmenu.h
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-07-11 14:39:08 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2018-07-11 14:39:08 +0200
commit8aa707cfe56604f95c6d5c75e146b70a5272cc5d (patch)
treecada71476496ee0bc5f5b76103f4e5d55d3363cb /src/webengine/widgets/pagetoolsmenu.h
parentAdd custom WebView context menu (diff)
downloadsmolbote-8aa707cfe56604f95c6d5c75e146b70a5272cc5d.tar.xz
Remove PageToolsMenu
Diffstat (limited to 'src/webengine/widgets/pagetoolsmenu.h')
-rw-r--r--src/webengine/widgets/pagetoolsmenu.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/webengine/widgets/pagetoolsmenu.h b/src/webengine/widgets/pagetoolsmenu.h
deleted file mode 100644
index f234d0e..0000000
--- a/src/webengine/widgets/pagetoolsmenu.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * 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 QDialog;
-class QWebEnginePage;
-class PageToolsMenu : public QMenu
-{
- Q_OBJECT
-public:
- explicit PageToolsMenu(WebView *parent = nullptr);
-
-public slots:
- void createEntries();
-
-private:
- QDialog *createDevToolsDialog(QWebEnginePage *page);
-
- WebView *parentView;
-};
-
-#endif //SMOLBOTE_PAGETOOLSMENU_H