summaryrefslogtreecommitdiffstats
path: root/src/core/frontend/applets (follow)
Commit message (Collapse)AuthorAgeFilesLines
* hid_core: Move hid to it's own subprojectNarr the Reg2024-01-051-3/+3
|
* general: Use console mode helper across projectlat9nq2023-08-231-1/+2
|
* general: Convert use_docked_mode to an enumerationlat9nq2023-08-221-1/+2
| | | | Allows some special interactions with it in the Qt frontend.
* service: nfc: Merge device interfaces and create the device managerNarr the Reg2023-05-062-6/+6
|
* Merge pull request #10006 from german77/profile_selectliamwhite2023-04-012-4/+15
|\ | | | | service: am: Improve profile select applet
| * service: am: Improve profile select appletNarr the Reg2023-03-292-4/+15
| |
* | applet: controller: Implement cancel buttongerman772023-03-302-2/+2
|/
* qt: implement RequestExit for appletsLiam2023-03-2517-9/+63
|
* applets/controller: Use aliases for callbacksLioncash2022-12-062-3/+5
|
* applets/error: Use aliases for callbacksLioncash2022-12-062-9/+11
|
* applets/mii_edit: Use aliases for callbacksLioncash2022-12-062-3/+5
|
* applets/profile_select: Use aliases for callbacksLioncash2022-12-062-4/+5
| | | | Deduplicates callback definitions and situates it in one place.
* applets/web_browser: Use aliases for callbacksLioncash2022-12-062-18/+17
| | | | Deduplicates a lot of long callback declarations
* applets/software_keyboard: Use aliases for callbacksLioncash2022-12-062-21/+16
| | | | | Deduplicates really long std::function declarations to make the interface nicer to read.
* general: fix compile for Apple ClangLiam2022-11-231-0/+1
|
* general: Address review commentsgerman772022-11-142-4/+5
|
* service: am: Implement cabinet applet backendgerman772022-11-132-0/+56
|
* applet/swkbd: Implement optional symbol keysMorph2022-07-241-0/+2
| | | | These are only used in the numeric keyboard, and correspond to the keys to the left and right of the "0" key on the numeric keyboard.
* core: Replace all instances of ResultCode with Resultgerman772022-06-272-9/+9
|
* common: Change semantics of UNREACHABLE to unconditionally crashLiam2022-06-141-1/+1
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-2314-42/+28
| | | | | 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.
* applets/mii: Remove frontend parametersMorph2022-03-222-17/+4
| | | | These are unused for now as we do not support a frontend implementation.
* service: Move mii enums and structs into its own fileMorph2022-03-221-1/+1
| | | | Moves these into types.h, since other files also make use of these types.
* applets: Rename Mii to MiiEditMorph2022-03-222-7/+8
|
* core: Reduce unused includesameerj2022-03-191-1/+0
|
* applet: mii: Simple implementation of mii appletgerman772022-03-012-0/+54
|
* general: Rename NewUUID to UUID, and remove the previous UUID implMorph2022-02-052-6/+5
| | | | This completes the removal of the old UUID implementation.
* profile: Migrate to the new UUID implementationMorph2022-02-052-6/+6
|
* core/hid: Fix controller type validationgerman772021-12-301-5/+5
|
* core/hid: Rename NpadType to NpadStyleIndexgerman772021-11-251-5/+5
|
* Morph review first wavegerman772021-11-251-3/+2
|
* kraken: Address comments from reviewgerman772021-11-252-34/+25
| | | | review fixes
* core/frontend: Update appletsgerman772021-11-251-9/+14
|
* applets/swkbd: Skip text checking if the text has been confirmedMorph2021-11-082-5/+6
| | | | | | | 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
* core: Remove unused includesameerj2021-11-043-3/+0
|
* core/profile_select: Avoid uninitialized read in SelectProfile()Lioncash2021-09-231-1/+2
| | | | | The default constructor of UUID doesn't initialize its data members, so we need to directly initialize it to be invalid.
* applets: Append applet_ prefix to backend appletsMorph2021-07-142-2/+2
|
* general: Make most settings a BasicSettinglat9nq2021-06-281-1/+1
| | | | | | | | | | | Creates a new BasicSettings class in common/settings, and forces setting a default and label for each setting that uses it in common/settings. Moves defaults and labels from both frontends into common settings. Creates a helper function in each frontend to facillitate reading the settings now with the new default and label properties. Settings::Setting is also now a subclass of Settings::BasicSetting. Also adds documentation for both Setting and BasicSetting.
* applets/web: Fix a use-after-free when passing in the URL stringMorph2021-04-282-6/+7
| | | | | | The URL string was being deleted before being used, leading to a use-after-free occurring when it is used afterwards. Fix this by taking the string by const ref to extend its lifetime, ensuring it doesn't get deleted before use.
* applets/swkbd: Implement the Default Software Keyboard frontendMorph2021-04-152-2/+236
|
* applets: Remove the previous software keyboard applet implementationMorph2021-04-152-53/+1
|
* common: Move settings to common from core.bunnei2021-04-151-1/+1
| | | | - Removes a dependency on core and input_common from common.
* hid: Implement GC controllergerman2021-02-081-0/+1
|
* applets/web: Implement the online web browser appletMorph2020-12-182-0/+17
|
* main, applets/web: Re-add progress dialog for RomFS extractionMorph2020-12-182-8/+8
|
* applets/web: Implement the default web browser applet frontendMorph2020-12-182-0/+20
|
* applets: Remove the previous web browser applet implementationMorph2020-12-184-136/+0
|
* core: Remove unnecessary enum casts in log callsLioncash2020-12-081-3/+4
| | | | | Follows the video core PR. fmt doesn't require casts for enum classes anymore, so we can remove quite a few casts.
* hid: Reorder all HID commandsMorph2020-11-161-2/+2
| | | | Reorders all HID commands in command id order.
* settings: Preparation for per-game input settingsMorph2020-11-161-2/+2
|
* controller: Pass ControllerParameters by reference in ReconfigureControllers()Lioncash2020-10-272-3/+3
| | | | Prevents unnecessary copies and heap reallocations from occurring.
* Revert "core: Fix clang build"bunnei2020-10-212-3/+2
|
* core: Fix clang buildLioncash2020-10-182-2/+3
| | | | | | | Recent changes to the build system that made more warnings be flagged as errors caused building via clang to break. Fixes #4795
* frontend/controller: Eliminate dependency on the global system instanceLioncash2020-09-262-4/+12
|
* applets/controller: Resolve several compiler warningsMorph2020-09-041-1/+2
| | | | Resolves -Wsign-compare and -Wunused-variable
* Address feedbackMorph2020-09-041-0/+2
|
* applets/controller: Modify heuristic to account for certain gamesMorph2020-09-041-7/+12
| | | | | | | | Now left and right joycons have the same priority (meaning both needs to be supported by the game). Explanation of the new heuristic: Assign left joycons to even player indices and right joycons to odd player indices. We do this since Captain Toad Treasure Tracker expects a left joycon for Player 1 and a right Joycon for Player 2 in 2 Player Assist mode.
* applets/controller: Implement fallback applet for the SDL frontendMorph2020-09-041-1/+34
| | | | Implement the fallback applet for the SDL frontend, connecting only the minimum amount of players required.
* applets/controller: Implement "Explain Text"Morph2020-09-041-0/+3
| | | | "Explain Text" is additional text that is shown for each player in the controller applet.
* Project Mjölnir: Part 2 - Controller AppletMorph2020-09-042-0/+85
| | | | Co-authored-by: Its-Rei <kupfel@gmail.com>
* general_frontend: Add documentation for parental controls and ecommerce appletsZach Hilman2019-06-252-4/+32
|
* frontend: Add base class and default impl for ECommerce applet frontendZach Hilman2019-06-252-0/+102
|
* web_browser: Rename OpenPage to OpenPageLocalZach Hilman2019-06-252-7/+7
| | | This is more representative of what actually occurs, as web does support remote URLs which wouldn't need a romfs callback. This paves for easy future support of this with a call like 'OpenPageRemote' or similar.
* frontend: Add base class and default impl of parent controls applet frontendZach Hilman2019-06-252-1/+52
|
* profile_select: Port Service::Account::UUID to Common::UUIDZach Hilman2019-04-252-7/+6
|
* web_browser: Make OpenPage non-constZach Hilman2019-04-172-3/+3
|
* main: Add GMainWindow hooks for Error displayZach Hilman2019-04-171-1/+1
|
* general_frontend: Add frontend scaffold for PhotoViewer appletZach Hilman2019-04-172-0/+55
|
* frontend: Add frontend receiver for Error appletZach Hilman2019-04-172-0/+71
|
* web_browser: Make OpenPage constZach Hilman2019-04-172-3/+3
|
* core/frontend/applets/web_browser: Make OpenPage() non-constLioncash2019-01-172-3/+3
| | | | | | | | 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.
* frontend: Add frontend responder for web browserZach Hilman2018-12-282-0/+52
|
* frontend: Add frontend applet for ProfileSelectZach Hilman2018-12-032-0/+46
| | | Responsible for selecting a profile and firing callback upon completion.
* applet: Add operation completed callbackZach Hilman2018-11-182-3/+7
|
* software_keyboard: Make GetText asynchronousZach Hilman2018-11-182-5/+9
| | | | a
* am: Allow applets to push multiple and different channels of dataZach Hilman2018-11-182-8/+7
|
* am: Implement ILibraryAppletAccessor IsCompleted and GetResultZach Hilman2018-11-181-0/+1
|
* am: Implement text check software keyboard modeZach Hilman2018-11-182-0/+8
| | | | Allows the game to verify and send a message to the frontend.
* am: Deglobalize software keyboard appletZach Hilman2018-11-182-31/+36
|
* qt/main: Register Qt Software Keyboard frontend with AMZach Hilman2018-11-181-0/+1
| | | | Allows using Qt provider over default.
* frontend/applets: Add frontend software keyboard provider and defaultZach Hilman2018-11-182-0/+61
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.