mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-20 04:54:45 -07:00
Rename plugins to external
This commit is contained in:
114
applications/external/totp/ui/ui_controls.c
vendored
Normal file
114
applications/external/totp/ui/ui_controls.c
vendored
Normal file
@@ -0,0 +1,114 @@
|
||||
#include "ui_controls.h"
|
||||
#include <totp_icons.h>
|
||||
#include "constants.h"
|
||||
|
||||
#define TEXT_BOX_HEIGHT 13
|
||||
#define TEXT_BOX_MARGIN 4
|
||||
|
||||
void ui_control_text_box_render(
|
||||
Canvas* const canvas,
|
||||
int16_t y,
|
||||
const char* text,
|
||||
bool is_selected) {
|
||||
if(y < -TEXT_BOX_HEIGHT) {
|
||||
return;
|
||||
}
|
||||
|
||||
if(is_selected) {
|
||||
canvas_draw_rframe(
|
||||
canvas,
|
||||
TEXT_BOX_MARGIN,
|
||||
TEXT_BOX_MARGIN + y,
|
||||
SCREEN_WIDTH - TEXT_BOX_MARGIN - TEXT_BOX_MARGIN,
|
||||
TEXT_BOX_HEIGHT,
|
||||
0);
|
||||
canvas_draw_rframe(
|
||||
canvas,
|
||||
TEXT_BOX_MARGIN - 1,
|
||||
TEXT_BOX_MARGIN + y - 1,
|
||||
SCREEN_WIDTH - TEXT_BOX_MARGIN - TEXT_BOX_MARGIN + 2,
|
||||
TEXT_BOX_HEIGHT + 2,
|
||||
1);
|
||||
} else {
|
||||
canvas_draw_rframe(
|
||||
canvas,
|
||||
TEXT_BOX_MARGIN,
|
||||
TEXT_BOX_MARGIN + y,
|
||||
SCREEN_WIDTH - TEXT_BOX_MARGIN - TEXT_BOX_MARGIN,
|
||||
TEXT_BOX_HEIGHT,
|
||||
1);
|
||||
}
|
||||
|
||||
canvas_draw_str_aligned(
|
||||
canvas, TEXT_BOX_MARGIN + 2, TEXT_BOX_MARGIN + 3 + y, AlignLeft, AlignTop, text);
|
||||
}
|
||||
|
||||
void ui_control_select_render(
|
||||
Canvas* const canvas,
|
||||
int16_t x,
|
||||
int16_t y,
|
||||
uint8_t width,
|
||||
const char* text,
|
||||
bool is_selected) {
|
||||
if(y < -TEXT_BOX_HEIGHT) {
|
||||
return;
|
||||
}
|
||||
|
||||
if(is_selected) {
|
||||
canvas_draw_rframe(
|
||||
canvas,
|
||||
x + TEXT_BOX_MARGIN,
|
||||
TEXT_BOX_MARGIN + y,
|
||||
width - TEXT_BOX_MARGIN - TEXT_BOX_MARGIN,
|
||||
TEXT_BOX_HEIGHT,
|
||||
0);
|
||||
canvas_draw_rframe(
|
||||
canvas,
|
||||
x + TEXT_BOX_MARGIN - 1,
|
||||
TEXT_BOX_MARGIN + y - 1,
|
||||
width - TEXT_BOX_MARGIN - TEXT_BOX_MARGIN + 2,
|
||||
TEXT_BOX_HEIGHT + 2,
|
||||
1);
|
||||
} else {
|
||||
canvas_draw_rframe(
|
||||
canvas,
|
||||
x + TEXT_BOX_MARGIN,
|
||||
TEXT_BOX_MARGIN + y,
|
||||
width - TEXT_BOX_MARGIN - TEXT_BOX_MARGIN,
|
||||
TEXT_BOX_HEIGHT,
|
||||
1);
|
||||
}
|
||||
|
||||
canvas_draw_str_aligned(
|
||||
canvas, x + (width >> 1), TEXT_BOX_MARGIN + 3 + y, AlignCenter, AlignTop, text);
|
||||
canvas_draw_icon(
|
||||
canvas, x + TEXT_BOX_MARGIN + 2, TEXT_BOX_MARGIN + 2 + y, &I_totp_arrow_left_8x9);
|
||||
canvas_draw_icon(
|
||||
canvas, x + width - TEXT_BOX_MARGIN - 10, TEXT_BOX_MARGIN + 2 + y, &I_totp_arrow_right_8x9);
|
||||
}
|
||||
|
||||
void ui_control_button_render(
|
||||
Canvas* const canvas,
|
||||
int16_t x,
|
||||
int16_t y,
|
||||
uint8_t width,
|
||||
uint8_t height,
|
||||
const char* text,
|
||||
bool is_selected) {
|
||||
if(y < -height) {
|
||||
return;
|
||||
}
|
||||
|
||||
if(is_selected) {
|
||||
canvas_draw_rbox(canvas, x, y, width, height, 1);
|
||||
canvas_set_color(canvas, ColorWhite);
|
||||
} else {
|
||||
canvas_draw_rframe(canvas, x, y, width, height, 1);
|
||||
}
|
||||
|
||||
canvas_draw_str_aligned(
|
||||
canvas, x + (width >> 1), y + (height >> 1) + 1, AlignCenter, AlignCenter, text);
|
||||
if(is_selected) {
|
||||
canvas_set_color(canvas, ColorBlack);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user