summaryrefslogtreecommitdiffstats
path: root/src/core/frontend/applets/software_keyboard.cpp
blob: 856ed33da541bcc7260e4d41b864cf387f703125 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "common/logging/backend.h"
#include "common/string_util.h"
#include "core/frontend/applets/software_keyboard.h"

namespace Core::Frontend {
SoftwareKeyboardApplet::~SoftwareKeyboardApplet() = default;

void DefaultSoftwareKeyboardApplet::RequestText(
    std::function<void(std::optional<std::u16string>)> out,
    SoftwareKeyboardParameters parameters) const {
    if (parameters.initial_text.empty())
        out(u"yuzu");

    out(parameters.initial_text);
}

void DefaultSoftwareKeyboardApplet::SendTextCheckDialog(
    std::u16string error_message, std::function<void()> finished_check) const {
    LOG_WARNING(Service_AM,
                "(STUBBED) called - Default fallback software keyboard does not support text "
                "check! (error_message={})",
                Common::UTF16ToUTF8(error_message));
    finished_check();
}
} // namespace Core::Frontend