Home
last modified time | relevance | path

Searched refs:btn_txts (Results 1 – 3 of 3) sorted by relevance

/lvgl-3.7.0/src/extra/widgets/msgbox/
Dlv_msgbox.c61 … lv_msgbox_create(lv_obj_t * parent, const char * title, const char * txt, const char * btn_txts[], in lv_msgbox_create() argument
121 if(btn_txts) { in lv_msgbox_create()
123 lv_btnmatrix_set_map(mbox->btns, btn_txts); in lv_msgbox_create()
127 while(btn_txts[btn_cnt] && btn_txts[btn_cnt][0] != '\0') { in lv_msgbox_create()
Dlv_msgbox.h63 … lv_msgbox_create(lv_obj_t * parent, const char * title, const char * txt, const char * btn_txts[],
/lvgl-3.7.0/docs/widgets/extra/
Dmsgbox.md22 `lv_msgbox_create(parent, title, txt, btn_txts[], add_close_btn)` creates a message box.
25 `btn_txts[]` is an array with the buttons' text. E.g. `const char * btn_txts[] = {"Ok", "Cancel", N…