summaryrefslogtreecommitdiffstats
path: root/examples/webenginewidgets/webui/webuihandler.h
blob: 072c0809c98c86e0cc9a5518087b80faee432206 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef WEBUIHANDLER_H
#define WEBUIHANDLER_H

#include <QWebEngineUrlSchemeHandler>

class WebUiHandler : public QWebEngineUrlSchemeHandler
{
    Q_OBJECT
public:
    explicit WebUiHandler(QObject *parent = nullptr);

    void requestStarted(QWebEngineUrlRequestJob *job) override;

    static void registerUrlScheme();

    const static QByteArray schemeName;
    const static QUrl aboutUrl;
};

#endif // !WEBUIHANDLER_H