aboutsummaryrefslogtreecommitdiff
path: root/src/webengine/widgets/pagetoolsmenu.cpp
blob: 9a85f691a82aac5111dfa4bcf359e3c8f04914f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 * 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
 */

#include "pagetoolsmenu.h"
#include "../webview.h"
#include <QWebEngineProfile>
#include <QWebEngineScriptCollection>

PageToolsMenu::PageToolsMenu(WebView *parent)
    : QMenu(parent)
{
    Q_CHECK_PTR(parent);
    parentView = parent;

    connect(this, &QMenu::aboutToShow, this, &PageToolsMenu::createEntries);
}

void PageToolsMenu::createEntries()
{
    clear();

    auto *scriptsMenu = new QMenu(tr("Injected scripts"), this);
    for(const auto &script : parentView->page()->scripts().toList()) {
        scriptsMenu->addAction(script.name())->setEnabled(false);
    }
    addMenu(scriptsMenu);

    auto *devToolsAction = addAction(tr("Dev tools page"));
    connect(devToolsAction, &QAction::triggered, this, [this]() {
        parentView->popupPage(parentView->page()->devToolsPage());
    });
}