/lvgl-3.7.0/demos/widgets/ |
D | lv_demo_widgets.c | 367 lv_obj_set_grid_cell(name, LV_GRID_ALIGN_START, 2, 2, LV_GRID_ALIGN_CENTER, 0, 1); in profile_create() 368 lv_obj_set_grid_cell(dsc, LV_GRID_ALIGN_STRETCH, 2, 4, LV_GRID_ALIGN_START, 1, 1); in profile_create() 370 lv_obj_set_grid_cell(email_label, LV_GRID_ALIGN_START, 3, 1, LV_GRID_ALIGN_CENTER, 3, 1); in profile_create() 372 lv_obj_set_grid_cell(call_label, LV_GRID_ALIGN_START, 3, 1, LV_GRID_ALIGN_CENTER, 4, 1); in profile_create() 376 lv_obj_set_grid_cell(panel2, LV_GRID_ALIGN_STRETCH, 0, 1, LV_GRID_ALIGN_START, 1, 1); in profile_create() 378 lv_obj_set_grid_cell(panel2_title, LV_GRID_ALIGN_START, 0, 2, LV_GRID_ALIGN_CENTER, 0, 1); in profile_create() 380 lv_obj_set_grid_cell(user_name_label, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_START, 2, 1); in profile_create() 382 lv_obj_set_grid_cell(password_label, LV_GRID_ALIGN_START, 1, 1, LV_GRID_ALIGN_START, 2, 1); in profile_create() 384 lv_obj_set_grid_cell(birthday_label, LV_GRID_ALIGN_START, 1, 1, LV_GRID_ALIGN_START, 5, 1); in profile_create() 386 lv_obj_set_grid_cell(gender_label, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_START, 5, 1); in profile_create() [all …]
|
/lvgl-3.7.0/examples/layouts/grid/ |
D | lv_example_grid_2.c | 24 lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_START, 0, 1, in lv_example_grid_2() 25 LV_GRID_ALIGN_START, 0, 1); in lv_example_grid_2() 32 lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_START, 1, 1, in lv_example_grid_2() 40 lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_START, 2, 1, in lv_example_grid_2()
|
/lvgl-3.7.0/examples/anim/ |
D | lv_example_anim_3.c | 127 lv_obj_set_grid_cell(ginfo.anim_obj, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_START, 0, 1); in page_obj_init() 133 lv_obj_set_grid_cell(ginfo.p1_label, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_START, 1, 1); in page_obj_init() 134 lv_obj_set_grid_cell(ginfo.p2_label, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_START, 2, 1); in page_obj_init() 144 lv_obj_set_grid_cell(ginfo.p1_slider, LV_GRID_ALIGN_STRETCH, 1, 1, LV_GRID_ALIGN_START, 1, 1); in page_obj_init() 145 lv_obj_set_grid_cell(ginfo.p2_slider, LV_GRID_ALIGN_STRETCH, 1, 1, LV_GRID_ALIGN_START, 2, 1); in page_obj_init()
|
/lvgl-3.7.0/demos/music/ |
D | lv_demo_music_list.c | 193 lv_obj_set_grid_cell(icon, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_CENTER, 0, 2); in add_list_btn() 197 lv_obj_set_grid_cell(title_label, LV_GRID_ALIGN_START, 1, 1, LV_GRID_ALIGN_CENTER, 0, 1); in add_list_btn() 203 lv_obj_set_grid_cell(artist_label, LV_GRID_ALIGN_START, 1, 1, LV_GRID_ALIGN_CENTER, 1, 1); in add_list_btn()
|
D | lv_demo_music_main.c | 571 lv_obj_set_grid_cell(icon, LV_GRID_ALIGN_START, 1, 1, LV_GRID_ALIGN_CENTER, 0, 1); in create_ctrl_box()
|
/lvgl-3.7.0/docs/layouts/ |
D | grid.md | 46 - `LV_GRID_ALIGN_START` means left on a horizontally and top vertically. (default) 57 - `LV_GRID_ALIGN_START` means left on a horizontally and top vertically. (default) 93 …tion of the container is set to `LV_BASE_DIR_RTL`, the meaning of `LV_GRID_ALIGN_START` and `LV_GR…
|
/lvgl-3.7.0/src/extra/layouts/grid/ |
D | lv_grid.c | 596 if(col_align == LV_GRID_ALIGN_START) col_align = LV_GRID_ALIGN_END; in item_repos() 597 else if(col_align == LV_GRID_ALIGN_END) col_align = LV_GRID_ALIGN_START; in item_repos() 607 case LV_GRID_ALIGN_START: in item_repos() 628 case LV_GRID_ALIGN_START: in item_repos() 720 case LV_GRID_ALIGN_START: in grid_align()
|
D | lv_grid.h | 43 LV_GRID_ALIGN_START, enumerator
|
/lvgl-3.7.0/examples/others/fragment/ |
D | lv_example_fragment_2.c | 55 lv_obj_set_grid_cell(push_btn, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_CENTER, 1, 1); in lv_example_fragment_2()
|