mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2025-12-13 05:19:50 +04:00
22 lines
345 B
C
22 lines
345 B
C
|
|
/**
|
||
|
|
* @file widget_element_i.h
|
||
|
|
* GUI: internal Widget Element API
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
typedef enum {
|
||
|
|
GuiButtonTypeLeft,
|
||
|
|
GuiButtonTypeCenter,
|
||
|
|
GuiButtonTypeRight,
|
||
|
|
} GuiButtonType;
|
||
|
|
|
||
|
|
typedef void (*ButtonCallback)(GuiButtonType result, InputType type, void* context);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|