Searched refs:layout (Results 1 – 10 of 10) sorted by relevance
/lvgl-2.7.6/src/lv_widgets/ |
D | lv_list.c | 308 void lv_list_set_layout(lv_obj_t * list, lv_layout_t layout) in lv_list_set_layout() argument 313 if(layout == lv_list_get_layout(list)) return; in lv_list_set_layout() 321 …if(layout == LV_LAYOUT_COLUMN_MID || layout == LV_LAYOUT_COLUMN_LEFT || layout == LV_LAYOUT_COLUMN… in lv_list_set_layout() 325 …else if(layout == LV_LAYOUT_ROW_MID || layout == LV_LAYOUT_ROW_TOP || layout == LV_LAYOUT_ROW_BOTT… in lv_list_set_layout() 332 …if(layout == LV_LAYOUT_COLUMN_MID || layout == LV_LAYOUT_COLUMN_LEFT || layout == LV_LAYOUT_COLUMN… in lv_list_set_layout() 335 …else if(layout == LV_LAYOUT_ROW_MID || layout == LV_LAYOUT_ROW_TOP || layout == LV_LAYOUT_ROW_BOTT… in lv_list_set_layout() 340 lv_page_set_scrl_layout(list, layout); in lv_list_set_layout()
|
D | lv_cont.h | 103 lv_layout_t layout : 4; /*A layout from 'lv_layout_t' enum*/ member 138 void lv_cont_set_layout(lv_obj_t * cont, lv_layout_t layout);
|
D | lv_cont.c | 92 ext->layout = LV_LAYOUT_OFF; in lv_cont_create() 112 ext->layout = copy_ext->layout; in lv_cont_create() 132 void lv_cont_set_layout(lv_obj_t * cont, lv_layout_t layout) in lv_cont_set_layout() argument 137 if(ext->layout == layout) return; in lv_cont_set_layout() 139 ext->layout = layout; in lv_cont_set_layout() 187 return ext->layout; in lv_cont_get_layout()
|
D | lv_btn.h | 107 static inline void lv_btn_set_layout(lv_obj_t * btn, lv_layout_t layout) in lv_btn_set_layout() argument 109 lv_cont_set_layout(btn, layout); in lv_btn_set_layout()
|
D | lv_page.h | 227 static inline void lv_page_set_scrl_layout(lv_obj_t * page, lv_layout_t layout) in lv_page_set_scrl_layout() argument 229 lv_cont_set_layout(lv_page_get_scrollable(page), layout); in lv_page_set_scrl_layout()
|
D | lv_win.h | 155 void lv_win_set_layout(lv_obj_t * win, lv_layout_t layout);
|
D | lv_list.h | 166 void lv_list_set_layout(lv_obj_t * list, lv_layout_t layout);
|
D | lv_win.c | 318 void lv_win_set_layout(lv_obj_t * win, lv_layout_t layout) in lv_win_set_layout() argument 323 lv_page_set_scrl_layout(ext->page, layout); in lv_win_set_layout()
|
/lvgl-2.7.6/docs/ |
D | ROADMAP.md | 20 - [CSS Grid](https://css-tricks.com/snippets/css/a-guide-to-grid/)-like layout support
|
/lvgl-2.7.6/scripts/ |
D | Doxyfile | 695 # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed 696 # by doxygen. The layout file controls the global structure of the generated 697 # output files in an output format independent way. To create the layout file 700 # will be used as the name of the layout file. 1416 # If you want full control over the layout of the generated HTML pages it might
|