2014-04-29 12:26:51 +00:00
|
|
|
/*
|
2019-06-17 18:27:55 +00:00
|
|
|
* This file is part of the Trezor project, https://trezor.io/
|
2014-04-29 12:26:51 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Pavol Rusnak <stick@satoshilabs.com>
|
|
|
|
*
|
|
|
|
* This library is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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 Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LAYOUT2_H__
|
|
|
|
#define __LAYOUT2_H__
|
|
|
|
|
2017-05-30 16:41:02 +00:00
|
|
|
#include "bignum.h"
|
2019-03-29 16:10:31 +00:00
|
|
|
#include "bitmaps.h"
|
|
|
|
#include "coins.h"
|
|
|
|
#include "layout.h"
|
2017-11-03 17:54:02 +00:00
|
|
|
#include "trezor.h"
|
2014-04-29 12:26:51 +00:00
|
|
|
|
2018-07-10 14:58:00 +00:00
|
|
|
#include "messages-bitcoin.pb.h"
|
|
|
|
#include "messages-crypto.pb.h"
|
2021-05-21 17:55:21 +00:00
|
|
|
#include "messages-management.pb.h"
|
2018-07-10 14:58:00 +00:00
|
|
|
#include "messages-nem.pb.h"
|
|
|
|
|
2016-08-26 16:50:10 +00:00
|
|
|
extern void *layoutLast;
|
|
|
|
|
2017-11-03 17:56:55 +00:00
|
|
|
#if DEBUG_LINK
|
|
|
|
#define layoutSwipe oledClear
|
|
|
|
#else
|
|
|
|
#define layoutSwipe oledSwipeLeft
|
|
|
|
#endif
|
2017-11-03 17:54:02 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
void layoutDialogSwipe(const BITMAP *icon, const char *btnNo,
|
|
|
|
const char *btnYes, const char *desc, const char *line1,
|
|
|
|
const char *line2, const char *line3, const char *line4,
|
|
|
|
const char *line5, const char *line6);
|
2021-11-09 09:06:56 +00:00
|
|
|
void layoutDialogSwipeEx(const BITMAP *icon, const char *btnNo,
|
|
|
|
const char *btnYes, const char *desc,
|
|
|
|
const char *line1, const char *line2,
|
|
|
|
const char *line3, const char *line4,
|
|
|
|
const char *line5, const char *line6, uint8_t font);
|
2022-09-26 13:26:48 +00:00
|
|
|
void layoutDialogSwipeWrapping(const BITMAP *icon, const char *btnNo,
|
|
|
|
const char *btnYes, const char *heading,
|
|
|
|
const char *description, const char *wrap_text);
|
2014-12-21 17:58:56 +00:00
|
|
|
void layoutProgressSwipe(const char *desc, int permil);
|
2014-04-29 12:26:51 +00:00
|
|
|
|
2015-04-13 17:52:38 +00:00
|
|
|
void layoutScreensaver(void);
|
2022-12-23 17:09:20 +00:00
|
|
|
void layoutHomescreen(void);
|
|
|
|
void layoutBusyscreen(void);
|
2014-04-29 12:26:51 +00:00
|
|
|
void layoutHome(void);
|
2021-01-18 15:49:33 +00:00
|
|
|
void layoutConfirmOutput(const CoinInfo *coin, AmountUnit amount_unit,
|
|
|
|
const TxOutputType *out);
|
2018-11-13 15:50:10 +00:00
|
|
|
void layoutConfirmOmni(const uint8_t *data, uint32_t size);
|
2017-11-15 14:42:56 +00:00
|
|
|
void layoutConfirmOpReturn(const uint8_t *data, uint32_t size);
|
2021-01-18 15:49:33 +00:00
|
|
|
void layoutConfirmTx(const CoinInfo *coin, AmountUnit amount_unit,
|
2022-12-21 16:29:53 +00:00
|
|
|
uint64_t total_in, uint64_t external_in,
|
|
|
|
uint64_t total_out, uint64_t change_out,
|
2022-05-03 13:21:58 +00:00
|
|
|
uint64_t tx_weight);
|
2020-11-28 14:06:43 +00:00
|
|
|
void layoutConfirmReplacement(const char *description, uint8_t txid[32]);
|
2021-02-24 16:28:57 +00:00
|
|
|
void layoutConfirmModifyOutput(const CoinInfo *coin, AmountUnit amount_unit,
|
|
|
|
TxOutputType *out, TxOutputType *orig_out,
|
|
|
|
int page);
|
2021-01-18 15:49:33 +00:00
|
|
|
void layoutConfirmModifyFee(const CoinInfo *coin, AmountUnit amount_unit,
|
2022-08-31 10:58:59 +00:00
|
|
|
uint64_t fee_old, uint64_t fee_new,
|
|
|
|
uint64_t tx_weight);
|
2021-01-18 15:49:33 +00:00
|
|
|
void layoutFeeOverThreshold(const CoinInfo *coin, AmountUnit amount_unit,
|
|
|
|
uint64_t fee);
|
2022-12-22 12:27:21 +00:00
|
|
|
void layoutFeeRateOverThreshold(const CoinInfo *coin, uint32_t fee_per_kvbyte);
|
2020-07-08 16:43:03 +00:00
|
|
|
void layoutChangeCountOverThreshold(uint32_t change_count);
|
2022-03-18 15:53:44 +00:00
|
|
|
void layoutConfirmUnverifiedExternalInputs(void);
|
2020-07-09 09:27:44 +00:00
|
|
|
void layoutConfirmNondefaultLockTime(uint32_t lock_time,
|
|
|
|
bool lock_time_disabled);
|
2022-12-22 12:27:21 +00:00
|
|
|
void layoutAuthorizeCoinJoin(const CoinInfo *coin, uint64_t max_rounds,
|
|
|
|
uint32_t max_fee_per_kvbyte);
|
2022-12-27 15:37:38 +00:00
|
|
|
void layoutConfirmCoinjoinAccess(void);
|
2018-09-06 12:37:42 +00:00
|
|
|
void layoutVerifyAddress(const CoinInfo *coin, const char *address);
|
2014-06-07 12:21:59 +00:00
|
|
|
void layoutCipherKeyValue(bool encrypt, const char *key);
|
2014-11-15 01:01:21 +00:00
|
|
|
void layoutEncryptMessage(const uint8_t *msg, uint32_t len, bool signing);
|
2019-03-29 16:10:31 +00:00
|
|
|
void layoutDecryptMessage(const uint8_t *msg, uint32_t len,
|
|
|
|
const char *address);
|
2017-09-04 06:12:33 +00:00
|
|
|
void layoutResetWord(const char *word, int pass, int word_pos, bool last);
|
2019-03-29 16:10:31 +00:00
|
|
|
void layoutAddress(const char *address, const char *desc, bool qrcode,
|
|
|
|
bool ignorecase, const uint32_t *address_n,
|
|
|
|
size_t address_n_count, bool address_is_account);
|
2015-11-19 10:48:26 +00:00
|
|
|
void layoutPublicKey(const uint8_t *pubkey);
|
2020-11-21 10:18:31 +00:00
|
|
|
void layoutXPUB(const char *xpub, int page);
|
|
|
|
void layoutXPUBMultisig(const char *xpub, int index, int page, bool ours);
|
2015-02-20 19:22:05 +00:00
|
|
|
void layoutSignIdentity(const IdentityType *identity, const char *challenge);
|
2016-07-14 16:11:20 +00:00
|
|
|
void layoutDecryptIdentity(const IdentityType *identity);
|
2019-03-09 17:24:49 +00:00
|
|
|
void layoutU2FDialog(const char *verb, const char *appname);
|
2020-07-10 13:24:17 +00:00
|
|
|
void layoutShowPassphrase(const char *passphrase);
|
2017-07-20 21:58:19 +00:00
|
|
|
|
2019-03-29 16:10:31 +00:00
|
|
|
void layoutNEMDialog(const BITMAP *icon, const char *btnNo, const char *btnYes,
|
|
|
|
const char *desc, const char *line1, const char *address);
|
|
|
|
void layoutNEMTransferXEM(const char *desc, uint64_t quantity,
|
|
|
|
const bignum256 *multiplier, uint64_t fee);
|
|
|
|
void layoutNEMNetworkFee(const char *desc, bool confirm, const char *fee1_desc,
|
|
|
|
uint64_t fee1, const char *fee2_desc, uint64_t fee2);
|
|
|
|
void layoutNEMTransferMosaic(const NEMMosaicDefinition *definition,
|
|
|
|
uint64_t quantity, const bignum256 *multiplier,
|
|
|
|
uint8_t network);
|
|
|
|
void layoutNEMTransferUnknownMosaic(const char *namespace, const char *mosaic,
|
|
|
|
uint64_t quantity,
|
|
|
|
const bignum256 *multiplier);
|
|
|
|
void layoutNEMTransferPayload(const uint8_t *payload, size_t length,
|
|
|
|
bool encrypted);
|
2017-07-22 18:02:41 +00:00
|
|
|
void layoutNEMMosaicDescription(const char *description);
|
2018-08-27 17:06:11 +00:00
|
|
|
void layoutNEMLevy(const NEMMosaicDefinition *definition, uint8_t network);
|
2014-04-29 12:26:51 +00:00
|
|
|
|
2022-06-23 07:28:49 +00:00
|
|
|
void layoutCosiSign(const uint32_t *address_n, size_t address_n_count,
|
|
|
|
const uint8_t *data, uint32_t len);
|
2017-10-03 11:11:53 +00:00
|
|
|
|
2020-07-21 14:41:04 +00:00
|
|
|
void layoutConfirmAutoLockDelay(uint32_t delay_ms);
|
2021-05-21 17:55:21 +00:00
|
|
|
void layoutConfirmSafetyChecks(SafetyCheckLevel safety_checks_level);
|
2020-07-21 14:41:04 +00:00
|
|
|
|
2021-11-29 23:37:23 +00:00
|
|
|
void layoutConfirmHash(const BITMAP *icon, const char *description,
|
|
|
|
const uint8_t *hash, uint32_t len);
|
|
|
|
|
2022-12-16 09:38:08 +00:00
|
|
|
void layoutConfirmOwnershipProof(void);
|
|
|
|
|
2018-06-11 17:13:34 +00:00
|
|
|
const char **split_message(const uint8_t *msg, uint32_t len, uint32_t rowlen);
|
2018-09-19 16:45:50 +00:00
|
|
|
const char **split_message_hex(const uint8_t *msg, uint32_t len);
|
2018-06-11 17:13:34 +00:00
|
|
|
|
2021-11-07 20:02:49 +00:00
|
|
|
bool is_valid_ascii(const uint8_t *data, uint32_t size);
|
|
|
|
|
2014-04-29 12:26:51 +00:00
|
|
|
#endif
|