Flipper Zero Firmware
Loading...
Searching...
No Matches
widget_element.h
1
6#pragma once
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
12typedef enum {
13 GuiButtonTypeLeft,
14 GuiButtonTypeCenter,
15 GuiButtonTypeRight,
16} GuiButtonType;
17
18typedef void (*ButtonCallback)(GuiButtonType result, InputType type, void* context);
19
20#ifdef __cplusplus
21}
22#endif
InputType
Input Types Some of them are physical events and some logical.
Definition input.h:21