mirror of
https://github.com/D4C1-Labs/Flipper-ARF.git
synced 2026-04-27 17:55:10 +00:00
25 lines
372 B
C
25 lines
372 B
C
/**
|
|
* @file widget_element_i.h
|
|
* GUI: internal Widget Element API
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <input/input.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef enum {
|
|
GuiButtonTypeLeft,
|
|
GuiButtonTypeCenter,
|
|
GuiButtonTypeRight,
|
|
} GuiButtonType;
|
|
|
|
typedef void (*ButtonCallback)(GuiButtonType result, InputType type, void* context);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|