Home
last modified time | relevance | path

Searched refs:editable (Results 1 – 22 of 22) sorted by relevance

/lvgl-latest/src/core/
Dlv_obj_class_private.h57 uint32_t editable : 2; /**< Value from ::lv_obj_class_editable_t*/ member
Dlv_obj_class.c154 …while(class_p && class_p->editable == LV_OBJ_CLASS_EDITABLE_INHERIT) class_p = class_p->base_class; in lv_obj_is_editable()
158 return class_p->editable == LV_OBJ_CLASS_EDITABLE_TRUE; in lv_obj_is_editable()
Dlv_obj.c186 .editable = LV_OBJ_CLASS_EDITABLE_FALSE,
/lvgl-latest/src/widgets/objx_templ/
Dlv_objx_templ.c49 .editable = LV_OBJ_CLASS_EDITABLE_INHERIT,
/lvgl-latest/docs/details/widgets/
Dtable.rst17 Table is an editable Widget, allow selecting a cell with encoder and keyboard
Dcalendar.rst18 an editable Widget which allow selecting and clicking the dates with
Ddropdown.rst18 The Drop-down list is an editable Widget allowing list-item selection via
Dbuttonmatrix.rst19 Additionally, Button Matrix is an editable Widget: it allows selecting and clicking
/lvgl-latest/src/widgets/spinbox/
Dlv_spinbox.c44 .editable = LV_OBJ_CLASS_EDITABLE_TRUE,
/lvgl-latest/src/widgets/keyboard/
Dlv_keyboard.c70 .editable = 1,
/lvgl-latest/docs/details/main-components/
Dindev.rst140 event or scroll the widget based on the ``editable`` flag in the widget's class.
141 Non-editable widgets are scrolled and for editable widgets the event is sent.
/lvgl-latest/src/widgets/slider/
Dlv_slider.c101 .editable = LV_OBJ_CLASS_EDITABLE_TRUE,
/lvgl-latest/src/indev/
Dlv_indev.c1504 bool editable = lv_obj_is_editable(obj); in indev_proc_pointer_diff() local
1506 if(editable) { in indev_proc_pointer_diff()
/lvgl-latest/src/widgets/roller/
Dlv_roller.c84 .editable = LV_OBJ_CLASS_EDITABLE_TRUE,
/lvgl-latest/src/widgets/buttonmatrix/
Dlv_buttonmatrix.c74 .editable = LV_OBJ_CLASS_EDITABLE_TRUE,
/lvgl-latest/src/widgets/arc/
Dlv_arc.c61 .editable = LV_OBJ_CLASS_EDITABLE_TRUE,
/lvgl-latest/src/widgets/dropdown/
Dlv_dropdown.c122 .editable = LV_OBJ_CLASS_EDITABLE_TRUE,
/lvgl-latest/src/widgets/table/
Dlv_table.c66 .editable = LV_OBJ_CLASS_EDITABLE_TRUE,
/lvgl-latest/src/widgets/textarea/
Dlv_textarea.c157 .editable = LV_OBJ_CLASS_EDITABLE_TRUE,
/lvgl-latest/src/widgets/scale/
Dlv_scale.c79 .editable = LV_OBJ_CLASS_EDITABLE_TRUE,
/lvgl-latest/docs/details/base-widget/
Dobj.rst608 If :cpp:enumerator:`LV_OBJ_FLAG_SCROLLABLE` is enabled, but the Widget is not editable
/lvgl-latest/docs/
DCHANGELOG.rst69 - **feat(textarea): make textarea editable** `6467 <https://github.com/lvgl/lvgl/pull/6467>`__