blob: 3ee63ff866f74f5e6be9e5c506de290437790d92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* ============================================================
* The rekonq project
* ============================================================
* SPDX-License-Identifier: GPL-3.0-only
* Copyright (C) 2022 aqua <aqua@iserlohn-fortress.net>
* ============================================================
* Description: WebEngine plugin View factory
* ============================================================ */
#pragma once
#include <rplugininterface.hpp>
class WebEnginePlugin final : public RekonqPluginInterface {
Q_OBJECT
Q_PLUGIN_METADATA(IID RekonqPluginInterface_iid FILE "WebEngine.json")
Q_INTERFACES(RekonqPluginInterface)
public:
WebEnginePlugin() = default;
rView *view(const QUrl &url) override;
};
|