Embedded SDK
Embedded SDK
ux_layout_pbb.c
Go to the documentation of this file.
1 
2 /*******************************************************************************
3  * Ledger Nano S - Secure firmware
4  * (c) 2022 Ledger
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  ********************************************************************************/
18 
19 #include "ux.h"
20 #include "os_utils.h"
21 
22 #ifdef HAVE_UX_FLOW
23 
24 #include <string.h>
25 
26 /*********************************************************************************
27  * 4 text lines
28  */
29 
30 // clang-format off
31 const bagl_element_t ux_layout_pbb_elements[] = {
32 #if (BAGL_WIDTH==128 && BAGL_HEIGHT==64)
33  // erase
34  {{BAGL_RECTANGLE , 0x00, 0, 0, 128, 64, 0, 0, BAGL_FILL, 0x000000, 0xFFFFFF, 0, 0}, .text=NULL},
35 
36  // left/right icons
37  {{BAGL_ICON , 0x01, 2, 28, 4, 7, 0, 0, 0 , 0xFFFFFF, 0x000000, 0, 0 }, .text=(const char*)&C_icon_left},
38  {{BAGL_ICON , 0x02, 122, 28, 4, 7, 0, 0, 0 , 0xFFFFFF, 0x000000, 0, 0 }, .text=(const char*)&C_icon_right},
39 
40  {{BAGL_ICON , 0x0F, 57, 10, 14, 14, 0, 0, 0 , 0xFFFFFF, 0x000000, BAGL_FONT_OPEN_SANS_REGULAR_11px|BAGL_FONT_ALIGNMENT_CENTER, 0 }, .text=NULL},
41  {{BAGL_LABELINE , 0x10, 6, 37, 116, 32, 0, 0, 0 , 0xFFFFFF, 0x000000, BAGL_FONT_OPEN_SANS_EXTRABOLD_11px|BAGL_FONT_ALIGNMENT_CENTER, 0 }, .text=NULL},
42  {{BAGL_LABELINE , 0x11, 6, 51, 116, 32, 0, 0, 0 , 0xFFFFFF, 0x000000, BAGL_FONT_OPEN_SANS_EXTRABOLD_11px|BAGL_FONT_ALIGNMENT_CENTER, 0 }, .text=NULL},
43 #elif (BAGL_WIDTH==128 && BAGL_HEIGHT==32)
44  // erase
45  {{BAGL_RECTANGLE , 0x00, 0, 0, 128, 32, 0, 0, BAGL_FILL, 0x000000, 0xFFFFFF, 0, 0}, .text=NULL},
46 
47  // left/right icons
48  {{BAGL_ICON , 0x01, 2, 12, 4, 7, 0, 0, 0 , 0xFFFFFF, 0x000000, 0, 0 }, .text=(const char*)&C_icon_left},
49  {{BAGL_ICON , 0x02, 122, 12, 4, 7, 0, 0, 0 , 0xFFFFFF, 0x000000, 0, 0 }, .text=(const char*)&C_icon_right},
50 
51  {{BAGL_ICON , 0x0F, 16, 8, 16, 16, 0, 0, 0 , 0xFFFFFF, 0x000000, 0, 0 }, .text=NULL},
52  {{BAGL_LABELINE , 0x10, 41, 12, 128, 32, 0, 0, 0 , 0xFFFFFF, 0x000000, BAGL_FONT_OPEN_SANS_EXTRABOLD_11px, 0 }, .text=NULL},
53  {{BAGL_LABELINE , 0x11, 41, 26, 128, 32, 0, 0, 0 , 0xFFFFFF, 0x000000, BAGL_FONT_OPEN_SANS_EXTRABOLD_11px, 0 }, .text=NULL},
54 #else
55  #error "BAGL_WIDTH/BAGL_HEIGHT not defined"
56 #endif
57 };
58 // clang-format on
59 
60 const bagl_element_t *ux_layout_pbb_prepro(const bagl_element_t *element)
61 {
62  // don't display if null
63  const void *params = ux_stack_get_current_step_params();
64 
65  // copy element before any mod
66  memmove(&G_ux.tmp_element, element, sizeof(bagl_element_t));
67 
68  // for dashboard, setup the current application's name
69  switch (element->component.userid) {
70  case 0x01:
71  if (ux_flow_is_first()) {
72  return NULL;
73  }
74  break;
75 
76  case 0x02:
77  if (ux_flow_is_last()) {
78  return NULL;
79  }
80  break;
81 
82  case 0x0F:
83 #if defined(HAVE_INDEXED_STRINGS)
84  G_ux.tmp_element.text
85  = (const char *) (((const ux_loc_layout_icon_params_t *) params)->icon);
86 #else // defined(HAVE_INDEXED_STRINGS)
87  G_ux.tmp_element.text
88  = (const char *) (((const ux_layout_icon_strings_params_t *) params)->icon);
89 #endif // defined(HAVE_INDEXED_STRINGS)
90  break;
91 
92  case 0x10:
93  case 0x11: {
94 #if defined(HAVE_INDEXED_STRINGS)
95  UX_LOC_STRINGS_INDEX index = ((const ux_loc_layout_icon_params_t *) params)->index
96  + (G_ux.tmp_element.component.userid & 0xF);
97  G_ux.tmp_element.text = get_ux_loc_string(index);
98 #else // defined(HAVE_INDEXED_STRINGS)
99  G_ux.tmp_element.text = ((const ux_layout_icon_strings_params_t *) params)
100  ->lines[G_ux.tmp_element.component.userid & 0xF];
101 #endif // defined(HAVE_INDEXED_STRINGS)
102  break;
103  }
104  }
105  return &G_ux.tmp_element;
106 }
107 
108 void ux_layout_pbb_init_common(unsigned int stack_slot)
109 {
110  ux_stack_init(stack_slot);
111  G_ux.stack[stack_slot].element_arrays[0].element_array = ux_layout_pbb_elements;
112  G_ux.stack[stack_slot].element_arrays[0].element_array_count = ARRAYLEN(ux_layout_pbb_elements);
113  G_ux.stack[stack_slot].element_arrays_count = 1;
114  G_ux.stack[stack_slot].button_push_callback = ux_flow_button_callback;
115 }
116 
117 void ux_layout_pbb_init(unsigned int stack_slot)
118 {
119  ux_layout_pbb_init_common(stack_slot);
120  G_ux.stack[stack_slot].screen_before_element_display_callback = ux_layout_pbb_prepro;
121  ux_stack_display(stack_slot);
122 }
123 
124 #endif // HAVE_UX_FLOW
const char * get_ux_loc_string(uint32_t index)
const char * text
Definition: ux_bagl.h:68
bagl_component_t component
Definition: ux_bagl.h:58
#define G_ux
Definition: ux_bagl.h:345
void ux_stack_display(unsigned int stack_slot)
Definition: ux_stack.c:331
void ux_stack_init(unsigned int stack_slot)
Definition: ux_stack.c:171
unsigned int ux_flow_is_first(void)
const void * ux_stack_get_current_step_params(void)
unsigned int ux_flow_button_callback(unsigned int button_mask, unsigned int button_mask_counter)
unsigned int ux_flow_is_last(void)
BOLOS_UX_LOC_STRINGS UX_LOC_STRINGS_INDEX