Searched refs:lv_obj_set_layout (Results 1 – 16 of 16) sorted by relevance
/lvgl-latest/docs/ |
D | README.md | 258 :cpp:expr:`lv_obj_set_layout(widget, LV_LAYOUT_FLEX)` 263 :cpp:expr:`lv_obj_set_layout(widget, LV_LAYOUT_FLEX/GRID)` <== arg with > 1 word 264 :cpp:expr:`lv_obj_set_layout(widget, LV_LAYOUT_*)` <== asterisk 265 :cpp:expr:`lv_obj_set_layout(*widget, LV_LAYOUT_FLEX)` <== asterisk 266 :cpp:expr:`lv_obj_set_layout((lv_obj_t *)widget, LV_LAYOUT_FLEX)` <== cast 267 :cpp:expr:`lv_obj_set_layout(&widget, LV_LAYOUT_FLEX);` <== ampersand & semicolon 268 :cpp:expr:`lv_obj_set_layout(widget, ...)` <== lone ellipsis 272 ``lv_obj_set_layout(widget, LV_LAYOUT_FLEX/GRID)`` 273 ``lv_obj_set_layout(widget, LV_LAYOUT_*)`` 274 ``lv_obj_set_layout(*widget, LV_LAYOUT_FLEX)`` [all …]
|
/lvgl-latest/examples/layouts/grid/ |
D | lv_example_grid_1.c | 18 lv_obj_set_layout(cont, LV_LAYOUT_GRID); in lv_example_grid_1()
|
/lvgl-latest/tests/src/test_cases/ |
D | test_grid_fr.c | 28 lv_obj_set_layout(active_screen, LV_LAYOUT_GRID); in test_grid_fr()
|
D | test_margin_grid.c | 66 lv_obj_set_layout(obj0, LV_LAYOUT_GRID); in test_grid()
|
/lvgl-latest/src/core/ |
D | lv_obj_pos.h | 141 void lv_obj_set_layout(lv_obj_t * obj, uint32_t layout);
|
D | lv_obj.c | 102 .setter = lv_obj_set_layout,
|
D | lv_obj_pos.c | 261 void lv_obj_set_layout(lv_obj_t * obj, uint32_t layout) in lv_obj_set_layout() function
|
/lvgl-latest/examples/others/fragment/ |
D | lv_example_fragment_2.c | 40 lv_obj_set_layout(root, LV_LAYOUT_GRID); in lv_example_fragment_2()
|
/lvgl-latest/demos/high_res/ |
D | lv_demo_high_res_app_smart_meter.c | 442 lv_obj_set_layout(chart_grid, LV_LAYOUT_GRID); in create_widget2() 640 lv_obj_set_layout(chart_grid, LV_LAYOUT_GRID); in create_widget3()
|
D | lv_demo_high_res_app_ev_charging.c | 360 lv_obj_set_layout(chart_grid, LV_LAYOUT_GRID); in create_widget2()
|
D | lv_demo_high_res_app_thermostat.c | 169 lv_obj_set_layout(chart_grid, LV_LAYOUT_GRID); in create_widget1()
|
/lvgl-latest/docs/details/base-widget/layouts/ |
D | grid.rst | 20 To make a Widget a Grid container call :cpp:expr:`lv_obj_set_layout(widget, LV_LAYOUT_GRID)`.
|
D | flex.rst | 20 :cpp:expr:`lv_obj_set_layout(widget, LV_LAYOUT_FLEX)`.
|
/lvgl-latest/src/widgets/menu/ |
D | lv_menu.c | 536 lv_obj_set_layout(obj, LV_LAYOUT_FLEX); in lv_menu_constructor()
|
/lvgl-latest/demos/benchmark/ |
D | lv_demo_benchmark.c | 534 lv_obj_set_layout(scr, LV_LAYOUT_NONE); in load_scene()
|
/lvgl-latest/docs/details/base-widget/ |
D | coord.rst | 543 :cpp:func:`lv_obj_set_layout` ``(widget, <LAYOUT_NAME>)`` sets the layout on a Widget.
|