Lines Matching refs:widget
258 :cpp:expr:`lv_obj_set_layout(widget, LV_LAYOUT_FLEX)`
263 :cpp:expr:`lv_obj_set_layout(widget, LV_LAYOUT_FLEX/GRID)` <== arg with > 1 word
264 :cpp:expr:`lv_obj_set_layout(widget, LV_LAYOUT_*)` <== asterisk
265 :cpp:expr:`lv_obj_set_layout(*widget, LV_LAYOUT_FLEX)` <== asterisk
266 :cpp:expr:`lv_obj_set_layout((lv_obj_t *)widget, LV_LAYOUT_FLEX)` <== cast
267 :cpp:expr:`lv_obj_set_layout(&widget, LV_LAYOUT_FLEX);` <== ampersand & semicolon
268 :cpp:expr:`lv_obj_set_layout(widget, ...)` <== lone ellipsis
272 ``lv_obj_set_layout(widget, LV_LAYOUT_FLEX/GRID)``
273 ``lv_obj_set_layout(widget, LV_LAYOUT_*)``
274 ``lv_obj_set_layout(*widget, LV_LAYOUT_FLEX)``
275 ``lv_obj_set_layout((lv_obj_t *)widget, LV_LAYOUT_FLEX)``
276 ``lv_obj_set_layout(&widget, LV_LAYOUT_FLEX);``
277 ``lv_obj_set_layout(widget, ...)``