2018-11-10 02:10:58 +01:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "common/logging/backend.h"
|
2018-11-11 22:57:59 +01:00
|
|
|
#include "common/string_util.h"
|
2018-11-10 02:10:58 +01:00
|
|
|
#include "core/frontend/applets/software_keyboard.h"
|
|
|
|
|
2018-11-11 22:39:25 +01:00
|
|
|
namespace Core::Frontend {
|
|
|
|
SoftwareKeyboardApplet::~SoftwareKeyboardApplet() = default;
|
|
|
|
|
|
|
|
bool DefaultSoftwareKeyboardApplet::GetText(SoftwareKeyboardParameters parameters,
|
|
|
|
std::u16string& text) const {
|
2018-11-10 02:10:58 +01:00
|
|
|
if (parameters.initial_text.empty())
|
2018-11-11 22:39:25 +01:00
|
|
|
text = u"yuzu";
|
2018-11-10 02:10:58 +01:00
|
|
|
else
|
|
|
|
text = parameters.initial_text;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2018-11-11 22:39:25 +01:00
|
|
|
|
2018-11-11 22:41:31 +01:00
|
|
|
void DefaultSoftwareKeyboardApplet::SendTextCheckDialog(std::u16string error_message) const {
|
|
|
|
LOG_WARNING(Service_AM,
|
|
|
|
"(STUBBED) called - Default fallback software keyboard does not support text "
|
|
|
|
"check! (error_message={})",
|
|
|
|
Common::UTF16ToUTF8(error_message));
|
|
|
|
}
|
2018-11-11 22:39:25 +01:00
|
|
|
} // namespace Core::Frontend
|