frontend: Add frontend responder for web browser
This commit is contained in:
parent
69f622be36
commit
85a3368e6d
2 changed files with 52 additions and 0 deletions
24
src/core/frontend/applets/web_browser.cpp
Normal file
24
src/core/frontend/applets/web_browser.cpp
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
// Copyright 2018 yuzu emulator team
|
||||||
|
// Licensed under GPLv2 or any later version
|
||||||
|
// Refer to the license.txt file included.
|
||||||
|
|
||||||
|
#include "common/logging/log.h"
|
||||||
|
#include "core/frontend/applets/web_browser.h"
|
||||||
|
|
||||||
|
namespace Core::Frontend {
|
||||||
|
|
||||||
|
WebBrowserApplet::~WebBrowserApplet() = default;
|
||||||
|
|
||||||
|
DefaultWebBrowserApplet::~DefaultWebBrowserApplet() = default;
|
||||||
|
|
||||||
|
void DefaultWebBrowserApplet::OpenPage(std::string_view filename,
|
||||||
|
std::function<void()> unpack_romfs_callback,
|
||||||
|
std::function<void()> finished_callback) const {
|
||||||
|
LOG_INFO(Service_AM,
|
||||||
|
"(STUBBED) called - No suitable web browser implementation found to open website page "
|
||||||
|
"at '{}'!",
|
||||||
|
filename);
|
||||||
|
finished_callback();
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace Core::Frontend
|
28
src/core/frontend/applets/web_browser.h
Normal file
28
src/core/frontend/applets/web_browser.h
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
// Copyright 2018 yuzu emulator team
|
||||||
|
// Licensed under GPLv2 or any later version
|
||||||
|
// Refer to the license.txt file included.
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <functional>
|
||||||
|
#include <string_view>
|
||||||
|
|
||||||
|
namespace Core::Frontend {
|
||||||
|
|
||||||
|
class WebBrowserApplet {
|
||||||
|
public:
|
||||||
|
virtual ~WebBrowserApplet();
|
||||||
|
|
||||||
|
virtual void OpenPage(std::string_view url, std::function<void()> unpack_romfs_callback,
|
||||||
|
std::function<void()> finished_callback) const = 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
class DefaultWebBrowserApplet final : public WebBrowserApplet {
|
||||||
|
public:
|
||||||
|
~DefaultWebBrowserApplet() override;
|
||||||
|
|
||||||
|
void OpenPage(std::string_view url, std::function<void()> unpack_romfs_callback,
|
||||||
|
std::function<void()> finished_callback) const override;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace Core::Frontend
|
Loading…
Reference in a new issue