Searched refs:mbox1 (Results 1 – 5 of 5) sorted by relevance
/lvgl-3.6.0/examples/widgets/msgbox/ |
D | lv_example_msgbox_1.py | 7 mbox1 = lv.msgbox(lv.scr_act(), "Hello", "This is a message box with two buttons.", btns, True) variable 8 mbox1.add_event_cb(event_cb, lv.EVENT.VALUE_CHANGED, None) 9 mbox1.center()
|
D | lv_example_msgbox_1.c | 14 …lv_obj_t * mbox1 = lv_msgbox_create(NULL, "Hello", "This is a message box with two buttons.", btns… in lv_example_msgbox_1() local 15 lv_obj_add_event_cb(mbox1, event_cb, LV_EVENT_VALUE_CHANGED, NULL); in lv_example_msgbox_1() 16 lv_obj_center(mbox1); in lv_example_msgbox_1()
|
/lvgl-3.6.0/examples/widgets/menu/ |
D | lv_example_menu_2.py | 4 mbox1 = lv.msgbox(lv.scr_act(), "Hello", "Root back btn click.", None, True) 5 mbox1.center()
|
D | lv_example_menu_2.c | 10 lv_obj_t * mbox1 = lv_msgbox_create(NULL, "Hello", "Root back btn click.", NULL, true); in back_event_handler() local 11 lv_obj_center(mbox1); in back_event_handler()
|
D | lv_example_menu_5.c | 119 lv_obj_t * mbox1 = lv_msgbox_create(NULL, "Hello", "Root back btn click.", NULL, true); in back_event_handler() local 120 lv_obj_center(mbox1); in back_event_handler()
|