mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-09 17:10:17 +00:00
7d8cb9018e
Also fix abort to send a reply (a cancel failure)
48 lines
2.1 KiB
C
48 lines
2.1 KiB
C
/*
|
|
* This file is part of the TREZOR project.
|
|
*
|
|
* 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__
|
|
|
|
#include "layout.h"
|
|
#include "types.pb.h"
|
|
#include "bitmaps.h"
|
|
|
|
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);
|
|
void layoutProgressSwipe(const char *desc, int permil);
|
|
|
|
void layoutScreensaver(void);
|
|
void layoutHome(void);
|
|
void layoutConfirmOutput(const CoinType *coin, const TxOutputType *out);
|
|
void layoutConfirmTx(const CoinType *coin, uint64_t amount_out, uint64_t amount_fee);
|
|
void layoutFeeOverThreshold(const CoinType *coin, uint64_t fee, uint32_t kb);
|
|
void layoutSignMessage(const uint8_t *msg, uint32_t len);
|
|
void layoutVerifyAddress(const char *address);
|
|
void layoutVerifyMessage(const uint8_t *msg, uint32_t len);
|
|
void layoutCipherKeyValue(bool encrypt, const char *key);
|
|
void layoutEncryptMessage(const uint8_t *msg, uint32_t len, bool signing);
|
|
void layoutDecryptMessage(const uint8_t *msg, uint32_t len, const char *address);
|
|
void layoutAddress(const char *address, const char *desc);
|
|
void layoutPublicKey(const uint8_t *pubkey);
|
|
void layoutSignIdentity(const IdentityType *identity, const char *challenge);
|
|
void layoutDecryptIdentity(const IdentityType *identity);
|
|
void layoutU2FDialog(const char *verb, const char *appname, const BITMAP *appicon);
|
|
|
|
#endif
|