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.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