mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-28 07:47:35 +03:00
2c650b5bc7
* HID: Add confirmation dialogue to the un-pair option * Initial refactor to use SceneManager * Make PVS happy * Fix the exit dialog Co-authored-by: あく <alleteam@gmail.com>
30 lines
859 B
C
30 lines
859 B
C
#pragma once
|
|
|
|
#include <gui/scene_manager.h>
|
|
|
|
// Generate scene id and total number
|
|
#define ADD_SCENE(prefix, name, id) HidScene##id,
|
|
typedef enum {
|
|
#include "hid_scene_config.h"
|
|
HidSceneNum,
|
|
} HidScene;
|
|
#undef ADD_SCENE
|
|
|
|
extern const SceneManagerHandlers hid_scene_handlers;
|
|
|
|
// Generate scene on_enter handlers declaration
|
|
#define ADD_SCENE(prefix, name, id) void prefix##_scene_##name##_on_enter(void*);
|
|
#include "hid_scene_config.h"
|
|
#undef ADD_SCENE
|
|
|
|
// Generate scene on_event handlers declaration
|
|
#define ADD_SCENE(prefix, name, id) \
|
|
bool prefix##_scene_##name##_on_event(void* context, SceneManagerEvent event);
|
|
#include "hid_scene_config.h"
|
|
#undef ADD_SCENE
|
|
|
|
// Generate scene on_exit handlers declaration
|
|
#define ADD_SCENE(prefix, name, id) void prefix##_scene_##name##_on_exit(void* context);
|
|
#include "hid_scene_config.h"
|
|
#undef ADD_SCENE
|