Searched refs:lv_msgbox_add_footer_button (Results 1 – 8 of 8) sorted by relevance
/lvgl-latest/tests/src/test_cases/widgets/ |
D | test_msgbox.c | 42 lv_msgbox_add_footer_button(msgbox, "Apply"); in test_msgbox_creation_successful_with_close_button() 43 lv_msgbox_add_footer_button(msgbox, "Close"); in test_msgbox_creation_successful_with_close_button() 57 lv_msgbox_add_footer_button(msgbox, "Apply"); in test_msgbox_creation_successful_no_close_button() 58 lv_msgbox_add_footer_button(msgbox, "Close"); in test_msgbox_creation_successful_no_close_button() 72 lv_msgbox_add_footer_button(msgbox, "Apply"); in test_msgbox_creation_successful_modal() 73 lv_msgbox_add_footer_button(msgbox, "Close"); in test_msgbox_creation_successful_modal() 91 lv_msgbox_add_footer_button(msgbox, "Apply"); in test_msgbox_get_title() 92 lv_msgbox_add_footer_button(msgbox, "Close"); in test_msgbox_get_title() 155 lv_msgbox_add_footer_button(msgbox, "Apply"); in test_msgbox_content_auto_height() 156 lv_msgbox_add_footer_button(msgbox, "Close"); in test_msgbox_content_auto_height()
|
/lvgl-latest/examples/widgets/msgbox/ |
D | lv_example_msgbox_1.c | 22 btn = lv_msgbox_add_footer_button(mbox1, "Apply"); in lv_example_msgbox_1() 24 btn = lv_msgbox_add_footer_button(mbox1, "Cancel"); in lv_example_msgbox_1()
|
D | lv_example_msgbox_2.c | 53 lv_obj_t * apply_button = lv_msgbox_add_footer_button(setting, "Apply"); in lv_example_msgbox_2() 56 lv_obj_t * cancel_button = lv_msgbox_add_footer_button(setting, "Cancel"); in lv_example_msgbox_2()
|
/lvgl-latest/src/widgets/msgbox/ |
D | lv_msgbox.h | 82 lv_obj_t * lv_msgbox_add_footer_button(lv_obj_t * obj, const char * text);
|
D | lv_msgbox.c | 199 lv_obj_t * lv_msgbox_add_footer_button(lv_obj_t * obj, const char * text) in lv_msgbox_add_footer_button() function
|
/lvgl-latest/docs/details/widgets/ |
D | msgbox.rst | 57 :cpp:expr:`lv_msgbox_add_footer_button(msgbox, btn_text)` function. Calling this 90 lv_obj_t * lv_msgbox_add_footer_button(lv_obj_t * msgbox, const char * text);
|
/lvgl-latest/demos/stress/ |
D | lv_demo_stress.c | 247 lv_msgbox_add_footer_button(obj, "Button 1"); in obj_test_task_cb() 248 lv_msgbox_add_footer_button(obj, "Button 2"); in obj_test_task_cb()
|
/lvgl-latest/demos/keypad_encoder/ |
D | lv_demo_keypad_encoder.c | 169 lv_obj_t * btn = lv_msgbox_add_footer_button(mbox, "Ok"); in msgbox_create()
|