| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #pragma once
- /**
- * @brief ShapshupCustomEvent
- * ShapShupCustomEventTypeReserved = 100,
- * ShapShupCustomEventTypeBackPressed,
- * ShapShupCustomEventTypeIndexSelected,
- * ShapShupCustomEventTypeTransmitStarted,
- * ShapShupCustomEventTypeTransmitContinuousStarted,
- * ShapShupCustomEventTypeTransmitFinished,
- * ShapShupCustomEventTypeTransmitNotStarted,
- * ShapShupCustomEventTypeTransmitCustom,
- * ShapShupCustomEventTypeSaveFile,
- * ShapShupCustomEventTypeUpdateView,
- * ShapShupCustomEventTypeChangeStepUp,
- * ShapShupCustomEventTypeChangeStepDown,
- * ShapShupCustomEventTypeChangeStepUpMore,
- * ShapShupCustomEventTypeChangeStepDownMore,
- * ShapShupCustomEventTypeMenuSelected,
- * ShapShupCustomEventTypeTextEditDone,
- * ShapShupCustomEventTypePopupClosed,
- * ShapShupCustomEventTypeLoadFile,
- */
- typedef enum {
- // Reserve first 100 events for button types and indexes, starting from 0
- ShapShupCustomEventTypeReserved = 100,
- ShapShupCustomEventTypeBackPressed,
- ShapShupCustomEventTypeIndexSelected,
- ShapShupCustomEventTypeTransmitStarted,
- ShapShupCustomEventTypeTransmitContinuousStarted,
- ShapShupCustomEventTypeTransmitFinished,
- ShapShupCustomEventTypeTransmitNotStarted,
- ShapShupCustomEventTypeTransmitCustom,
- ShapShupCustomEventTypeSaveFile,
- ShapShupCustomEventTypeUpdateView,
- ShapShupCustomEventTypeChangeStepUp,
- ShapShupCustomEventTypeChangeStepDown,
- ShapShupCustomEventTypeChangeStepUpMore,
- ShapShupCustomEventTypeChangeStepDownMore,
- ShapShupCustomEventTypeMenuSelected,
- ShapShupCustomEventTypeTextEditDone,
- ShapShupCustomEventTypePopupClosed,
- ShapShupCustomEventTypeLoadFile,
- ShapShupCustomEventTypeExitApp,
- } ShapshupCustomEvent;
|