Home
last modified time | relevance | path

Searched refs:LV_DRAW_LABEL_NO_TXT_SEL (Results 1 – 5 of 5) sorted by relevance

/lvgl-latest/src/draw/
Dlv_draw_label.h24 #define LV_DRAW_LABEL_NO_TXT_SEL (0xFFFF) macro
Dlv_draw_label.c61 dsc->sel_start = LV_DRAW_LABEL_NO_TXT_SEL; in lv_draw_label_dsc_init()
62 dsc->sel_end = LV_DRAW_LABEL_NO_TXT_SEL; in lv_draw_label_dsc_init()
/lvgl-latest/src/widgets/
Dlv_textarea.c672 if((lv_label_get_text_selection_start(ta->label) != LV_DRAW_LABEL_NO_TXT_SEL || in lv_textarea_text_is_selected()
673 lv_label_get_text_selection_end(ta->label) != LV_DRAW_LABEL_NO_TXT_SEL)) { in lv_textarea_text_is_selected()
718 if(lv_label_get_text_selection_start(ta->label) != LV_DRAW_LABEL_NO_TXT_SEL || in lv_textarea_clear_selection()
719 lv_label_get_text_selection_end(ta->label) != LV_DRAW_LABEL_NO_TXT_SEL) { in lv_textarea_clear_selection()
720 lv_label_set_text_sel_start(ta->label, LV_DRAW_LABEL_NO_TXT_SEL); in lv_textarea_clear_selection()
721 lv_label_set_text_sel_end(ta->label, LV_DRAW_LABEL_NO_TXT_SEL); in lv_textarea_clear_selection()
1218 …if(label_data->sel_start != LV_DRAW_LABEL_NO_TXT_SEL || label_data->sel_end != LV_DRAW_LABEL_NO_TX… in update_cursor_position_on_click()
1219 label_data->sel_start = LV_DRAW_LABEL_NO_TXT_SEL; in update_cursor_position_on_click()
1220 label_data->sel_end = LV_DRAW_LABEL_NO_TXT_SEL; in update_cursor_position_on_click()
Dlv_label.h33 #define LV_LABEL_TEXT_SELECTION_OFF LV_DRAW_LABEL_NO_TXT_SEL
Dlv_label.c710 label->sel_start = LV_DRAW_LABEL_NO_TXT_SEL; in lv_label_constructor()
711 label->sel_end = LV_DRAW_LABEL_NO_TXT_SEL; in lv_label_constructor()
815 …if(label_draw_dsc.sel_start != LV_DRAW_LABEL_NO_TXT_SEL && label_draw_dsc.sel_end != LV_DRAW_LABEL… in draw_main()