Files
Momentum-Firmware/applications/services/gui/modules/widget_elements/widget_element.h
2024-07-15 20:02:45 +03:00

23 lines
346 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