mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
- 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
63 lines
1.7 KiB
C
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;
|