mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-16 09:12:39 +03:00
f4cc9e5de7
if author want their plugin to be removed - create issue, thanks
29 lines
662 B
C++
29 lines
662 B
C++
#pragma once
|
|
#include "generic_element.h"
|
|
|
|
class StringElement : public GenericElement {
|
|
public:
|
|
StringElement();
|
|
~StringElement() final;
|
|
void draw(Canvas* canvas) final;
|
|
bool input(InputEvent* event) final;
|
|
|
|
void set_text(
|
|
const char* text = NULL,
|
|
uint8_t x = 0,
|
|
uint8_t y = 0,
|
|
uint8_t fit_width = 0,
|
|
Align horizontal = AlignLeft,
|
|
Align vertical = AlignTop,
|
|
Font font = FontPrimary);
|
|
|
|
private:
|
|
const char* text = NULL;
|
|
uint8_t x = 0;
|
|
uint8_t y = 0;
|
|
uint8_t fit_width = 0;
|
|
Align horizontal = AlignLeft;
|
|
Align vertical = AlignTop;
|
|
Font font = FontPrimary;
|
|
};
|