2022-01-02 21:39:56 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
typedef enum {
|
2023-08-17 10:04:40 +00:00
|
|
|
DesktopMainEventLock,
|
2022-01-02 21:39:56 +00:00
|
|
|
DesktopMainEventOpenLockMenu,
|
|
|
|
DesktopMainEventOpenArchive,
|
2023-08-17 10:04:40 +00:00
|
|
|
DesktopMainEventOpenFavoriteLeftShort,
|
|
|
|
DesktopMainEventOpenFavoriteLeftLong,
|
|
|
|
DesktopMainEventOpenFavoriteRightShort,
|
|
|
|
DesktopMainEventOpenFavoriteRightLong,
|
2022-01-02 21:39:56 +00:00
|
|
|
DesktopMainEventOpenMenu,
|
|
|
|
DesktopMainEventOpenDebug,
|
2022-06-10 13:29:25 +00:00
|
|
|
DesktopMainEventOpenPowerOff,
|
2022-02-10 18:17:41 +00:00
|
|
|
|
2023-08-17 10:04:40 +00:00
|
|
|
DesktopDummyEventOpenLeft,
|
|
|
|
DesktopDummyEventOpenDown,
|
|
|
|
DesktopDummyEventOpenOk,
|
|
|
|
DesktopDummyEventOpenUpLong,
|
|
|
|
DesktopDummyEventOpenDownLong,
|
|
|
|
DesktopDummyEventOpenLeftLong,
|
2023-08-17 10:40:55 +00:00
|
|
|
DesktopDummyEventOpenRightLong,
|
|
|
|
DesktopDummyEventOpenOkLong,
|
2022-09-16 21:43:21 +00:00
|
|
|
|
2022-02-10 18:17:41 +00:00
|
|
|
DesktopLockedEventUnlocked,
|
|
|
|
DesktopLockedEventUpdate,
|
|
|
|
DesktopLockedEventShowPinInput,
|
2023-08-17 10:04:40 +00:00
|
|
|
DesktopLockedEventDoorsClosed,
|
2022-02-10 18:17:41 +00:00
|
|
|
|
|
|
|
DesktopPinInputEventResetWrongPinLabel,
|
|
|
|
DesktopPinInputEventUnlocked,
|
|
|
|
DesktopPinInputEventUnlockFailed,
|
|
|
|
DesktopPinInputEventBack,
|
|
|
|
|
|
|
|
DesktopPinTimeoutExit,
|
|
|
|
|
2022-01-02 21:39:56 +00:00
|
|
|
DesktopDebugEventDeed,
|
|
|
|
DesktopDebugEventWrongDeed,
|
|
|
|
DesktopDebugEventSaveState,
|
|
|
|
DesktopDebugEventExit,
|
2022-02-10 18:17:41 +00:00
|
|
|
|
2022-01-02 21:39:56 +00:00
|
|
|
DesktopLockMenuEventLock,
|
2022-09-16 21:43:21 +00:00
|
|
|
DesktopLockMenuEventDummyModeOn,
|
|
|
|
DesktopLockMenuEventDummyModeOff,
|
2023-04-19 09:33:23 +00:00
|
|
|
DesktopLockMenuEventStealthModeOn,
|
|
|
|
DesktopLockMenuEventStealthModeOff,
|
2022-02-10 18:17:41 +00:00
|
|
|
|
|
|
|
DesktopAnimationEventCheckAnimation,
|
|
|
|
DesktopAnimationEventNewIdleAnimation,
|
|
|
|
DesktopAnimationEventInteractAnimation,
|
|
|
|
|
2022-06-21 14:11:34 +00:00
|
|
|
DesktopSlideshowCompleted,
|
2022-07-26 12:44:03 +00:00
|
|
|
DesktopSlideshowPoweroff,
|
2022-06-21 14:11:34 +00:00
|
|
|
|
2024-04-24 23:39:38 +00:00
|
|
|
DesktopHwMismatchExit,
|
|
|
|
|
|
|
|
DesktopEnclaveExit,
|
|
|
|
|
2022-03-28 13:42:31 +00:00
|
|
|
// Global events
|
|
|
|
DesktopGlobalBeforeAppStarted,
|
|
|
|
DesktopGlobalAfterAppFinished,
|
2022-04-14 12:20:41 +00:00
|
|
|
DesktopGlobalAutoLock,
|
2024-01-03 13:00:56 +00:00
|
|
|
DesktopGlobalApiUnlock,
|
2022-01-02 21:39:56 +00:00
|
|
|
} DesktopEvent;
|