mirror of
https://codeberg.org/mclemens/ubitxv6.git
synced 2024-11-04 16:37:21 -05:00
21 lines
513 B
C
21 lines
513 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
enum ButtonStatus_e : uint8_t {
|
|
Stateless,
|
|
Inactive,
|
|
Active
|
|
};
|
|
|
|
struct Button {
|
|
int16_t x, y, w, h;
|
|
const char* text;//nullptr if text_override should be used
|
|
void (*text_override)(char* text_out, const uint16_t max_text_size);//nullptr if text should be used
|
|
ButtonStatus_e (*status)();//Used for coloring and morse menu
|
|
void (*on_select)();//Action to take when selected
|
|
char morse;
|
|
};
|
|
|
|
void extractAndDrawButton(Button* button_out, const Button* button_P);
|