Home
last modified time | relevance | path

Searched refs:accepted_chars (Results 1 – 2 of 2) sorted by relevance

/lvgl-latest/src/widgets/textarea/
Dlv_textarea_private.h37 const char * accepted_chars; /**< Only these characters will be accepted. NULL: accept all */ member
Dlv_textarea.c602 ta->accepted_chars = list; in lv_textarea_set_accepted_chars()
759 return ta->accepted_chars; in lv_textarea_get_accepted_chars()
934 ta->accepted_chars = NULL; in lv_textarea_constructor()
1137 if(ta->accepted_chars == NULL || ta->accepted_chars[0] == '\0') return true; in char_is_accepted()
1141 while(ta->accepted_chars[i] != '\0') { in char_is_accepted()
1142 uint32_t a = lv_text_encoded_next(ta->accepted_chars, &i); in char_is_accepted()