summaryrefslogtreecommitdiff
path: root/src/yuzu/applets/software_keyboard.cpp
AgeCommit message (Collapse)Author
2019-04-03yuzu/applets/software_keyboard: Use QDialogButtonBox standard buttons ↵Lioncash
instead of custom buttons Like the previous change, this allows Qt to handle proper translations of the UI buttons, rather than us needing to handle it.
2019-04-01general: Use deducation guides for std::lock_guard and std::unique_lockLioncash
Since C++17, the introduction of deduction guides for locking facilities means that we no longer need to hardcode the mutex type into the locks themselves, making it easier to switch mutex types, should it ever be necessary in the future.
2018-11-20yuzu/applets/software_keyboard: Override accept() and reject() instead of ↵Lioncash
providing own differently named member functions Uses Qt's built-in interface instead of rolling our own separate one on top of it. This also fixes a bug in reject() where we were calling accept() instead of reject().
2018-11-20yuzu/applets/software_keyboard: std::move std::function instances where ↵Lioncash
applicable std::function instances can potentially allocate. std::moveing them prevents an avoidable allocation in that case.
2018-11-18software_keyboard: Add max and current length display to dialogZach Hilman
2018-11-18applet: Add operation completed callbackZach Hilman
2018-11-18software_keyboard: Make GetText asynchronousZach Hilman
a
2018-11-18am: Allow applets to push multiple and different channels of dataZach Hilman
2018-11-18am: Deglobalize software keyboard appletZach Hilman
2018-11-18qt/main: Register Qt Software Keyboard frontend with AMZach Hilman
Allows using Qt provider over default.
2018-11-18qt/applets: Provide Qt frontend implementation of software keyboardZach Hilman
Implements all of the features of the keyboard, including length, default text, character validation, and UTF-16 character support.