#include "pico/stdlib.h"
#include "framebuffer.h"
#include <vector>
#include <map>
#include <string>
Go to the source code of this file.
|
| enum class | ControlEvent {
NOOP
, PUSH
, DOUBLE_PUSH
, LONG_PUSH
,
RELEASED_AFTER_LONG_TIME
, RELEASED_AFTER_SHORT_TIME
, INCREMENT
, DECREMENT
,
TIME_OUT
} |
| | The list of predefined event that a Controller can send to the controlled object, leaving it the responsibility to act as required by its specification. More...
|
| |
| enum class | ControlledObjectStatus { IS_WAITING
, HAS_FOCUS
, IS_ACTIVE
} |
| | The list of status that a model can have. More...
|
| |
- Author
- xiansnn (xians.nosp@m.nn@h.nosp@m.otmai.nosp@m.l.co.nosp@m.m)
- Version
- 0.1
- Date
- 2024-05-30
- Copyright
- Copyright (c) 2024
Definition in file ui_core.h.
◆ ControlEvent
The list of predefined event that a Controller can send to the controlled object, leaving it the responsibility to act as required by its specification.
Definition at line 25 of file ui_core.h.
◆ ControlledObjectStatus
The list of status that a model can have.
Definition at line 42 of file ui_core.h.