4bf29827f8
* Quicksave 1 * Header stage complete * Source stage complete * Lint & merge fixes * Includes * Documentation step 1 * FBT: output free size considering BT STACK * Documentation step 2 * py lint * Fix music player plugin * unit test stage 1: string allocator, mem, getters, setters, appends, compare, search. * unit test: string equality * unit test: string replace * unit test: string start_with, end_with * unit test: string trim * unit test: utf-8 * Rename * Revert fw_size changes * Simplify CLI backspace handling * Simplify CLI character insert * Merge fixes * Furi: correct filenaming and spelling * Bt: remove furi string include Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
66 lines
1.6 KiB
C
66 lines
1.6 KiB
C
#include "widget_element_i.h"
|
|
|
|
typedef struct {
|
|
uint8_t x;
|
|
uint8_t y;
|
|
Align horizontal;
|
|
Align vertical;
|
|
Font font;
|
|
FuriString* text;
|
|
} GuiStringModel;
|
|
|
|
static void gui_string_draw(Canvas* canvas, WidgetElement* element) {
|
|
furi_assert(canvas);
|
|
furi_assert(element);
|
|
GuiStringModel* model = element->model;
|
|
|
|
if(furi_string_size(model->text)) {
|
|
canvas_set_font(canvas, model->font);
|
|
canvas_draw_str_aligned(
|
|
canvas,
|
|
model->x,
|
|
model->y,
|
|
model->horizontal,
|
|
model->vertical,
|
|
furi_string_get_cstr(model->text));
|
|
}
|
|
}
|
|
|
|
static void gui_string_free(WidgetElement* gui_string) {
|
|
furi_assert(gui_string);
|
|
|
|
GuiStringModel* model = gui_string->model;
|
|
furi_string_free(model->text);
|
|
free(gui_string->model);
|
|
free(gui_string);
|
|
}
|
|
|
|
WidgetElement* widget_element_string_create(
|
|
uint8_t x,
|
|
uint8_t y,
|
|
Align horizontal,
|
|
Align vertical,
|
|
Font font,
|
|
const char* text) {
|
|
furi_assert(text);
|
|
|
|
// Allocate and init model
|
|
GuiStringModel* model = malloc(sizeof(GuiStringModel));
|
|
model->x = x;
|
|
model->y = y;
|
|
model->horizontal = horizontal;
|
|
model->vertical = vertical;
|
|
model->font = font;
|
|
model->text = furi_string_alloc_set(text);
|
|
|
|
// Allocate and init Element
|
|
WidgetElement* gui_string = malloc(sizeof(WidgetElement));
|
|
gui_string->parent = NULL;
|
|
gui_string->input = NULL;
|
|
gui_string->draw = gui_string_draw;
|
|
gui_string->free = gui_string_free;
|
|
gui_string->model = model;
|
|
|
|
return gui_string;
|
|
}
|