summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/frontend/applets.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-01-30am: return AppletDataBroker and use for frontend appletsLiam1-74/+15
2024-01-30am: migrate global state to per-applet state structureLiam1-1/+0
2024-01-30am: re-namespace frontend applets to frontend directoryLiam1-104/+21
2023-11-06service: am: Set the correct album program idgerman771-2/+2
2023-11-05yuzu: Only store games in the recently played listgerman771-0/+24
2023-10-01service: am: Set push in arguments according to the launched appletNarr the Reg1-10/+39
2023-03-25applets: implement RequestExitLiam1-0/+1
2022-11-13service: am: Implement cabinet applet backendgerman771-4/+8
2022-10-22general: Enforce C4800 everywhere except in video_coreMorph1-1/+1
2022-06-27core: Replace all instances of ResultCode with Resultgerman771-2/+2
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.
2022-03-22applets: Rename Mii to MiiEditMorph1-4/+4
2022-03-01applet: mii: Simple implementation of mii appletgerman771-3/+6
2021-10-02service: Replace service event creation with ServiceContext::CreateEventMorph1-4/+6
The service context helps to manage all created events and allows us to close them upon destruction.
2021-05-06hle: kernel: Remove deprecated Object class.bunnei1-1/+0
2021-05-06hle: kernel: Migrate KReadableEvent and KWritableEvent to KAutoObject.bunnei1-4/+4
2021-05-06hle: kernel: Migrate KEvent to KAutoObject.bunnei1-3/+4
2021-05-06hle: kernel: Refactor IPC interfaces to not use std::shared_ptr.bunnei1-3/+3
2021-04-17applets: Send focus state change message on applet state changeMorph1-2/+5
Fixes the softlock after the controller applet exits in Mario Kart 8 Deluxe.
2021-04-17applets: Make the applet mode a protected property of AppletMorph1-5/+10
2021-04-15applets: Pass in the LibraryAppletMode each applet's constructorMorph1-1/+9
2021-02-05hle: kernel: Reimplement KReadableEvent and KWritableEvent.bunnei1-5/+7
2021-02-05hle: kernel: Rename WritableEvent to KWritableEvent.bunnei1-1/+1
2021-02-05hle: kernel: Rename ReadableEvent to KReadableEvent.bunnei1-3/+3
2020-12-18applets: Remove the previous web browser applet implementationMorph1-11/+9
2020-09-04Project Mjölnir: Part 2 - Controller AppletMorph1-8/+11
Co-authored-by: Its-Rei <kupfel@gmail.com>
2020-02-08hle: services: Use std::shared_ptr instead of copy by value.bunnei1-12/+12
2019-11-25kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. (#3154)bunnei1-3/+3
* kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. - See https://github.com/citra-emu/citra/pull/4710 for details.
2019-09-30applets: Add accessor for AppletFrontendSetZach Hilman1-0/+2
Allows other services to call applets without using LLE.
2019-09-05service/am: Remove usages of global system accessorsLioncash1-4/+13
Avoids the use of global accessors, removing the reliance on global state. This also makes dependencies explicit in the interface, as opposed to being hidden
2019-06-25applets: Pass current process title ID to appletsZach Hilman1-1/+1
Avoids using system accessor to get current process in applet code.
2019-06-25applets: Track ECommerce and Parental Control applet frontendsZach Hilman1-2/+10
2019-05-29core/core: Remove unnecessary includesLioncash1-5/+22
The contents of these includes aren't used anywhere in this translation unit.
2019-05-25applets: Save report on stubbed appletZach Hilman1-4/+12
This also reworks the applet data storage to be peekable.
2019-04-17applets: Add AppletManager class to control lifetimeZach Hilman1-0/+55
2019-01-01core/kernel: Remove unnecessary inclusionsLioncash1-1/+1
Gets rid of a few unnecessary header dependencies in some source files.
2018-11-29hle_ipc: Refactor SleepClientThread to avoid ReadableEventZach Hilman1-5/+1
2018-11-29kernel/event: Reference ReadableEvent from WritableEventZach Hilman1-3/+3
2018-11-29core: Port all current usages of Event to Readable/WritableEventZach Hilman1-8/+9
2018-11-20am/applets: Make the applet data broker part of the applet itself.Lioncash1-3/+12
The accessor should be doing just that, accessing, rather than retaining the lifetime of the data broker as well.
2018-11-20am/applets: Replace includes with forward declarations where applicableLioncash1-2/+4
Also resolve places where includes should have been provided, but weren't.
2018-11-20am/applets: Relocate comments above the relevant data member in AppletDataBrokerLioncash1-11/+18
Avoids wonky wrapping and makes it nicer to read.
2018-11-19applet: Add AppletDataBroker to manage HLE to AM service interactionZach Hilman1-12/+44
This cleans up most of the callbacks and such in the Applets::Applet interface, while also properly implementing all four data channels.
2018-11-18applet: Use std::queue instead of std::vector for storage stackZach Hilman1-3/+4
2018-11-18software_keyboard: Push buffer size to offset 0x4 in output dataZach Hilman1-1/+3
2018-11-18am: Allow applets to push multiple and different channels of dataZach Hilman1-1/+5
2018-11-18am: Implement text check software keyboard modeZach Hilman1-0/+5
Allows the game to verify and send a message to the frontend.
2018-11-18am: Deglobalize software keyboard appletZach Hilman1-3/+7
2018-11-18am/applets: Add Applet superclass to describe a generic appletZach Hilman1-0/+46
Adds an Initialize and Execute methods which are used by the ILibraryAppletAccessor to start and control the applet.