Home
last modified time | relevance | path

Searched refs:lv_msgbox_add_footer_button (Results 1 – 8 of 8) sorted by relevance

/lvgl-latest/tests/src/test_cases/widgets/
Dtest_msgbox.c42 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/
Dlv_example_msgbox_1.c22 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()
Dlv_example_msgbox_2.c53 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/
Dlv_msgbox.h82 lv_obj_t * lv_msgbox_add_footer_button(lv_obj_t * obj, const char * text);
Dlv_msgbox.c199 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/
Dmsgbox.rst57 :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/
Dlv_demo_stress.c247 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/
Dlv_demo_keypad_encoder.c169 lv_obj_t * btn = lv_msgbox_add_footer_button(mbox, "Ok"); in msgbox_create()