Home
last modified time | relevance | path

Searched refs:items (Results 1 – 19 of 19) sorted by relevance

/lvgl-latest/docs/details/base-widget/layouts/
Dflex.rst14 It can arrange items (child Widgets) into rows or columns (tracks), handle wrapping,
15 adjust the spacing between items and tracks, handle *grow* to make
31 - **main direction**: row or column, the direction in which multiple items are
36 the track. The available space will be distributed among items
38 - **gap**: the space between rows and columns or the items on a track
89 - ``main_place`` determines how to distribute the items in their track
90 on the main axis. E.g. flush the items to the right on
93 - ``cross_place`` determines how to distribute the items in their track
94 on the cross axis. E.g. if the items have different height, align them
104 - :cpp:enumerator:`LV_FLEX_ALIGN_SPACE_EVENLY`: items are distributed so
[all …]
Dgrid.rst14 It can arrange items (child Widgets) into a 2D "table" that has rows and columns
34 - **gap**: the space between rows and columns or the items on a track
78 Grid items
103 If there is some empty space, items (Widgets) in Grid tracks can be aligned in several ways:
108 - :cpp:enumerator:`LV_GRID_ALIGN_SPACE_EVENLY`: items are distributed so that the spacing
109 between any two items (and the space to the edges) is equal. Not applies to ``track_cross_place``.
110 - :cpp:enumerator:`LV_GRID_ALIGN_SPACE_AROUND`: items are
112 visually the spaces aren't equal, since all the items have equal space
113 on both sides. This makes the space between items double the space
114 between edge items and the container's edge. Does not apply to ``track_cross_place``.
[all …]
/lvgl-latest/src/misc/
Dlv_lru.c92 cache->items = lv_malloc_zeroed(sizeof(lv_lru_item_t *) * cache->hash_table_size); in lv_lru_create()
93 if(!cache->items) { in lv_lru_create()
108 if(cache->items) { in lv_lru_delete()
110 item = cache->items[i]; in lv_lru_delete()
120 lv_free(cache->items); in lv_lru_delete()
147 item = cache->items[hash_index]; in lv_lru_set()
175 cache->items[hash_index] = item; in lv_lru_set()
195 lv_lru_item_t * item = cache->items[hash_index]; in lv_lru_get()
219 item = cache->items[hash_index]; in lv_lru_remove()
241 item = cache->items[i]; in lv_lru_remove_lru_item()
[all …]
Dlv_lru.h43 lv_lru_item_t ** items; member
/lvgl-latest/docs/details/widgets/
Droller.rst13 the other items due to different styles applied to it.
26 - Style ``text_line_space`` adjusts the space between list items.
45 Setting the list items
48 List items are passed to the Roller as a string with
50 The items should be separated by ``\n``. For example:
61 where *str* is the string equal to one of the list items.
Ddropdown.rst72 List items
75 The list items are passed to the Drop-Down List as a newline-separated list in a string
/lvgl-latest/examples/layouts/flex/
Dindex.rst7 Arrange items in rows with wrap and even spacing
31 RTL base direction changes order of the items
/lvgl-latest/scripts/
Dupdate_version.py99 for key, val in targets.items():
138 for key, val in targets.items():
Dproperties.py79 for widget, properties in properties_by_widget.items():
/lvgl-latest/docs/_ext/
Dlv_example.py55 for text, url in buttons.items():
/lvgl-latest/scripts/gen_json/
Dgen_json.py209 for key, value in os.environ.items():
Dpycparser_monkeypatch.py634 items = []
702 items.append(item)
717 for itm in items:
770 for en_name, enum_dict in _enums.items():
/lvgl-latest/docs/details/other-components/
Dgridnav.rst20 column. This is useful, for example, to simplify navigation among items in a
/lvgl-latest/src/libs/svg/
Dlv_svg_render.c84 lv_array_t items; member
1068 lv_array_init(&group->items, LV_TREE_NODE(node)->child_cnt, sizeof(lv_svg_render_obj_t *)); in _init_group()
1389 for(uint32_t i = 0; i < group->items.size; i++) { in _render_group()
1390 lv_svg_render_obj_t * list = *((lv_svg_render_obj_t **)lv_array_at(&group->items, i)); in _render_group()
1751 lv_array_deinit(&group->items); in _destroy_group()
2049 lv_array_push_back(&group->items, (uint8_t *)(&child->render_obj)); in _lv_svg_doc_walk_after_cb()
/lvgl-latest/docs/details/integration/bindings/
Dapi_json.rst62 - ``"dim"``: number of items in the array
138 - ``"enum"``: Describes a grouping of enumeration items/members.
/lvgl-latest/docs/
DCODING_STYLE.rst61 on child items.
164 * @param main_place where to place items on main axis (in their track).
Ddoc_builder.py1447 for enum, obj in enums.items():
1608 for n, o in container.items():
DDoxyfile12 # For lists, items can also be appended using:
1327 # The TOC_EXPAND flag can be set to YES to add extra items for group members to
2250 # number of items for each type to make the size more manageable. Set this to 0
/lvgl-latest/docs/details/base-widget/
Dcoord.rst553 * Flexbox: arrange Widgets into rows or columns, with support for wrapping and expanding items.