8cfd0eab9e
* rfal: add state changed callback * furi_hal_nfc: add NFC-A emulation API * nfc: add emulation logger, refactor scenes * elements: fix text_box element * gui: fix text box module * nfc: remove unnecessary buffers * nfc: introduce emulation callback concept * nfc: format sources * bt settings: fix incorrect scene switch * bt settings: format sources * Debug: fix x2d import for python 3 * Gui: rename method name widget_clear to widget_reset * nfc: add nfca emulation handler * nfc: add global custom events enum * nfc: UID emulation Data -> Log * furi_hal_nfc: fix incorrect timings * u2f, badusb: widget_clear() -> widget_reset() Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
150 lines
3.6 KiB
C
Executable File
150 lines
3.6 KiB
C
Executable File
/**
|
|
* @file widget.h
|
|
* GUI: Widget view module API
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "widget_elements/widget_element_i.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct Widget Widget;
|
|
typedef struct WidgetElement WidgetElement;
|
|
|
|
/** Allocate Widget that holds Widget Elements
|
|
*
|
|
* @return Widget instance
|
|
*/
|
|
Widget* widget_alloc();
|
|
|
|
/** Free Widget
|
|
* @note this function free allocated Widget Elements
|
|
*
|
|
* @param widget Widget instance
|
|
*/
|
|
void widget_free(Widget* widget);
|
|
|
|
/** Reset Widget
|
|
*
|
|
* @param widget Widget instance
|
|
*/
|
|
void widget_reset(Widget* widget);
|
|
|
|
/** Get Widget view
|
|
*
|
|
* @param widget Widget instance
|
|
*
|
|
* @return View instance
|
|
*/
|
|
View* widget_get_view(Widget* widget);
|
|
|
|
/** Add Multi String Element
|
|
*
|
|
* @param widget Widget instance
|
|
* @param x x coordinate
|
|
* @param y y coordinate
|
|
* @param horizontal Align instance
|
|
* @param vertical Align instance
|
|
* @param font Font instance
|
|
* @param[in] text The text
|
|
*/
|
|
void widget_add_string_multiline_element(
|
|
Widget* widget,
|
|
uint8_t x,
|
|
uint8_t y,
|
|
Align horizontal,
|
|
Align vertical,
|
|
Font font,
|
|
const char* text);
|
|
|
|
/** Add String Element
|
|
*
|
|
* @param widget Widget instance
|
|
* @param x x coordinate
|
|
* @param y y coordinate
|
|
* @param horizontal Align instance
|
|
* @param vertical Align instance
|
|
* @param font Font instance
|
|
* @param[in] text The text
|
|
*/
|
|
void widget_add_string_element(
|
|
Widget* widget,
|
|
uint8_t x,
|
|
uint8_t y,
|
|
Align horizontal,
|
|
Align vertical,
|
|
Font font,
|
|
const char* text);
|
|
|
|
/** Add Text Box Element
|
|
*
|
|
* @param widget Widget instance
|
|
* @param x x coordinate
|
|
* @param y y coordinate
|
|
* @param width width to fit text
|
|
* @param height height to fit text
|
|
* @param horizontal Align instance
|
|
* @param vertical Align instance
|
|
* @param[in] text Formatted text. The following formats are available:
|
|
* "\e#Bold text\e#" - bold font is used
|
|
* "\e*Monospaced text\e*" - monospaced font is used
|
|
* "\e#Inversed text\e#" - white text on black background
|
|
*/
|
|
void widget_add_text_box_element(
|
|
Widget* widget,
|
|
uint8_t x,
|
|
uint8_t y,
|
|
uint8_t width,
|
|
uint8_t height,
|
|
Align horizontal,
|
|
Align vertical,
|
|
const char* text);
|
|
|
|
/** Add Button Element
|
|
*
|
|
* @param widget Widget instance
|
|
* @param button_type GuiButtonType instance
|
|
* @param text text on allocated button
|
|
* @param callback ButtonCallback instance
|
|
* @param context pointer to context
|
|
*/
|
|
void widget_add_button_element(
|
|
Widget* widget,
|
|
GuiButtonType button_type,
|
|
const char* text,
|
|
ButtonCallback callback,
|
|
void* context);
|
|
|
|
/** Add Icon Element
|
|
*
|
|
* @param widget Widget instance
|
|
* @param x top left x coordinate
|
|
* @param y top left y coordinate
|
|
* @param icon Icon instance
|
|
*/
|
|
void widget_add_icon_element(Widget* widget, uint8_t x, uint8_t y, const Icon* icon);
|
|
|
|
/** Add Frame Element
|
|
*
|
|
* @param widget Widget instance
|
|
* @param x top left x coordinate
|
|
* @param y top left y coordinate
|
|
* @param width frame width
|
|
* @param height frame height
|
|
* @param radius frame radius
|
|
*/
|
|
void widget_add_frame_element(
|
|
Widget* widget,
|
|
uint8_t x,
|
|
uint8_t y,
|
|
uint8_t width,
|
|
uint8_t height,
|
|
uint8_t radius);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|