b9a766d909
* Added support for running applications from SD card (FAPs - Flipper Application Packages) * Added plugin_dist target for fbt to build FAPs * All apps of type FlipperAppType.EXTERNAL and FlipperAppType.PLUGIN are built as FAPs by default * Updated VSCode configuration for new fbt features - re-deploy stock configuration to use them * Added debugging support for FAPs with fbt debug & VSCode * Added public firmware API with automated versioning Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: SG <who.just.the.doctor@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
49 lines
1.2 KiB
C
49 lines
1.2 KiB
C
#include "widget_element_i.h"
|
|
|
|
typedef struct {
|
|
uint8_t x;
|
|
uint8_t y;
|
|
uint8_t width;
|
|
uint8_t height;
|
|
uint8_t radius;
|
|
} GuiFrameModel;
|
|
|
|
static void gui_frame_draw(Canvas* canvas, WidgetElement* element) {
|
|
furi_assert(canvas);
|
|
furi_assert(element);
|
|
GuiFrameModel* model = element->model;
|
|
canvas_draw_rframe(canvas, model->x, model->y, model->width, model->height, model->radius);
|
|
}
|
|
|
|
static void gui_frame_free(WidgetElement* gui_frame) {
|
|
furi_assert(gui_frame);
|
|
|
|
free(gui_frame->model);
|
|
free(gui_frame);
|
|
}
|
|
|
|
WidgetElement* widget_element_frame_create(
|
|
uint8_t x,
|
|
uint8_t y,
|
|
uint8_t width,
|
|
uint8_t height,
|
|
uint8_t radius) {
|
|
// Allocate and init model
|
|
GuiFrameModel* model = malloc(sizeof(GuiFrameModel));
|
|
model->x = x;
|
|
model->y = y;
|
|
model->width = width;
|
|
model->height = height;
|
|
model->radius = radius;
|
|
|
|
// Allocate and init Element
|
|
WidgetElement* gui_frame = malloc(sizeof(WidgetElement));
|
|
gui_frame->parent = NULL;
|
|
gui_frame->input = NULL;
|
|
gui_frame->draw = gui_frame_draw;
|
|
gui_frame->free = gui_frame_free;
|
|
gui_frame->model = model;
|
|
|
|
return gui_frame;
|
|
}
|