Lines Matching refs:group
242 - Assign the group to an input device: :cpp:expr:`lv_indev_set_group(indev, g)`.
243 - Use ``LV_KEY_...`` to navigate among the Widgets in the group. See
282 To use an Encoder (similar to the *Keypads*) the Widgets should be added to a group.
303 input from a keypad or encoder), that set of Widgets is placed in a group which
306 In each group there is exactly one object with focus which receives the pressed keys
312 You need to associate an input device with a group. An input device can
313 send key events to only one group but a group can receive data from more
316 To create a group use :cpp:expr:`lv_group_t * g = lv_group_create()` and to add
317 a Widget to the group use :cpp:expr:`lv_group_add_obj(g, widget)`.
319 Once a Widget has been added to a group, you can find out what group it is in
322 To find out if a Widget in a group has focus, call :cpp:expr:`lv_obj_is_focused(widget)`.
323 If the Widget is not part of a group, this function will return ``false``.
325 To associate a group with an input device use :cpp:expr:`lv_indev_set_group(indev, g)`.
360 in a group and interact with selected Widgets.
393 be automatically added to a default group. Just create a group with
394 :cpp:expr:`lv_group_t * g = lv_group_create()` and set the default group with
397 Don't forget to assign one or more input devices to the default group