diff options
| author | Zach Hilman <zachhilman@gmail.com> | 2019-03-11 19:37:10 -0400 |
|---|---|---|
| committer | Zach Hilman <zachhilman@gmail.com> | 2019-04-17 11:35:24 -0400 |
| commit | d9f6715d459630d165537c19e48cc2ddd54b294b (patch) | |
| tree | 87747e2f3558201196c04e0920e8b51fd8101491 /src/core/frontend/applets/error.h | |
| parent | de3cfb1d37462a4843b8cd4e27ac400e1d479748 (diff) | |
frontend: Add frontend receiver for Error applet
Diffstat (limited to 'src/core/frontend/applets/error.h')
| -rw-r--r-- | src/core/frontend/applets/error.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/core/frontend/applets/error.h b/src/core/frontend/applets/error.h new file mode 100644 index 000000000..699df940d --- /dev/null +++ b/src/core/frontend/applets/error.h @@ -0,0 +1,37 @@ +// Copyright 2019 yuzu emulator team +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once + +#include <chrono> +#include <functional> + +#include "core/hle/result.h" + +namespace Core::Frontend { + +class ErrorApplet { +public: + virtual ~ErrorApplet(); + + virtual void ShowError(ResultCode error, std::function<void()> finished) const = 0; + + virtual void ShowErrorWithTimestamp(ResultCode error, std::chrono::seconds time, + std::function<void()> finished) const = 0; + + virtual void ShowCustomErrorText(ResultCode error, std::string dialog_text, + std::string fullscreen_text, + std::function<void()> finished) const = 0; +}; + +class DefaultErrorApplet final : public ErrorApplet { +public: + void ShowError(ResultCode error, std::function<void()> finished) const override; + void ShowErrorWithTimestamp(ResultCode error, std::chrono::seconds time, + std::function<void()> finished) const override; + void ShowCustomErrorText(ResultCode error, std::string main_text, std::string detail_text, + std::function<void()> finished) const override; +}; + +} // namespace Core::Frontend |
