Message box (lv_mbox)

Overview

The Message boxes act as pop-ups. They are built from a background Container, a Label and a Button matrix for buttons.

The text will be broken into multiple lines automatically (has LV_LABEL_LONG_MODE_BREAK) and the height will be set automatically to involve the text and the buttons (LV_FIT_TIGHT auto fit vertically)-

Set text

To set the text use the lv_mbox_set_text(mbox, "My text") function.

Add buttons

To add buttons use the lv_mbox_add_btns(mbox, btn_str) function. You need specify the button’s text like const char * btn_str[] = {"Apply", "Close", ""}. For more information visit the Button matrix documentation.

Auto-close

With lv_mbox_start_auto_close(mbox, delay) the message box can be closed automatically after delay milliseconds with an animation. The lv_mbox_stop_auto_close(mbox) function stops a started auto close.

The duration of the close animation can be set by lv_mbox_set_anim_time(mbox, anim_time).

Styles

Use lv_mbox_set_style(mbox, LV_MBOX_STYLE_...,  &style) to set a new style for an element of the Message box:

  • LV_MBOX_STYLE_BG specifies the background container’s style. style.body sets the background and_style.label sets the text appearance. Default: lv_style_pretty

  • LV_MBOX_STYLE_BTN_BG style of the Button matrix background. Default: lv_style_trans

  • LV_MBOX_STYLE_BTN_REL style of the released buttons. Default: lv_style_btn_rel

  • LV_MBOX_STYLE_BTN_PR style of the pressed buttons. Default: lv_style_btn_pr

  • LV_MBOX_STYLE_BTN_TGL_REL style of the toggled released buttons. Default: lv_style_btn_tgl_rel

  • LV_MBOX_STYLE_BTN_TGL_PR style of the toggled pressed buttons. Default: lv_style_btn_tgl_pr

  • LV_MBOX_STYLE_BTN_INA style of the inactive buttons. Default: lv_style_btn_ina

The height of the button area comes from font height + padding.top + padding.bottom of LV_MBOX_STYLE_BTN_REL.

Events

Besides the Generic events the following Special events are sent by the Message boxes:

  • LV_EVENT_VALUE_CHANGED sent when the button is clicked. The event data is set to ID of the clicked button.

The Message box has a default event callback which closes itself when a button is clicked.

Learn more about Events.

##Keys

The following Keys are processed by the Buttons:

  • LV_KEY_RIGHT/DOWN Select the next button

  • LV_KEY_LEFT/TOP Select the previous button

  • LV_KEY_ENTER Clicks the selected button

Learn more about Keys.

Example

C

Simple Message box

Message box example in LittlevGL

code

#include "lvgl/lvgl.h"
#include <stdio.h>

static void event_handler(lv_obj_t * obj, lv_event_t event)
{
    if(event == LV_EVENT_VALUE_CHANGED) {
        printf("Button: %s\n", lv_mbox_get_active_btn_text(obj));
    }
}

void lv_ex_mbox_1(void)
{
    static const char * btns[] ={"Apply", "Close", ""};

    lv_obj_t * mbox1 = lv_mbox_create(lv_scr_act(), NULL);
    lv_mbox_set_text(mbox1, "A message box with two buttons.");
    lv_mbox_add_btns(mbox1, btns);
    lv_obj_set_width(mbox1, 200);
    lv_obj_set_event_cb(mbox1, event_handler);
    lv_obj_align(mbox1, NULL, LV_ALIGN_CENTER, 0, 0); /*Align to the corner*/
}

MicroPython

Simple Message box

Message box example in LittlevGL with MicroPython

code

def event_handler(obj, event):
    if event == lv.EVENT.VALUE_CHANGED:
        print("Button: %s" % lv.mbox.get_active_btn_text(obj))

btns = ["Apply", "Close", ""]

mbox1 = lv.mbox(lv.scr_act())
mbox1.set_text("A message box with two buttons.");
mbox1.add_btns(btns)
mbox1.set_width(200)
mbox1.set_event_cb(event_handler)
mbox1.align(None, lv.ALIGN.CENTER, 0, 0)  # Align to the corner

Modal

Modal Message box example in LittlevGL with MicroPython

code

welcome_info = "Welcome to the modal message box demo!\nPress the button to display a message box."
in_msg_info = "Notice that you cannot touch the button again while the message box is open."

class Modal(lv.mbox):
    """mbox with semi-transparent background"""
    def __init__(self, parent, *args, **kwargs):
        # Create a full-screen background
        modal_style = lv.style_t()
        lv.style_copy(modal_style, lv.style_plain_color)
        # Set the background's style
        modal_style.body.main_color = modal_style.body.grad_color = lv.color_make(0,0,0)
        modal_style.body.opa = lv.OPA._50
        
        # Create a base object for the modal background
        self.bg = lv.obj(parent)
        self.bg.set_style(modal_style)
        self.bg.set_pos(0, 0)
        self.bg.set_size(parent.get_width(), parent.get_height())
        self.bg.set_opa_scale_enable(True)  # Enable opacity scaling for the animation

        super().__init__(self.bg, *args, **kwargs)
        self.align(None, lv.ALIGN.CENTER, 0, 0)

        # Fade the message box in with an animation
        a = lv.anim_t()
        lv.anim_init(a)
        lv.anim_set_time(a, 500, 0)
        lv.anim_set_values(a, lv.OPA.TRANSP, lv.OPA.COVER)
        lv.anim_set_exec_cb(a, self.bg, lv.obj.set_opa_scale)
        lv.anim_create(a)
        super().set_event_cb(self.default_callback)

    def set_event_cb(self, callback):
        self.callback = callback

    def get_event_cb(self):
        return self.callback

    def default_callback(self, obj, evt):
        if evt == lv.EVENT.DELETE:# and obj == self:
            # Delete the parent modal background
            self.get_parent().del_async()
        elif evt == lv.EVENT.VALUE_CHANGED:
            # A button was clicked
            self.start_auto_close(0)
        # Call user-defined callback
        if self.callback is not None:
            self.callback(obj, evt)

def mbox_event_cb(obj, evt):
    if evt == lv.EVENT.DELETE:
        info.set_text(welcome_info)

def btn_event_cb(btn, evt):
    if evt == lv.EVENT.CLICKED:

        btns2 = ["Ok", "Cancel", ""]

        # Create the message box as a child of the modal background
        mbox = Modal(lv.scr_act())
        mbox.add_btns(btns2)
        mbox.set_text("Hello world!")
        mbox.set_event_cb(mbox_event_cb)

        info.set_text(in_msg_info)
        info.align(None, lv.ALIGN.IN_BOTTOM_LEFT, 5, -5)

# Get active screen
scr = lv.scr_act()

# Create a button, then set its position and event callback
btn = lv.btn(scr)
btn.set_size(200, 60)
btn.set_event_cb(btn_event_cb)
btn.align(None, lv.ALIGN.IN_TOP_LEFT, 20, 20)

# Create a label on the button
label = lv.label(btn)
label.set_text("Display a message box!")

# Create an informative label on the screen
info = lv.label(scr)
info.set_text(welcome_info)
info.set_long_mode(lv.label.LONG.BREAK) # Make sure text will wrap
info.set_width(scr.get_width() - 10)
info.align(None, lv.ALIGN.IN_BOTTOM_LEFT, 5, -5)

API

Typedefs

typedef uint8_t lv_mbox_style_t

Enums

enum [anonymous]

Message box styles.

Values:

enumerator LV_MBOX_STYLE_BG
enumerator LV_MBOX_STYLE_BTN_BG

Same meaning as ordinary button styles.

enumerator LV_MBOX_STYLE_BTN_REL
enumerator LV_MBOX_STYLE_BTN_PR
enumerator LV_MBOX_STYLE_BTN_TGL_REL
enumerator LV_MBOX_STYLE_BTN_TGL_PR
enumerator LV_MBOX_STYLE_BTN_INA

Functions

lv_obj_t *lv_mbox_create(lv_obj_t *par, const lv_obj_t *copy)

Create a message box objects

Return

pointer to the created message box

Parameters
  • par: pointer to an object, it will be the parent of the new message box

  • copy: pointer to a message box object, if not NULL then the new object will be copied from it

void lv_mbox_add_btns(lv_obj_t *mbox, const char *btn_mapaction[])

Add button to the message box

Parameters
  • mbox: pointer to message box object

  • btn_map: button descriptor (button matrix map). E.g. a const char *txt[] = {“ok”, “close”, “”} (Can not be local variable)

void lv_mbox_set_text(lv_obj_t *mbox, const char *txt)

Set the text of the message box

Parameters
  • mbox: pointer to a message box

  • txt: a ‘\0’ terminated character string which will be the message box text

void lv_mbox_set_anim_time(lv_obj_t *mbox, uint16_t anim_time)

Set animation duration

Parameters
  • mbox: pointer to a message box object

  • anim_time: animation length in milliseconds (0: no animation)

void lv_mbox_start_auto_close(lv_obj_t *mbox, uint16_t delay)

Automatically delete the message box after a given time

Parameters
  • mbox: pointer to a message box object

  • delay: a time (in milliseconds) to wait before delete the message box

void lv_mbox_stop_auto_close(lv_obj_t *mbox)

Stop the auto. closing of message box

Parameters
  • mbox: pointer to a message box object

void lv_mbox_set_style(lv_obj_t *mbox, lv_mbox_style_t type, const lv_style_t *style)

Set a style of a message box

Parameters
  • mbox: pointer to a message box object

  • type: which style should be set

  • style: pointer to a style

void lv_mbox_set_recolor(lv_obj_t *mbox, bool en)

Set whether recoloring is enabled. Must be called after lv_mbox_add_btns.

Parameters
  • btnm: pointer to button matrix object

  • en: whether recoloring is enabled

const char *lv_mbox_get_text(const lv_obj_t *mbox)

Get the text of the message box

Return

pointer to the text of the message box

Parameters
  • mbox: pointer to a message box object

uint16_t lv_mbox_get_active_btn(lv_obj_t *mbox)

Get the index of the lastly “activated” button by the user (pressed, released etc) Useful in the the event_cb.

Return

index of the last released button (LV_BTNM_BTN_NONE: if unset)

Parameters
  • btnm: pointer to button matrix object

const char *lv_mbox_get_active_btn_text(lv_obj_t *mbox)

Get the text of the lastly “activated” button by the user (pressed, released etc) Useful in the the event_cb.

Return

text of the last released button (NULL: if unset)

Parameters
  • btnm: pointer to button matrix object

uint16_t lv_mbox_get_anim_time(const lv_obj_t *mbox)

Get the animation duration (close animation time)

Return

animation length in milliseconds (0: no animation)

Parameters
  • mbox: pointer to a message box object

const lv_style_t *lv_mbox_get_style(const lv_obj_t *mbox, lv_mbox_style_t type)

Get a style of a message box

Return

style pointer to a style

Parameters
  • mbox: pointer to a message box object

  • type: which style should be get

bool lv_mbox_get_recolor(const lv_obj_t *mbox)

Get whether recoloring is enabled

Return

whether recoloring is enabled

Parameters
  • mbox: pointer to a message box object

lv_obj_t *lv_mbox_get_btnm(lv_obj_t *mbox)

Get message box button matrix

Return

pointer to button matrix object

Remark

return value will be NULL unless lv_mbox_add_btns has been already called

Parameters
  • mbox: pointer to a message box object

struct lv_mbox_ext_t

Public Members

lv_cont_ext_t bg
lv_obj_t *text
lv_obj_t *btnm
uint16_t anim_time