eb31fed0e2
* Desktop: slideshow implementation * Updater: handling splashscreen installation; added format version field to slideshow binary * Desktop: added bidirectional slideshow navigation + instant cancel by "back" button; Updater: rebalanced update stages weights * Updater: fixed missing field init; fixed potential loop when baking slideshows * Assets: fixed "update complete" image to match original * Desktop: added check for slideshow file version * Scripts: slideshow.py cleanup * Desktop: removed first start intro sequence * Desktop: removed first start remnants
44 lines
1.1 KiB
C
44 lines
1.1 KiB
C
#pragma once
|
|
|
|
typedef enum {
|
|
DesktopMainEventOpenLockMenu,
|
|
DesktopMainEventOpenArchive,
|
|
DesktopMainEventOpenFavoritePrimary,
|
|
DesktopMainEventOpenFavoriteSecondary,
|
|
DesktopMainEventOpenMenu,
|
|
DesktopMainEventOpenDebug,
|
|
DesktopMainEventOpenPassport, /**< Broken, don't use it */
|
|
DesktopMainEventOpenPowerOff,
|
|
|
|
DesktopLockedEventUnlocked,
|
|
DesktopLockedEventUpdate,
|
|
DesktopLockedEventShowPinInput,
|
|
|
|
DesktopPinInputEventResetWrongPinLabel,
|
|
DesktopPinInputEventUnlocked,
|
|
DesktopPinInputEventUnlockFailed,
|
|
DesktopPinInputEventBack,
|
|
|
|
DesktopPinTimeoutExit,
|
|
|
|
DesktopDebugEventDeed,
|
|
DesktopDebugEventWrongDeed,
|
|
DesktopDebugEventSaveState,
|
|
DesktopDebugEventExit,
|
|
|
|
DesktopLockMenuEventLock,
|
|
DesktopLockMenuEventPinLock,
|
|
DesktopLockMenuEventExit,
|
|
|
|
DesktopAnimationEventCheckAnimation,
|
|
DesktopAnimationEventNewIdleAnimation,
|
|
DesktopAnimationEventInteractAnimation,
|
|
|
|
DesktopSlideshowCompleted,
|
|
|
|
// Global events
|
|
DesktopGlobalBeforeAppStarted,
|
|
DesktopGlobalAfterAppFinished,
|
|
DesktopGlobalAutoLock,
|
|
} DesktopEvent;
|