21#if LV_USE_BTNMATRIX == 0
22#error "lv_mbox: lv_btnm is required. Enable it in lv_conf.h (LV_USE_BTNMATRIX 1) "
26#error "lv_mbox: lv_label is required. Enable it in lv_conf.h (LV_USE_LABEL 1) "
63lv_obj_t * lv_msgbox_create(
lv_obj_t * parent,
const char * title,
const char * txt,
const char * btn_txts[],
81uint16_t lv_msgbox_get_active_btn(
lv_obj_t * mbox);
83const char * lv_msgbox_get_active_btn_text(
lv_obj_t * mbox);
85void lv_msgbox_close(
lv_obj_t * mbox);
87void lv_msgbox_close_async(
lv_obj_t * mbox);
Definition lv_obj_class.h:49