diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-07-11 14:39:08 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-07-11 14:39:08 +0200 |
commit | 8aa707cfe56604f95c6d5c75e146b70a5272cc5d (patch) | |
tree | cada71476496ee0bc5f5b76103f4e5d55d3363cb /src/webengine/widgets/pagetoolsmenu.h | |
parent | Add custom WebView context menu (diff) | |
download | smolbote-8aa707cfe56604f95c6d5c75e146b70a5272cc5d.tar.xz |
Remove PageToolsMenu
Diffstat (limited to 'src/webengine/widgets/pagetoolsmenu.h')
-rw-r--r-- | src/webengine/widgets/pagetoolsmenu.h | 32 |
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 |