mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-19 23:29:58 +00:00
24 lines
488 B
C++
24 lines
488 B
C++
// Copyright 2020 yuzu Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <QObject>
|
|
|
|
#ifdef YUZU_USE_QT_WEB_ENGINE
|
|
#include <QWebEngineView>
|
|
#endif
|
|
|
|
#include "core/frontend/applets/web_browser.h"
|
|
|
|
class GMainWindow;
|
|
|
|
class QtWebBrowser final : public QObject, public Core::Frontend::WebBrowserApplet {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit QtWebBrowser(GMainWindow& main_window);
|
|
~QtWebBrowser() override;
|
|
};
|