Embedded SDK
Embedded SDK
Loading...
Searching...
No Matches
nbgl_content.h
Go to the documentation of this file.
1
7#ifndef NBGL_CONTENT_H
8#define NBGL_CONTENT_H
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14/*********************
15 * INCLUDES
16 *********************/
17#include <stdint.h>
18#include <stdbool.h>
19
20#include "nbgl_types.h"
21#include "nbgl_obj.h"
22#ifdef HAVE_PIEZO_SOUND
23#include "os_io_seproxyhal.h"
24#endif
25
26/**********************
27 * TYPEDEFS
28 **********************/
29
34typedef enum {
35#ifdef HAVE_SE_TOUCH
46#else // HAVE_SE_TOUCH
47 REGULAR_INFO = 0,
48 BOLD_TEXT1_INFO
49#endif // HAVE_SE_TOUCH
51
57typedef struct {
58 const char *text1;
59 const char *text2;
60#ifdef HAVE_SE_TOUCH
61 const char *text3;
62#endif // HAVE_SE_TOUCH
64 bool onTop;
66#ifdef HAVE_SE_TOUCH
68#endif // HAVE_SE_TOUCH
70
79
104
108typedef struct {
109 const char *text;
111 const char *longPressText;
114#ifdef HAVE_PIEZO_SOUND
115 tune_index_e
116 tuneId;
117#endif
119
123typedef struct {
124 const char *text;
126 const char *buttonText;
129#ifdef HAVE_PIEZO_SOUND
130 tune_index_e
131 tuneId;
132#endif
134
145
158
162typedef struct {
163 const char *item;
164 const char *value;
165#ifdef SCREEN_SIZE_WALLET
166 union {
171 };
177#endif
179
185typedef nbgl_contentTagValue_t *(*nbgl_contentTagValueCallback_t)(uint8_t pairIndex);
186
194typedef void (*nbgl_contentActionCallback_t)(int token, uint8_t index, int page);
195
216
220typedef struct {
223 const char *detailsButtonText;
226#ifdef HAVE_PIEZO_SOUND
227 tune_index_e
228 tuneId;
229#endif
231
254
260typedef struct {
261 const char *text;
262 const char
266#ifdef HAVE_PIEZO_SOUND
267 tune_index_e tuneId;
268#endif // HAVE_PIEZO_SOUND
270
278
294
300typedef struct {
301 union {
302 const char *const *names;
303#if defined(HAVE_LANGUAGE_PACK)
304 UX_LOC_STRINGS_INDEX *nameIds;
305#endif // HAVE_LANGUAGE_PACK
306 };
311#ifdef HAVE_PIEZO_SOUND
312 tune_index_e
313 tuneId;
314#endif // HAVE_PIEZO_SOUND
316
320typedef struct {
321 const char *const *barTexts;
324#ifdef HAVE_PIEZO_SOUND
325 tune_index_e tuneId;
326#endif // HAVE_PIEZO_SOUND
328
333typedef struct {
334 const char *text;
337#ifdef HAVE_PIEZO_SOUND
338 tune_index_e tuneId;
339#endif // HAVE_PIEZO_SOUND
341
349
367
384
394
395#ifdef __cplusplus
396} /* extern "C" */
397#endif
398
399#endif /* NBGL_CONTENT_H */
struct nbgl_pageSwitchesList_s nbgl_contentSwitchesList_t
This structure contains data to build a SWITCHES_LIST content.
nbgl_contentTagValue_t *(* nbgl_contentTagValueCallback_t)(uint8_t pairIndex)
prototype of tag/value pair retrieval callback
nbgl_contentIllustrationType_t
possible types of illustration, for example in nbgl_contentCenter_t
@ ANIM_ILLUSTRATION
animation
@ ICON_ILLUSTRATION
simple icon
nbgl_contentCenteredInfoStyle_t
possible styles for Centered Info Area
@ LARGE_CASE_BOLD_INFO
@ NORMAL_INFO
@ PLUGIN_INFO
@ LARGE_CASE_GRAY_INFO
@ LARGE_CASE_INFO
text in BLACK and large case (INTER 32px), subText in black in Inter24px
nbgl_contentType_t
The different types of predefined contents.
@ INFO_LONG_PRESS
a centered info and a long press button
@ EXTENDED_CENTER
a centered content and a possible tip-box
@ CHOICES_LIST
list of choices through radio buttons
@ CENTERED_INFO
a centered info
@ SWITCHES_LIST
list of switches with descriptions
@ TAG_VALUE_DETAILS
a tag/value pair and a small button to get details.
@ INFOS_LIST
list of infos with titles
@ TAG_VALUE_CONFIRM
tag/value pairs and a black button/footer to confirm/cancel.
@ TAG_VALUE_LIST
list of tag/value pairs
@ BARS_LIST
list of touchable bars (with > on the right to go to sub-pages)
@ INFO_BUTTON
a centered info and a simple black button
nbgl_contentValueAliasType_t
possible types of value alias
@ ENS_ALIAS
alias comes from ENS
@ ADDRESS_BOOK_ALIAS
alias comes from Address Book
@ QR_CODE_ALIAS
alias is an address to be displayed as a QR Code
@ NO_ALIAS_TYPE
void(* nbgl_contentActionCallback_t)(int token, uint8_t index, int page)
prototype of function to be called when an action on a content object occurs
API to draw all basic graphic objects.
common types for Graphical Library
nbgl_state_t
to represent a boolean state.
Definition nbgl_types.h:179
struct PACKED__ nbgl_icon_details_s nbgl_icon_details_t
Represents all information about an icon.
Represents all information about an animation (succession of icons)
Definition nbgl_types.h:396
This structure contains data to build a BARS_LIST content.
const uint8_t * tokens
array of tokens, one for each bar (nbBars items)
const char *const * barTexts
array of texts for each bar (nbBars items, in black/bold)
uint8_t nbBars
number of elements in barTexts and tokens array
This structure contains info to build a centered (vertically and horizontally) area,...
uint16_t iconHug
vertical margin to apply on top and bottom of the icon
const nbgl_icon_details_t * icon
the icon (can be null)
const char * title
title in black large (can be null)
const char * description
description in black small regular case (can be null)
const char * subText
sub-text in dark gray regular small case
uint16_t animOffsetY
vertical offset of animation in icon if integrated (but usually 0)
bool padding
if true, apply a padding of 40px at the bottom
const nbgl_animation_t * animation
the animation (can be null), used if illustrType is ANIM_ILLUSTRATION
const char * smallTitle
sub-title in black small bold case (can be null)
uint16_t animOffsetX
horizontal offset of animation in icon if integrated (but usually 0)
nbgl_contentIllustrationType_t illustrType
This structure contains info to build a centered (vertically and horizontally) area,...
const char * text2
second text (can be null)
const char * text1
first text (can be null)
bool onTop
if set to true, align only horizontally
nbgl_contentCenteredInfoStyle_t style
style to apply to this info
int16_t offsetY
vertical shift to apply to this info (if >0, shift to bottom)
const char * text3
third text (can be null)
const nbgl_icon_details_t * icon
a buffer containing the 1BPP icon
This structure contains data to build a EXTENDED_CENTER content.
nbgl_contentTipBox_t tipBox
if text field is NULL, no tip-box
nbgl_contentCenter_t contentCenter
centered content (icon + text(s))
This structure contains data to build a centered info + simple black button content.
const char * buttonText
text of the long press button
const nbgl_icon_details_t * icon
a buffer containing the 1BPP icon
const char * text
centered text in large case
This structure contains data to build a INFOS_LIST content.
uint8_t nbInfos
number of elements in infoTypes and infoContents array
const char *const * infoContents
array of contents of infos (in black)
const char *const * infoTypes
array of types of infos (in black/bold)
const nbgl_contentValueExt_t * infoExtensions
This structure contains data to build a centered info + long press button content.
const char * longPressText
text of the long press button
const nbgl_icon_details_t * icon
a buffer containing the 1BPP icon
const char * text
centered text in large case
This structure contains a list of names to build a list of radio buttons (on the right part of screen...
uint8_t token
the token that will be used as argument of the callback
bool localized
if set to true, use nameIds and not names
uint8_t initChoice
index of the current choice
const char *const * names
array of strings giving the choices (nbChoices)
uint8_t nbChoices
number of choices
This structure contains info to build a switch (on the right) with a description (on the left),...
const char * text
main text for the switch
uint8_t token
the token that will be used as argument of the callback
nbgl_state_t initState
initial state of the switch
const char * subText
description under main text (NULL terminated, single line, may be null)
This structure contains [item,value] pair(s) and info about a potential "details" button,...
const char * confirmationText
text of the confirmation button, if NULL "It matches" is used
uint8_t confirmationToken
the token used as argument of the onActionCallback
const char * cancelText
the text used for cancel action, if NULL "It doesn't matches" is used
nbgl_contentTagValueList_t tagValueList
list of tag/value pairs
const char * detailsButtonText
this text is used for "details" button (if NULL, no button)
const nbgl_icon_details_t * detailsButtonIcon
icon to use in details button
This structure contains a [item,value] pair and info about "details" button.
const nbgl_icon_details_t * detailsButtonIcon
icon to use in details button
const char * detailsButtonText
this text is used for "details" button
nbgl_contentTagValueList_t tagValueList
list of tag/value pairs
This structure contains a list of [tag,value] pairs.
nbgl_contentActionCallback_t actionCallback
called when a valueIcon is touched on a given pair
const nbgl_contentTagValue_t * pairs
array of [tag,value] pairs (nbPairs items). If NULL, callback is used instead
bool wrapping
if set to true, value text will be wrapped on ' ' to avoid cutting words
uint8_t startIndex
index of the first pair to get with callback
nbgl_contentTagValueCallback_t callback
function to call to retrieve a given pair
This structure contains a [tag,value] pair.
const nbgl_contentValueExt_t * extension
if not NULL, gives additional info on value field
const nbgl_icon_details_t * valueIcon
int8_t centeredInfo
if set to 1, the tag will be displayed as a centered info
const char * value
string giving the value name
const char * item
string giving the tag name
This structure contains data to build a tip-box, on top of a footer, on bottom of a content center.
const char * text
text of the tip-box
const nbgl_icon_details_t * icon
icon of the tip-box
uint8_t token
token used when tip-box is tapped
This structure contains additions to a tag/value pair, to be able to build a screen to display these ...
const char * fullValue
full string of the value when used as an alias
nbgl_contentValueAliasType_t aliasType
type of alias
This structure contains data to build a content.
nbgl_content_u content
nbgl_contentActionCallback_t contentActionCallback
callback to be called when an action on an object occurs
nbgl_contentType_t type
type of page content in the content union
This structure contains data to build a SWITCHES_LIST content.
uint8_t nbSwitches
number of elements in switches and tokens array
const nbgl_contentSwitch_t * switches
array of switches (nbSwitches items)
Union of the different type of contents.
nbgl_contentInfoList_t infosList
INFOS_LIST type
nbgl_contentInfoLongPress_t infoLongPress
INFO_LONG_PRESS type
nbgl_contentTagValueDetails_t tagValueDetails
TAG_VALUE_DETAILS type
nbgl_contentTagValueConfirm_t tagValueConfirm
TAG_VALUE_CONFIRM type
nbgl_contentTagValueList_t tagValueList
TAG_VALUE_LIST type
nbgl_contentCenteredInfo_t centeredInfo
CENTERED_INFO type
nbgl_contentBarsList_t barsList
BARS_LIST type
nbgl_contentExtendedCenter_t extendedCenter
EXTENDED_CENTER type
nbgl_contentSwitchesList_t switchesList
SWITCHES_LIST type
nbgl_contentInfoButton_t infoButton
INFO_BUTTON type
nbgl_contentRadioChoice_t choicesList
CHOICES_LIST type
signed short int16_t
Definition usbd_conf.h:50
unsigned short uint16_t
Definition usbd_conf.h:54
unsigned char uint8_t
Definition usbd_conf.h:53
signed char int8_t
Definition usbd_conf.h:49
BOLOS_UX_LOC_STRINGS UX_LOC_STRINGS_INDEX