Home
last modified time | relevance | path

Searched refs:float_btn_event_cb (Results 1 – 4 of 4) sorted by relevance

/lvgl-3.7.0/examples/scroll/
Dlv_example_scroll_3.c6 static void float_btn_event_cb(lv_event_t * e) in float_btn_event_cb() function
43 lv_obj_add_event_cb(float_btn, float_btn_event_cb, LV_EVENT_ALL, list); in lv_example_scroll_3()
Dlv_example_scroll_3.py19 float_btn.add_event_cb(lambda evt: self.float_btn_event_cb(evt,list), lv.EVENT.ALL, None)
24 def float_btn_event_cb(self,e,list): member in ScrollExample_3
/lvgl-3.7.0/examples/widgets/menu/
Dlv_example_menu_4.c8 static void float_btn_event_cb(lv_event_t * e) in float_btn_event_cb() function
63 lv_obj_add_event_cb(float_btn, float_btn_event_cb, LV_EVENT_CLICKED, menu); in lv_example_menu_4()
Dlv_example_menu_4.py3 def float_btn_event_cb(e): function
44 float_btn.add_event_cb(float_btn_event_cb, lv.EVENT.CLICKED, None)