* 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>
		
			
				
	
	
		
			73 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
#include "gui_element_i.h"
 | 
						|
#include "gui_element_string.h"
 | 
						|
#include "gui_widget.h"
 | 
						|
 | 
						|
#include <m-string.h>
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    uint8_t x;
 | 
						|
    uint8_t y;
 | 
						|
    Align horizontal;
 | 
						|
    Align vertical;
 | 
						|
    Font font;
 | 
						|
    string_t text;
 | 
						|
} GuiStringModel;
 | 
						|
 | 
						|
static void gui_string_draw(Canvas* canvas, GuiElement* element) {
 | 
						|
    furi_assert(canvas);
 | 
						|
    furi_assert(element);
 | 
						|
    GuiStringModel* model = element->model;
 | 
						|
 | 
						|
    if(string_size(model->text)) {
 | 
						|
        canvas_set_font(canvas, model->font);
 | 
						|
        canvas_draw_str_aligned(
 | 
						|
            canvas,
 | 
						|
            model->x,
 | 
						|
            model->y,
 | 
						|
            model->horizontal,
 | 
						|
            model->vertical,
 | 
						|
            string_get_cstr(model->text));
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
static void gui_string_free(GuiElement* gui_string) {
 | 
						|
    furi_assert(gui_string);
 | 
						|
 | 
						|
    GuiStringModel* model = gui_string->model;
 | 
						|
    if(gui_string->parent != NULL) {
 | 
						|
        // TODO deattach element
 | 
						|
    }
 | 
						|
    string_clear(model->text);
 | 
						|
    free(gui_string->model);
 | 
						|
    free(gui_string);
 | 
						|
}
 | 
						|
 | 
						|
GuiElement* gui_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 = furi_alloc(sizeof(GuiStringModel));
 | 
						|
    model->x = x;
 | 
						|
    model->y = y;
 | 
						|
    model->horizontal = horizontal;
 | 
						|
    model->vertical = vertical;
 | 
						|
    model->font = font;
 | 
						|
    string_init_set_str(model->text, text);
 | 
						|
 | 
						|
    // Allocate and init Element
 | 
						|
    GuiElement* gui_string = furi_alloc(sizeof(GuiElement));
 | 
						|
    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;
 | 
						|
}
 |