| 12345678910111213141516171819202122 |
- #pragma once
- #include "flipper.h"
- typedef enum { SR_Scene_Items, SR_Scene_count } appScenes;
- typedef enum {
- SR_ButtonMenu, // used on selected device, to show buttons
- SR_Dialog,
- SR_FileBrowser, // to find the recorded Sub-GHz data!
- SR_TextInput
- } appView;
- typedef enum { Event_DeviceSelected, Event_ButtonPressed } AppCustomEvents;
- extern void (*const app_on_enter_handlers[])(void*);
- extern bool (*const app_on_event_handlers[])(void*, SceneManagerEvent);
- extern void (*const app_on_exit_handlers[])(void*);
- extern const SceneManagerHandlers app_scene_handlers;
- extern bool app_scene_custom_callback(void* context, uint32_t custom_event_id);
- extern bool app_back_event_callback(void* context);
|