mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 10:39:00 +00:00
69 lines
2.2 KiB
C
69 lines
2.2 KiB
C
/*
|
|
* This file is part of the Trezor project, https://trezor.io/
|
|
*
|
|
* Copyright (c) SatoshiLabs
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __BOOTUI_H__
|
|
#define __BOOTUI_H__
|
|
|
|
#include "image.h"
|
|
#include "secbool.h"
|
|
|
|
void ui_screen_boot(const vendor_header* const vhdr,
|
|
const image_header* const hdr);
|
|
void ui_screen_boot_wait(int wait_seconds);
|
|
void ui_screen_boot_click(void);
|
|
|
|
void ui_screen_first(void);
|
|
void ui_screen_second(void);
|
|
void ui_screen_third(void);
|
|
|
|
void ui_screen_info(secbool buttons, const vendor_header* const vhdr,
|
|
const image_header* const hdr);
|
|
void ui_screen_info_fingerprint(const image_header* const hdr);
|
|
|
|
void ui_screen_install_confirm_upgrade(const vendor_header* const vhdr,
|
|
const image_header* const hdr);
|
|
void ui_screen_install_confirm_newvendor_or_downgrade_wipe(
|
|
const vendor_header* const vhdr, const image_header* const hdr,
|
|
secbool downgrade_wipe);
|
|
void ui_screen_install(void);
|
|
void ui_screen_install_progress_erase(int pos, int len);
|
|
void ui_screen_install_progress_upload(int pos);
|
|
|
|
void ui_screen_wipe_confirm(void);
|
|
void ui_screen_wipe(void);
|
|
void ui_screen_wipe_progress(int pos, int len);
|
|
|
|
void ui_screen_done(int restart_seconds, secbool full_redraw);
|
|
|
|
void ui_screen_fail(void);
|
|
|
|
void ui_fadein(void);
|
|
void ui_fadeout(void);
|
|
|
|
// clang-format off
|
|
#define INPUT_CANCEL 0x01 // Cancel button
|
|
#define INPUT_CONFIRM 0x02 // Confirm button
|
|
#define INPUT_LONG_CONFIRM 0x04 // Long Confirm button
|
|
#define INPUT_INFO 0x08 // Info icon
|
|
// clang-format on
|
|
|
|
int ui_user_input(int zones);
|
|
|
|
#endif
|