49af516ec7
* nfc: remove mifare read debug view and scene * nfc: change mifare ultralight data structure * mifare_ultralight: add more commands * nfc: add emulate mifare ul scene * nfc: rework data structures, remove debug scenes and views * nfc: add read emv scenes * nfc: mifare emulation wip * nfc cli: increase detecting time * nfc: save nfc files with new format * nfc: store Mifare Ultralight * nfc: start loading mifare ultralight * nfc: add delete scenes * nfc: add edit UID and name * nfc: finish parsing uid and mifare ul data * nfc: delete success fix * gui_widget: introduce GuiWidget * gui_widget: add string element * gui_widget: add button element * gui_widget: move free elements into gui_widget * nfc: rework info scene with GuiWidget * nfc: rework device info scene * nfc: rework delete scene gui * nfc: add compatible script support * nfc: rework emv reading scenes * nfc: rework bank card save * nfc: add bank card custom view * gui_widget: add icon element * nfc: add icon to bank card * nfc: start worker after switching view Co-authored-by: あく <alleteam@gmail.com>
85 lines
2.6 KiB
C
85 lines
2.6 KiB
C
#include "gui_element_i.h"
|
|
#include "gui_element_button.h"
|
|
#include "gui_widget.h"
|
|
#include <gui/elements.h>
|
|
#include <m-string.h>
|
|
|
|
typedef struct {
|
|
GuiButtonType button_type;
|
|
string_t text;
|
|
ButtonCallback callback;
|
|
void* context;
|
|
} GuiButtonModel;
|
|
|
|
static void gui_button_draw(Canvas* canvas, GuiElement* element) {
|
|
furi_assert(canvas);
|
|
furi_assert(element);
|
|
GuiButtonModel* model = element->model;
|
|
|
|
canvas_set_color(canvas, ColorBlack);
|
|
canvas_set_font(canvas, FontSecondary);
|
|
|
|
if(model->button_type == GuiButtonTypeLeft) {
|
|
elements_button_left(canvas, string_get_cstr(model->text));
|
|
} else if(model->button_type == GuiButtonTypeRight) {
|
|
elements_button_right(canvas, string_get_cstr(model->text));
|
|
} else if(model->button_type == GuiButtonTypeCenter) {
|
|
elements_button_center(canvas, string_get_cstr(model->text));
|
|
}
|
|
}
|
|
|
|
static bool gui_button_input(InputEvent* event, GuiElement* element) {
|
|
GuiButtonModel* model = element->model;
|
|
bool consumed = false;
|
|
|
|
if((event->type == InputTypeShort) && model->callback) {
|
|
if((model->button_type == GuiButtonTypeLeft) && (event->key == InputKeyLeft)) {
|
|
model->callback(model->button_type, model->context);
|
|
consumed = true;
|
|
} else if((model->button_type == GuiButtonTypeRight) && (event->key == InputKeyRight)) {
|
|
model->callback(model->button_type, model->context);
|
|
consumed = true;
|
|
} else if((model->button_type == GuiButtonTypeCenter) && (event->key == InputKeyOk)) {
|
|
model->callback(model->button_type, model->context);
|
|
consumed = true;
|
|
}
|
|
}
|
|
|
|
return consumed;
|
|
}
|
|
|
|
static void gui_button_free(GuiElement* gui_button) {
|
|
furi_assert(gui_button);
|
|
|
|
GuiButtonModel* model = gui_button->model;
|
|
if(gui_button->parent != NULL) {
|
|
// TODO deattach element
|
|
}
|
|
string_clear(model->text);
|
|
free(gui_button->model);
|
|
free(gui_button);
|
|
}
|
|
|
|
GuiElement* gui_button_create(
|
|
GuiButtonType button_type,
|
|
const char* text,
|
|
ButtonCallback callback,
|
|
void* context) {
|
|
// Allocate and init model
|
|
GuiButtonModel* model = furi_alloc(sizeof(GuiButtonModel));
|
|
model->button_type = button_type;
|
|
model->callback = callback;
|
|
model->context = context;
|
|
string_init_set_str(model->text, text);
|
|
|
|
// Allocate and init Element
|
|
GuiElement* gui_button = furi_alloc(sizeof(GuiElement));
|
|
gui_button->parent = NULL;
|
|
gui_button->input = gui_button_input;
|
|
gui_button->draw = gui_button_draw;
|
|
gui_button->free = gui_button_free;
|
|
gui_button->model = model;
|
|
|
|
return gui_button;
|
|
}
|