Searched refs:gap (Results 1 – 10 of 10) sorted by relevance
/lvgl-3.7.0/src/extra/layouts/flex/ |
D | lv_flex.c | 61 lv_coord_t * start_pos, lv_coord_t * gap); 250 lv_coord_t gap = 0; in flex_update() local 271 …ace_content(track_cross_place, max_cross_size, total_track_cross_size, track_cnt, cross_pos, &gap); in flex_update() 294 *cross_pos -= gap + track_gap; in flex_update() 297 *cross_pos += t.track_cross_size + gap + track_gap; in flex_update() 543 lv_coord_t * start_pos, lv_coord_t * gap) in place_content() argument 559 *gap = 0; in place_content() 563 *gap = 0; in place_content() 567 *gap = (lv_coord_t)(max_size - content_size) / (lv_coord_t)(item_cnt - 1); in place_content() 570 *gap += (lv_coord_t)(max_size - content_size) / (lv_coord_t)(item_cnt); in place_content() [all …]
|
/lvgl-3.7.0/src/extra/layouts/grid/ |
D | lv_grid.c | 56 static lv_coord_t grid_align(lv_coord_t cont_size, bool auto_size, uint8_t align, lv_coord_t gap, … 696 static lv_coord_t grid_align(lv_coord_t cont_size, bool auto_size, uint8_t align, lv_coord_t gap, … in grid_align() argument 708 gap = 0; in grid_align() 714 grid_size += size_array[i] + gap; in grid_align() 716 grid_size -= gap; in grid_align() 731 gap = (lv_coord_t)(cont_size - grid_size) / (lv_coord_t)(track_num - 1); in grid_align() 734 gap = (lv_coord_t)(cont_size - grid_size) / (lv_coord_t)(track_num); in grid_align() 735 pos_array[0] = gap / 2; in grid_align() 738 gap = (lv_coord_t)(cont_size - grid_size) / (lv_coord_t)(track_num + 1); in grid_align() 739 pos_array[0] = gap; in grid_align() [all …]
|
/lvgl-3.7.0/src/extra/widgets/tabview/ |
D | lv_tabview.c | 156 lv_coord_t gap = lv_obj_get_style_pad_column(cont, LV_PART_MAIN); in lv_tabview_set_act() local 159 lv_obj_scroll_to_x(cont, id * (gap + w), anim_en); in lv_tabview_set_act() 163 lv_obj_scroll_to_x(cont, (gap + w) * id_rtl, anim_en); in lv_tabview_set_act() 167 lv_coord_t gap = lv_obj_get_style_pad_row(cont, LV_PART_MAIN); in lv_tabview_set_act() local 169 lv_obj_scroll_to_y(cont, id * (gap + h), anim_en); in lv_tabview_set_act()
|
/lvgl-3.7.0/examples/layouts/grid/ |
D | index.rst | 25 Demonstrate column and row gap
|
/lvgl-3.7.0/examples/layouts/flex/ |
D | index.rst | 25 Demonstrate column and row gap style properties
|
/lvgl-3.7.0/src/misc/ |
D | lv_tlsf.c | 1135 size_t gap = tlsf_cast(size_t, in lv_tlsf_memalign() local 1139 if(gap && gap < gap_minimum) { in lv_tlsf_memalign() 1140 const size_t gap_remain = gap_minimum - gap; in lv_tlsf_memalign() 1146 gap = tlsf_cast(size_t, in lv_tlsf_memalign() 1150 if(gap) { in lv_tlsf_memalign() 1151 tlsf_assert(gap >= gap_minimum && "gap size too small"); in lv_tlsf_memalign() 1152 block = block_trim_free_leading(control, block, gap); in lv_tlsf_memalign()
|
/lvgl-3.7.0/docs/layouts/ |
D | grid.md | 18 - gap: the space between the rows and columns or the items on a track
|
D | flex.md | 21 - gap: the space between the rows and columns or the items on a track
|
/lvgl-3.7.0/docs/overview/ |
D | style-props.md | 415 Set the padding of the outline, i.e. the gap between object and the outline. 532 Set the gap between dashes in pixel. Note that dash works only on horizontal and vertical lines
|
/lvgl-3.7.0/docs/ |
D | CHANGELOG.md | 1290 - feat(example) chart example to add gap between the old and new data [`2565`](https://github.com/… 2042 - dashed vertical and horizontal lines (*dash gap*, *dash_width*)
|