Lines Matching full:or

27 - :cpp:enumerator:`LV_INDEV_TYPE_POINTER`: touchpad or mouse
28 - :cpp:enumerator:`LV_INDEV_TYPE_KEYPAD`: keyboard or keypad
37 Touchpad, Touch-Screen, Mouse or Any Pointer
134 the last clicked widget will be either scrolled or it's value will be incremented/decremented
140 event or scroll the widget based on the ``editable`` flag in the widget's class.
157 value or the Widget will be scrolled that amount of pixels.
173 The driver or application collects touch events until the indev read callback
219 The state or scale of the pinch gesture can be retrieved by
226 Keypad or Keyboard
229 Full keyboards with all the letters or simple keypads with a few navigation buttons
232 You can fully control the user interface without a touchpad or mouse by using a
233 keypad or encoder. It works similar to the *TAB* key on the PC to select an element
234 in an application or web page.
236 To use a keyboard or keypad:
253 data->key = last_key(); /* Get the last pressed or released key */
303 input from a keypad or encoder), that set of Widgets is placed in a group which
307 or the encoder actions. For example, if a :ref:`Text Area <lv_textarea>` has focus
310 left or right arrows, the slider's value will be changed.
338 …rs :cpp:enumerator:`LV_EVENT_PRESSED`, :cpp:enumerator:`LV_EVENT_CLICKED`, or :cpp:enumerator:`LV_…
339 - :cpp:enumerator:`LV_KEY_UP`: Increase value or move up
340 - :cpp:enumerator:`LV_KEY_DOWN`: Decrease value or move down
341 - :cpp:enumerator:`LV_KEY_RIGHT`: Increase value or move to the right
342 - :cpp:enumerator:`LV_KEY_LEFT`: Decrease value or move to the left
343 - :cpp:enumerator:`LV_KEY_ESC`: Close or exit (e.g. close a :ref:`Drop-Down List <lv_dropdown>`)
377 In *Navigate* mode, an encoder's :cpp:enumerator:`LV_KEY_LEFT` or :cpp:enumerator:`LV_KEY_RIGHT` is…
378 :cpp:enumerator:`LV_KEY_NEXT` or :cpp:enumerator:`LV_KEY_PREV`. Therefore, the next or previous obj…
383 object. Depending on the Widget's type, a short or long press of
397 Don't forget to assign one or more input devices to the default group
403 When a Widget receives focus either by clicking it via touchpad or by navigating to
404 it with an encoder or keypad, it goes to the :cpp:enumerator:`LV_STATE_FOCUSED`
421 handy if you have only few buttons available, or you want to use other
426 - :cpp:enumerator:`LV_KEY_ENTER`: will simulate press or pushing of the encoder button.
442 data->key = last_key(); /* Get the last pressed or released key */
467 global variable or as a static variable inside a function.