Home
last modified time | relevance | path

Searched refs:LV_LABEL_LONG_DOT (Results 1 – 4 of 4) sorted by relevance

/lvgl-3.5.0/docs/widgets/core/
Dlabel.md23 …safe to use with `lv_label_set_text_static` (except when used with `LV_LABEL_LONG_DOT`, as it modi…
34 - `LV_LABEL_LONG_DOT` Replaces the last 3 characters from bottom right corner of the label with dot…
41 Note that `LV_LABEL_LONG_DOT` manipulates the text buffer in-place in order to add/remove the dots.
43 …fer you pass to `lv_label_set_text_static` must be writable if you plan to use `LV_LABEL_LONG_DOT`.
/lvgl-3.5.0/src/widgets/
Dlv_label.h46LV_LABEL_LONG_DOT, /**< Keep the size and write dots at the end if the text is too lo… enumerator
Dlv_label.c211 if(label->long_mode == LV_LABEL_LONG_DOT && label->dot_end != LV_LABEL_DOT_END_INV) { in lv_label_set_long_mode()
1105 else if(label->long_mode == LV_LABEL_LONG_DOT) { in lv_label_refr_text()
1177 if(label->long_mode != LV_LABEL_LONG_DOT) return; in lv_label_revert_dots()
/lvgl-3.5.0/src/extra/widgets/win/
Dlv_win.c59 lv_label_set_long_mode(title, LV_LABEL_LONG_DOT); in lv_win_add_title()