mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
43c4381820
* Desktop: cleanup error popups, add missing factory keys notification * Desktop: enclave warning wording
58 lines
1.5 KiB
C
58 lines
1.5 KiB
C
#pragma once
|
|
|
|
typedef enum {
|
|
DesktopMainEventLock,
|
|
DesktopMainEventOpenLockMenu,
|
|
DesktopMainEventOpenArchive,
|
|
DesktopMainEventOpenFavoriteLeftShort,
|
|
DesktopMainEventOpenFavoriteLeftLong,
|
|
DesktopMainEventOpenFavoriteRightShort,
|
|
DesktopMainEventOpenFavoriteRightLong,
|
|
DesktopMainEventOpenMenu,
|
|
DesktopMainEventOpenDebug,
|
|
DesktopMainEventOpenPowerOff,
|
|
|
|
DesktopDummyEventOpenLeft,
|
|
DesktopDummyEventOpenDown,
|
|
DesktopDummyEventOpenOk,
|
|
|
|
DesktopLockedEventUnlocked,
|
|
DesktopLockedEventUpdate,
|
|
DesktopLockedEventShowPinInput,
|
|
DesktopLockedEventDoorsClosed,
|
|
|
|
DesktopPinInputEventResetWrongPinLabel,
|
|
DesktopPinInputEventUnlocked,
|
|
DesktopPinInputEventUnlockFailed,
|
|
DesktopPinInputEventBack,
|
|
|
|
DesktopPinTimeoutExit,
|
|
|
|
DesktopDebugEventDeed,
|
|
DesktopDebugEventWrongDeed,
|
|
DesktopDebugEventSaveState,
|
|
DesktopDebugEventExit,
|
|
|
|
DesktopLockMenuEventLock,
|
|
DesktopLockMenuEventDummyModeOn,
|
|
DesktopLockMenuEventDummyModeOff,
|
|
DesktopLockMenuEventStealthModeOn,
|
|
DesktopLockMenuEventStealthModeOff,
|
|
|
|
DesktopAnimationEventCheckAnimation,
|
|
DesktopAnimationEventNewIdleAnimation,
|
|
DesktopAnimationEventInteractAnimation,
|
|
|
|
DesktopSlideshowCompleted,
|
|
DesktopSlideshowPoweroff,
|
|
|
|
DesktopHwMismatchExit,
|
|
|
|
DesktopEnclaveExit,
|
|
|
|
// Global events
|
|
DesktopGlobalBeforeAppStarted,
|
|
DesktopGlobalAfterAppFinished,
|
|
DesktopGlobalAutoLock,
|
|
DesktopGlobalApiUnlock,
|
|
} DesktopEvent;
|