2016-05-11 19:05:08 +00:00
|
|
|
/*
|
2019-06-17 18:27:55 +00:00
|
|
|
* This file is part of the Trezor project, https://trezor.io/
|
2016-05-11 19:05:08 +00:00
|
|
|
*
|
2018-02-26 13:06:10 +00:00
|
|
|
* 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/>.
|
2016-05-11 19:05:08 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __DISPLAY_H__
|
|
|
|
#define __DISPLAY_H__
|
|
|
|
|
2019-04-23 17:15:42 +00:00
|
|
|
#include <stdbool.h>
|
2022-03-05 17:50:49 +00:00
|
|
|
#include <stddef.h>
|
2019-05-10 14:23:18 +00:00
|
|
|
#include <stdint.h>
|
2016-10-03 14:17:49 +00:00
|
|
|
|
2022-08-16 14:51:10 +00:00
|
|
|
#include "buffers.h"
|
|
|
|
#include "colors.h"
|
2022-10-14 10:43:37 +00:00
|
|
|
#include TREZOR_BOARD
|
2022-08-16 14:51:10 +00:00
|
|
|
#include "display_interface.h"
|
2022-08-18 13:12:02 +00:00
|
|
|
#include "fonts/fonts.h"
|
2018-09-12 13:23:30 +00:00
|
|
|
|
2017-03-17 13:14:00 +00:00
|
|
|
// provided by common
|
2016-05-11 19:05:08 +00:00
|
|
|
|
2016-09-28 15:00:27 +00:00
|
|
|
void display_clear(void);
|
2016-10-13 15:09:46 +00:00
|
|
|
|
|
|
|
void display_bar(int x, int y, int w, int h, uint16_t c);
|
2017-03-17 13:14:00 +00:00
|
|
|
|
2019-03-29 15:26:02 +00:00
|
|
|
void display_text(int x, int y, const char *text, int textlen, int font,
|
|
|
|
uint16_t fgcolor, uint16_t bgcolor);
|
|
|
|
void display_text_center(int x, int y, const char *text, int textlen, int font,
|
|
|
|
uint16_t fgcolor, uint16_t bgcolor);
|
|
|
|
void display_text_right(int x, int y, const char *text, int textlen, int font,
|
|
|
|
uint16_t fgcolor, uint16_t bgcolor);
|
2022-08-16 14:51:10 +00:00
|
|
|
void display_text_render_buffer(const char *text, int textlen, int font,
|
|
|
|
buffer_text_t *buffer, int text_offset);
|
2016-10-13 15:09:46 +00:00
|
|
|
|
2022-05-17 11:41:20 +00:00
|
|
|
void display_qrcode(int x, int y, const char *data, uint8_t scale);
|
2017-03-17 13:14:00 +00:00
|
|
|
|
2018-02-22 15:27:38 +00:00
|
|
|
void display_offset(int set_xy[2], int *get_x, int *get_y);
|
2017-03-17 13:14:00 +00:00
|
|
|
|
2016-05-11 19:05:08 +00:00
|
|
|
#endif
|