summaryrefslogtreecommitdiffstats
path: root/src/core/frontend/applets/software_keyboard.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-12-06applets/software_keyboard: Use aliases for callbacksLioncash1-4/+1
Deduplicates really long std::function declarations to make the interface nicer to read.
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2021-11-08applets/swkbd: Skip text checking if the text has been confirmedMorph1-2/+3
Confirm means that the text has already been checked by the application to be correct, but is asking the user for confirmation. The confirmation text itself seems to be corrupted though, this needs to be investigated. Fixes the software keyboard in Famicom Detective Club: The Missing Heir
2021-04-15applets/swkbd: Implement the Default Software Keyboard frontendMorph1-1/+139
2021-04-15applets: Remove the previous software keyboard applet implementationMorph1-19/+1
2018-11-18applet: Add operation completed callbackZach Hilman1-1/+3
2018-11-18software_keyboard: Make GetText asynchronousZach Hilman1-3/+4
a
2018-11-18am: Allow applets to push multiple and different channels of dataZach Hilman1-6/+4
2018-11-18am: Implement ILibraryAppletAccessor IsCompleted and GetResultZach Hilman1-0/+1
2018-11-18am: Implement text check software keyboard modeZach Hilman1-0/+6
Allows the game to verify and send a message to the frontend.
2018-11-18am: Deglobalize software keyboard appletZach Hilman1-5/+8
2018-11-18qt/main: Register Qt Software Keyboard frontend with AMZach Hilman1-0/+1
Allows using Qt provider over default.
2018-11-18frontend/applets: Add frontend software keyboard provider and defaultZach Hilman1-0/+17
Default implementation will return "yuzu" for any string. GUI clients (or CLI) can implement the Frontend::SoftwareKeyboardApplet class and register an instance to provide functionality.