diff options
author | aqua <aqua@iserlohn-fortress.net> | 2022-08-16 16:19:04 +0300 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2022-08-16 16:19:04 +0300 |
commit | 616e680aa8af8f5056b5133dd44258c252ca656f (patch) | |
tree | 4c89c4fe2b9b2cc77c550c8d52d6d1058ee10846 /plugins/webengine/webengineplugin.cpp | |
parent | Add rView and WebView (diff) | |
download | rekonq-616e680aa8af8f5056b5133dd44258c252ca656f.tar.xz |
Turn WebEngine into a plugin
Diffstat (limited to 'plugins/webengine/webengineplugin.cpp')
-rw-r--r-- | plugins/webengine/webengineplugin.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/webengine/webengineplugin.cpp b/plugins/webengine/webengineplugin.cpp new file mode 100644 index 00000000..cf6811dc --- /dev/null +++ b/plugins/webengine/webengineplugin.cpp @@ -0,0 +1,13 @@ +/* ============================================================ + * The rekonq project + * ============================================================ + * SPDX-License-Identifier: GPL-3.0-only + * Copyright (C) 2022 aqua <aqua@iserlohn-fortress.net> + * ============================================================ + * Description: WebEngine plugin View factory + * ============================================================ */ + +#include "webengineplugin.hpp" +#include "webview.h" + +rView *WebEnginePlugin::view(const QUrl &url) { return new WebView(url, nullptr); } |