mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 03:30:02 +00:00
216 lines
6.5 KiB
Python
216 lines
6.5 KiB
Python
from typing import *
|
|
|
|
|
|
# extmod/modtrezorui/modtrezorui-display.h
|
|
class Display:
|
|
"""
|
|
Provide access to device display.
|
|
"""
|
|
WIDTH: int # display width in pixels
|
|
HEIGHT: int # display height in pixels
|
|
FONT_MONO: int # id of monospace font
|
|
FONT_NORMAL: int # id of normal-width font
|
|
FONT_BOLD: int # id of bold-width font
|
|
TOIF_FULL_COLOR_BE: int # full color big endian TOI image
|
|
TOIF_FULL_COLOR_LE: int # full color little endian TOI image
|
|
TOIF_GRAYSCALE_EH: int # grayscale even high TOI image
|
|
TOIF_FULL_COLOR_BE: int # grayscale odd high TOI image
|
|
|
|
def __init__(self) -> None:
|
|
"""
|
|
Initialize the display.
|
|
"""
|
|
|
|
def clear(self) -> None:
|
|
"""
|
|
Clear display with black color.
|
|
"""
|
|
|
|
def refresh(self) -> None:
|
|
"""
|
|
Refresh display (update screen).
|
|
"""
|
|
|
|
def bar(self, x: int, y: int, w: int, h: int, color: int) -> None:
|
|
"""
|
|
Renders a bar at position (x,y = upper left corner) with width w and
|
|
height h of color color.
|
|
"""
|
|
|
|
def bar_radius(
|
|
self,
|
|
x: int,
|
|
y: int,
|
|
w: int,
|
|
h: int,
|
|
fgcolor: int,
|
|
bgcolor: int | None = None,
|
|
radius: int | None = None,
|
|
) -> None:
|
|
"""
|
|
Renders a rounded bar at position (x,y = upper left corner) with width w
|
|
and height h of color fgcolor. Background is set to bgcolor and corners
|
|
are drawn with radius radius.
|
|
"""
|
|
|
|
def toif_info(self, image: bytes) -> tuple[int, int, int]:
|
|
"""
|
|
Returns tuple containing TOIF image dimensions: width, height, and
|
|
format Raises an exception for corrupted images.
|
|
"""
|
|
|
|
def image(self, x: int, y: int, image: bytes) -> None:
|
|
"""
|
|
Renders an image at position (x,y).
|
|
The image needs to be in Trezor Optimized Image Format (TOIF) -
|
|
full-color mode.
|
|
"""
|
|
|
|
def avatar(
|
|
self, x: int, y: int, image: bytes, fgcolor: int, bgcolor: int
|
|
) -> None:
|
|
"""
|
|
Renders an avatar at position (x,y).
|
|
The image needs to be in Trezor Optimized Image Format (TOIF) -
|
|
full-color mode. Image needs to be of exactly AVATAR_IMAGE_SIZE x
|
|
AVATAR_IMAGE_SIZE pixels size.
|
|
"""
|
|
|
|
def icon(
|
|
self, x: int, y: int, icon: bytes, fgcolor: int, bgcolor: int
|
|
) -> None:
|
|
"""
|
|
Renders an icon at position (x,y), fgcolor is used as foreground color,
|
|
bgcolor as background. The icon needs to be in Trezor Optimized Image
|
|
Format (TOIF) - gray-scale mode.
|
|
"""
|
|
|
|
def loader(
|
|
self,
|
|
progress: int,
|
|
indeterminate: bool,
|
|
yoffset: int,
|
|
fgcolor: int,
|
|
bgcolor: int,
|
|
icon: bytes | None = None,
|
|
iconfgcolor: int | None = None,
|
|
) -> None:
|
|
"""
|
|
Renders a rotating loader graphic.
|
|
Progress determines its position (0-1000), fgcolor is used as foreground
|
|
color, bgcolor as background. When icon and iconfgcolor are provided, an
|
|
icon is drawn in the middle using the color specified in iconfgcolor.
|
|
Icon needs to be of exactly LOADER_ICON_SIZE x LOADER_ICON_SIZE pixels
|
|
size.
|
|
"""
|
|
|
|
def print(self, text: str) -> None:
|
|
"""
|
|
Renders text using 5x8 bitmap font (using special text mode).
|
|
"""
|
|
|
|
def text(
|
|
self,
|
|
x: int,
|
|
y: int,
|
|
text: str,
|
|
font: int,
|
|
fgcolor: int,
|
|
bgcolor: int,
|
|
text_offset: int | None = None,
|
|
text_len: int | None = None,
|
|
) -> None:
|
|
"""
|
|
Renders left-aligned text at position (x,y) where x is left position and
|
|
y is baseline. Font font is used for rendering, fgcolor is used as
|
|
foreground color, bgcolor as background.
|
|
Arguments text_offset and text_len can be used to render a substring of
|
|
the text.
|
|
"""
|
|
|
|
def text_center(
|
|
self,
|
|
x: int,
|
|
y: int,
|
|
text: str,
|
|
font: int,
|
|
fgcolor: int,
|
|
bgcolor: int,
|
|
) -> None:
|
|
"""
|
|
Renders text centered at position (x,y) where x is text center and y is
|
|
baseline. Font font is used for rendering, fgcolor is used as foreground
|
|
color, bgcolor as background.
|
|
"""
|
|
|
|
def text_right(
|
|
self,
|
|
x: int,
|
|
y: int,
|
|
text: str,
|
|
font: int,
|
|
fgcolor: int,
|
|
bgcolor: int,
|
|
) -> None:
|
|
"""
|
|
Renders right-aligned text at position (x,y) where x is right position
|
|
and y is baseline. Font font is used for rendering, fgcolor is used as
|
|
foreground color, bgcolor as background.
|
|
"""
|
|
|
|
def text_width(
|
|
self,
|
|
text: str,
|
|
font: int,
|
|
text_offset: int | None = None,
|
|
text_len: int | None = None,
|
|
) -> int:
|
|
"""
|
|
Returns a width of text in pixels. Font font is used for rendering.
|
|
Arguments text_offset and text_len can be used to render a substring of
|
|
the text.
|
|
"""
|
|
|
|
def text_split(self, text: str, font: int, requested_width: int) -> int:
|
|
"""
|
|
Returns how many characters of the string can be used before exceeding
|
|
the requested width. Tries to avoid breaking words if possible. Font
|
|
font is used for rendering.
|
|
"""
|
|
|
|
def qrcode(self, x: int, y: int, data: str, scale: int) -> None:
|
|
"""
|
|
Renders data encoded as a QR code centered at position (x,y).
|
|
Scale determines a zoom factor.
|
|
"""
|
|
|
|
def orientation(self, degrees: int | None = None) -> int:
|
|
"""
|
|
Sets display orientation to 0, 90, 180 or 270 degrees.
|
|
Everything needs to be redrawn again when this function is used.
|
|
Call without the degrees parameter to just perform the read of the
|
|
value.
|
|
"""
|
|
|
|
def backlight(self, val: int | None = None) -> int:
|
|
"""
|
|
Sets backlight intensity to the value specified in val.
|
|
Call without the val parameter to just perform the read of the value.
|
|
"""
|
|
|
|
def offset(self, xy: tuple[int, int] | None = None) -> tuple[int, int]:
|
|
"""
|
|
Sets offset (x, y) for all subsequent drawing calls.
|
|
Call without the xy parameter to just perform the read of the value.
|
|
"""
|
|
|
|
def save(self, prefix: str) -> None:
|
|
"""
|
|
Saves current display contents to PNG file with given prefix.
|
|
"""
|
|
|
|
def clear_save(self) -> None:
|
|
"""
|
|
Clears buffers in display saving.
|
|
"""
|