mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-09 05:49:09 -07:00
140 lines
3.7 KiB
C
140 lines
3.7 KiB
C
#include "ui_controls.h"
|
|
#include "totp_icons.h"
|
|
#include <assets_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);
|
|
}
|
|
}
|
|
|
|
void ui_control_vscroll_render(
|
|
Canvas* const canvas,
|
|
uint8_t x,
|
|
uint8_t y,
|
|
uint8_t height,
|
|
uint8_t position,
|
|
uint8_t max_position) {
|
|
canvas_draw_line(canvas, x, y, x, y + height);
|
|
uint8_t block_height = height / MIN(10, max_position);
|
|
uint8_t block_position_y =
|
|
height * ((float)position / (float)max_position) - (block_height >> 1);
|
|
uint8_t block_position_y_abs = y + block_position_y;
|
|
if(block_position_y_abs + block_height > height) {
|
|
block_position_y_abs = height - block_height;
|
|
}
|
|
|
|
canvas_draw_box(
|
|
canvas,
|
|
x - (UI_CONTROL_VSCROLL_WIDTH >> 1),
|
|
block_position_y_abs,
|
|
UI_CONTROL_VSCROLL_WIDTH,
|
|
block_height);
|
|
}
|