1 #include "../../lv_examples.h"
2 #if LV_USE_GRID && LV_BUILD_EXAMPLES
3
4 /**
5 * Demonstrate RTL direction on grid
6 */
lv_example_grid_6(void)7 void lv_example_grid_6(void)
8 {
9
10 static lv_coord_t col_dsc[] = {60, 60, 60, LV_GRID_TEMPLATE_LAST};
11 static lv_coord_t row_dsc[] = {45, 45, 45, LV_GRID_TEMPLATE_LAST};
12
13 /*Create a container with grid*/
14 lv_obj_t * cont = lv_obj_create(lv_scr_act());
15 lv_obj_set_size(cont, 300, 220);
16 lv_obj_center(cont);
17 lv_obj_set_style_base_dir(cont, LV_BASE_DIR_RTL, 0);
18 lv_obj_set_grid_dsc_array(cont, col_dsc, row_dsc);
19
20 lv_obj_t * label;
21 lv_obj_t * obj;
22 uint32_t i;
23 for(i = 0; i < 9; i++) {
24 uint8_t col = i % 3;
25 uint8_t row = i / 3;
26
27 obj = lv_obj_create(cont);
28 /*Stretch the cell horizontally and vertically too
29 *Set span to 1 to make the cell 1 column/row sized*/
30 lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_STRETCH, col, 1,
31 LV_GRID_ALIGN_STRETCH, row, 1);
32
33 label = lv_label_create(obj);
34 lv_label_set_text_fmt(label, "%d,%d", col, row);
35 lv_obj_center(label);
36 }
37 }
38
39 #endif
40