2014-04-29 12:26:51 +00:00
|
|
|
/*
|
|
|
|
* 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"
|
2016-06-08 15:55:25 +00:00
|
|
|
#include "bitmaps.h"
|
2014-04-29 12:26:51 +00:00
|
|
|
|
2016-06-08 15:55:25 +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);
|
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);
|
2014-04-29 12:26:51 +00:00
|
|
|
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);
|
2016-04-25 21:03:57 +00:00
|
|
|
void layoutVerifyAddress(const char *address);
|
2014-06-02 18:40:20 +00:00
|
|
|
void layoutVerifyMessage(const uint8_t *msg, uint32_t len);
|
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);
|
|
|
|
void layoutDecryptMessage(const uint8_t *msg, uint32_t len, const char *address);
|
2015-02-18 17:30:54 +00:00
|
|
|
void layoutAddress(const char *address, const char *desc);
|
2015-11-19 10:48:26 +00:00
|
|
|
void layoutPublicKey(const uint8_t *pubkey);
|
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);
|
2016-06-09 16:11:19 +00:00
|
|
|
void layoutU2FDialog(const char *verb, const char *appname, const BITMAP *appicon);
|
2014-04-29 12:26:51 +00:00
|
|
|
|
|
|
|
#endif
|