Searched refs:btn_event_cb (Results 1 – 6 of 6) sorted by relevance
/lvgl-3.7.0/examples/get_started/ |
D | lv_example_get_started_1.c | 4 static void btn_event_cb(lv_event_t * e) in btn_event_cb() function 26 …lv_obj_add_event_cb(btn, btn_event_cb, LV_EVENT_ALL, NULL); /*Assign a callback to the b… in lv_example_get_started_1()
|
D | lv_example_get_started_1.py | 12 btn.add_event_cb(self.btn_event_cb, lv.EVENT.ALL, None) # Assign a callback to the button 17 def btn_event_cb(self,evt): member in CounterBtn
|
/lvgl-3.7.0/examples/others/msg/ |
D | lv_example_msg_3.c | 13 static void btn_event_cb(lv_event_t * e); 44 lv_obj_add_event_cb(btn, btn_event_cb, LV_EVENT_ALL, NULL); in lv_example_msg_3() 60 lv_obj_add_event_cb(btn, btn_event_cb, LV_EVENT_ALL, NULL); in lv_example_msg_3() 107 static void btn_event_cb(lv_event_t * e) in btn_event_cb() function
|
/lvgl-3.7.0/ |
D | README_zh.md | 146 lv_obj_add_event_cb(btn, btn_event_cb, LV_EVENT_CLICKED, NULL); /*Assign a callback to the button*/ 153 void btn_event_cb(lv_event_t * e) 161 def btn_event_cb(e): 168 btn.add_event_cb(btn_event_cb, lv.EVENT.CLICKED, None)
|
D | README.md | 143 lv_obj_add_event_cb(btn, btn_event_cb, LV_EVENT_CLICKED, NULL); /*Assign a callback to the button*/ 150 void btn_event_cb(lv_event_t * e) 158 def btn_event_cb(e): 165 btn.add_event_cb(btn_event_cb, lv.EVENT.CLICKED, None)
|
/lvgl-3.7.0/docs/get-started/ |
D | quick-overview.md | 129 lv_obj_add_event_cb(btn, btn_event_cb, LV_EVENT_CLICKED, NULL); /*Assign a callback to the button*/ 133 void btn_event_cb(lv_event_t * e)
|