summaryrefslogtreecommitdiff
path: root/src/yuzu/applets
AgeCommit message (Collapse)Author
2019-01-17core/frontend/applets/web_browser: Make OpenPage() non-constLioncash
This is a function that definitely doesn't always have a non-modifying behavior across all implementations, so this should be made non-const. This gets rid of the need to mark data members as mutable to work around the fact mutating data members needs to occur.
2019-01-17yuzu/web_browser: std::move std::function instances in OpenPage()Lioncash
Avoids the need to potentially reallocate the contained callbacks.
2019-01-17yuzu/web_browser: Make slot functions privateLioncash
These currently aren't used by anything other than the QtWebBrowser class itself, and can be made private.
2018-12-28web_browser: Add bounds checking to applet interfaceZach Hilman
2018-12-28qt: Implement Qt frontend to web browserZach Hilman
Using a custom reimplementation of QWebEngineView and an injector script.
2018-12-03applets: Correct event ResetTypes from OneShot to StickyZach Hilman
Fixes bugs relating to signalling in software keyboard.
2018-12-03qt: Implement GUI dialog frontend for ProfileSelectorZach Hilman
Presents profiles in a list, similar to switch.
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-20yuzu/applets/software_keyboard: Make slots private functionsLioncash
These aren't required to be public.
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.