Files
Momentum-Firmware/applications/services/desktop/views/desktop_events.h
Willy-JL b7220237de Small bump in the road
- Update assets and references for new project
- Revert DFU image and CLI motd
- Remove NSFW text and flag
- Remove credits animation (will be replaced with a setting menu soon)
- New EvilPortal example HTML and better error message
- Initial standalone naming for asset packs and mainmenu apps
- File migration fixes/improvements
- Remove hotfix workflow
2024-03-01 06:11:16 +00:00

63 lines
1.7 KiB
C

#pragma once
typedef enum {
// Events with _ are unused, kept for compatibility
DesktopMainEventLockWithPin,
DesktopMainEventOpenLockMenu,
DesktopMainEventOpenArchive,
_DesktopMainEventOpenFavoriteLeftShort,
_DesktopMainEventOpenFavoriteLeftLong,
_DesktopMainEventOpenFavoriteRightShort,
_DesktopMainEventOpenFavoriteRightLong,
DesktopMainEventOpenMenu,
_DesktopMainEventOpenDebug,
DesktopMainEventOpenPowerOff,
_DesktopDummyEventOpenLeft,
_DesktopDummyEventOpenDown,
_DesktopDummyEventOpenOk,
DesktopLockedEventUnlocked,
DesktopLockedEventUpdate,
DesktopLockedEventShowPinInput,
DesktopLockedEventCoversClosed,
DesktopPinInputEventResetWrongPinLabel,
DesktopPinInputEventUnlocked,
DesktopPinInputEventUnlockFailed,
DesktopPinInputEventBack,
DesktopPinTimeoutExit,
_DesktopDebugEventDeed,
_DesktopDebugEventWrongDeed,
_DesktopDebugEventSaveState,
_DesktopDebugEventExit,
DesktopLockMenuEventLockPinCode,
_DesktopLockMenuEventDummyModeOn,
_DesktopLockMenuEventDummyModeOff,
DesktopLockMenuEventStealthModeOn,
DesktopLockMenuEventStealthModeOff,
DesktopAnimationEventCheckAnimation,
DesktopAnimationEventNewIdleAnimation,
DesktopAnimationEventInteractAnimation,
DesktopSlideshowCompleted,
DesktopSlideshowPoweroff,
// Global events
DesktopGlobalBeforeAppStarted,
DesktopGlobalAfterAppFinished,
DesktopGlobalAutoLock,
DesktopGlobalApiUnlock,
DesktopMainEventLockKeypad,
DesktopLockedEventOpenPowerOff,
DesktopLockMenuEventSettings,
DesktopLockMenuEventLockKeypad,
DesktopLockMenuEventLockPinOff,
DesktopLockMenuEventMomentum,
} DesktopEvent;