mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 09:13:11 +00:00
48 lines
1.2 KiB
C
48 lines
1.2 KiB
C
#pragma once
|
|
|
|
typedef enum {
|
|
DesktopMainEventOpenLockMenu,
|
|
DesktopMainEventOpenArchive,
|
|
DesktopMainEventOpenFavoritePrimary,
|
|
DesktopMainEventOpenFavoriteSecondary,
|
|
DesktopMainEventOpenMenu,
|
|
DesktopMainEventOpenDebug,
|
|
DesktopMainEventOpenPassport,
|
|
DesktopMainEventOpenPowerOff,
|
|
DesktopMainEventLock,
|
|
|
|
DesktopMainEventOpenGameMenu,
|
|
|
|
DesktopLockedEventUnlocked,
|
|
DesktopLockedEventUpdate,
|
|
DesktopLockedEventShowPinInput,
|
|
|
|
DesktopPinInputEventResetWrongPinLabel,
|
|
DesktopPinInputEventUnlocked,
|
|
DesktopPinInputEventUnlockFailed,
|
|
DesktopPinInputEventBack,
|
|
|
|
DesktopPinTimeoutExit,
|
|
|
|
DesktopDebugEventDeed,
|
|
DesktopDebugEventWrongDeed,
|
|
DesktopDebugEventSaveState,
|
|
DesktopDebugEventExit,
|
|
|
|
DesktopLockMenuEventLock,
|
|
DesktopLockMenuEventPinLock,
|
|
DesktopLockMenuEventDummyModeOn,
|
|
DesktopLockMenuEventDummyModeOff,
|
|
|
|
DesktopAnimationEventCheckAnimation,
|
|
DesktopAnimationEventNewIdleAnimation,
|
|
DesktopAnimationEventInteractAnimation,
|
|
|
|
DesktopSlideshowCompleted,
|
|
DesktopSlideshowPoweroff,
|
|
|
|
// Global events
|
|
DesktopGlobalBeforeAppStarted,
|
|
DesktopGlobalAfterAppFinished,
|
|
DesktopGlobalAutoLock,
|
|
} DesktopEvent;
|