Lines Matching refs:list

10 The Drop-Down List allows the user to select a value from a list.
13 predefined text. When activated (by click on the Drop-Down List), a list
15 selects a new value, the list is deleted again.
17 The Drop-down list is added to the default group (if one is set).
18 The Drop-down list is an editable Widget allowing list-item selection via
27 The Drop-Down List Widget is built from the elements: "button" and "list"
43 - :cpp:enumerator:`LV_PART_MAIN` The list itself; uses the :ref:`typical background
45 height of the list.
53 The list is shown/hidden on open/close. To add styles to it use
54 :cpp:expr:`lv_dropdown_get_list(dropdown)` to get the list object. Example:
58 lv_obj_t * list = lv_dropdown_get_list(dropdown) /* Get list */
59 lv_obj_add_style(list, &my_style, selector) /* Add styles to list */
75 The list items are passed to the Drop-Down List as a newline-separated list in a string
77 Each list item should be separated by ``\n``. Example: ``"First\nSecond\nThird"``.
105 The list can be created on any side. The default :cpp:enumerator:`LV_DIR_BOTTOM` can
108 If the list would be vertically out of the screen, it will be aligned to
141 - :cpp:enumerator:`LV_EVENT_VALUE_CHANGED` Sent when a new option is selected or the list is opened…
142 - :cpp:enumerator:`LV_EVENT_CANCEL` Sent when list is closed.
143 - :cpp:enumerator:`LV_EVENT_READY` Sent when list is opened.
158 - ``LV_KEY_RIGHT/DOWN`` Select next list item.
159 - ``LV_KEY_LEFT/UP`` Select previous list item.
160 - :cpp:enumerator:`LV_KEY_ENTER` Apply selected list item (sends