mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-17 11:58:13 +00:00
4e11735d22
use display.bar where needed to prefill the areas
49 lines
1.3 KiB
Python
49 lines
1.3 KiB
Python
from trezor import ui, utils
|
|
|
|
if False:
|
|
from typing import Any, Optional
|
|
|
|
|
|
def pin_to_int(pin: str) -> int:
|
|
return int("1" + pin)
|
|
|
|
|
|
_previous_progress = None # type: Optional[int]
|
|
_previous_seconds = None # type: Optional[int]
|
|
keepalive_callback = None # type: Any
|
|
|
|
|
|
def show_pin_timeout(seconds: int, progress: int, message: str) -> bool:
|
|
global _previous_progress
|
|
global _previous_seconds
|
|
|
|
if callable(keepalive_callback):
|
|
keepalive_callback()
|
|
|
|
if progress == 0:
|
|
if progress != _previous_progress:
|
|
# avoid overdraw in case of repeated progress calls
|
|
ui.display.clear()
|
|
_previous_seconds = None
|
|
ui.display.text_center(ui.WIDTH // 2, 37, message, ui.BOLD, ui.FG, ui.BG)
|
|
|
|
if not utils.DISABLE_ANIMATION:
|
|
ui.display.loader(progress, False, 0, ui.FG, ui.BG)
|
|
|
|
if seconds != _previous_seconds:
|
|
if seconds == 0:
|
|
remaining = "Done"
|
|
elif seconds == 1:
|
|
remaining = "1 second left"
|
|
else:
|
|
remaining = "%d seconds left" % seconds
|
|
ui.display.bar(0, ui.HEIGHT - 42, ui.WIDTH, 25, ui.BG)
|
|
ui.display.text_center(
|
|
ui.WIDTH // 2, ui.HEIGHT - 22, remaining, ui.BOLD, ui.FG, ui.BG
|
|
)
|
|
_previous_seconds = seconds
|
|
|
|
ui.refresh()
|
|
_previous_progress = progress
|
|
return False
|