Home
last modified time | relevance | path

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

/lvgl-2.7.6/src/lv_widgets/
Dlv_label.c99 ext->static_txt = 0; in lv_label_create()
140 if(copy_ext->static_txt == 0) in lv_label_create()
197 if(ext->text == text && ext->static_txt == 0) { in lv_label_set_text()
217 if(ext->text != NULL && ext->static_txt == 0) { in lv_label_set_text()
243 ext->static_txt = 0; in lv_label_set_text()
269 if(ext->text != NULL && ext->static_txt == 0) { in lv_label_set_text_fmt()
318 ext->static_txt = 0; /*Now the text is dynamically allocated*/ in lv_label_set_text_fmt()
334 if(ext->static_txt == 0 && ext->text != NULL) { in lv_label_set_text_static()
340 ext->static_txt = 1; in lv_label_set_text_static()
978 if(ext->static_txt != 0) return; in lv_label_ins_text()
[all …]
Dlv_dropdown.c109 ext->static_txt = 1; in lv_dropdown_create()
134 if(copy_ext->static_txt == 0) in lv_dropdown_create()
186 if(ext->static_txt == 0) in lv_dropdown_clear_options()
190 ext->static_txt = 0; in lv_dropdown_clear_options()
221 if(ext->options != NULL && ext->static_txt == 0) { in lv_dropdown_set_options()
234 ext->static_txt = 0; in lv_dropdown_set_options()
259 if(ext->static_txt == 0 && ext->options != NULL) { in lv_dropdown_set_options_static()
264 ext->static_txt = 1; in lv_dropdown_set_options_static()
282 if(ext->static_txt != 0) { in lv_dropdown_add_option()
291 ext->static_txt = 0; in lv_dropdown_add_option()
[all …]
Dlv_dropdown.h67 uint8_t static_txt : 1; member
Dlv_label.h93 uint8_t static_txt : 1; /*Flag to indicate the text is static*/ member