summaryrefslogtreecommitdiffstats
path: root/src/core/frontend/applets/software_keyboard.cpp
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-11-10 02:10:58 +0100
committerZach Hilman <zachhilman@gmail.com>2018-11-18 16:53:47 +0100
commitae53b84efd5523e2aba3255f9f713d4a1df563b3 (patch)
tree6c368afbdc6c0376c9e4291a735c9c0c50b0aa91 /src/core/frontend/applets/software_keyboard.cpp
parentam/applets: Add Applet superclass to describe a generic applet (diff)
downloadyuzu-ae53b84efd5523e2aba3255f9f713d4a1df563b3.tar
yuzu-ae53b84efd5523e2aba3255f9f713d4a1df563b3.tar.gz
yuzu-ae53b84efd5523e2aba3255f9f713d4a1df563b3.tar.bz2
yuzu-ae53b84efd5523e2aba3255f9f713d4a1df563b3.tar.lz
yuzu-ae53b84efd5523e2aba3255f9f713d4a1df563b3.tar.xz
yuzu-ae53b84efd5523e2aba3255f9f713d4a1df563b3.tar.zst
yuzu-ae53b84efd5523e2aba3255f9f713d4a1df563b3.zip
Diffstat (limited to '')
-rw-r--r--src/core/frontend/applets/software_keyboard.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/core/frontend/applets/software_keyboard.cpp b/src/core/frontend/applets/software_keyboard.cpp
new file mode 100644
index 000000000..8cb888a62
--- /dev/null
+++ b/src/core/frontend/applets/software_keyboard.cpp
@@ -0,0 +1,17 @@
+// 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 "core/frontend/applets/software_keyboard.h"
+
+namespace Frontend {
+bool DefaultSoftwareKeyboardApplet::GetText(Parameters parameters, std::u16string& text) {
+ if (parameters.initial_text.empty())
+ text = Common::UTF8ToUTF16("yuzu");
+ else
+ text = parameters.initial_text;
+
+ return true;
+}
+} // namespace Frontend