You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/core/embed/rust/src/ui/component/connect.rs

95 lines
2.1 KiB

use crate::{
strutil::TString,
ui::{
component::{Component, Event, EventCtx, Never, Pad},
display::{self, Color, Font},
geometry::{Alignment, Offset, Rect},
shape::{self, Renderer},
},
};
pub struct Connect {
fg: Color,
bg: Pad,
message: TString<'static>,
}
impl Connect {
pub fn new<T>(message: T, fg: Color, bg: Color) -> Self
where
T: Into<TString<'static>>,
{
let mut instance = Self {
fg,
bg: Pad::with_background(bg),
message: message.into(),
};
instance.bg.clear();
instance
}
}
impl Component for Connect {
type Msg = Never;
fn place(&mut self, bounds: Rect) -> Rect {
self.bg.place(bounds);
bounds
}
fn event(&mut self, _ctx: &mut EventCtx, _event: Event) -> Option<Self::Msg> {
None
}
fn paint(&mut self) {
let font = Font::NORMAL;
self.bg.paint();
self.message.map(|t| {
display::text_center(
self.bg.area.center() + Offset::y(font.text_height() / 2),
t,
font,
self.fg,
self.bg.color,
)
});
}
fn render<'s>(&'s self, target: &mut impl Renderer<'s>) {
let font = Font::NORMAL;
self.bg.render(target);
self.message.map(|t| {
shape::Text::new(self.bg.area.center() + Offset::y(font.text_height() / 2), t)
.with_fg(self.fg)
.with_font(font)
.with_align(Alignment::Center)
.render(target);
});
}
}
#[cfg(feature = "micropython")]
mod micropython {
use crate::{error::Error, micropython::obj::Obj, ui::layout::obj::ComponentMsgObj};
use super::Connect;
impl ComponentMsgObj for Connect {
fn msg_try_into_obj(&self, _msg: Self::Msg) -> Result<Obj, Error> {
unreachable!()
}
}
}
#[cfg(feature = "ui_debug")]
impl crate::trace::Trace for Connect {
fn trace(&self, t: &mut dyn crate::trace::Tracer) {
t.component("Connect");
t.string("message", self.message);
}
}