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