/** * @file lv_rect.h * */ #ifndef LV_LABEL_H #define LV_LABEL_H #ifdef __cplusplus extern "C" { #endif /********************* * INCLUDES *********************/ #ifdef LV_CONF_INCLUDE_SIMPLE #include "lv_conf.h" #else #include "../../lv_conf.h" #endif #if LV_USE_LABEL != 0 #include "../lv_core/lv_obj.h" #include "../lv_font/lv_font.h" #include "../lv_font/lv_symbol_def.h" #include "../lv_misc/lv_txt.h" #include "../lv_draw/lv_draw.h" /********************* * DEFINES *********************/ #define LV_LABEL_DOT_NUM 3 #define LV_LABEL_POS_LAST 0xFFFF #define LV_LABEL_TEXT_SEL_OFF 0xFFFF /********************** * TYPEDEFS **********************/ /** Long mode behaviors. Used in 'lv_label_ext_t' */ enum { LV_LABEL_LONG_EXPAND, /**< Expand the object size to the text size*/ LV_LABEL_LONG_BREAK, /**< Keep the object width, break the too long lines and expand the object height*/ LV_LABEL_LONG_DOT, /**< Keep the size and write dots at the end if the text is too long*/ LV_LABEL_LONG_SROLL, /**< Keep the size and roll the text back and forth*/ LV_LABEL_LONG_SROLL_CIRC, /**< Keep the size and roll the text circularly*/ LV_LABEL_LONG_CROP, /**< Keep the size and crop the text out of it*/ }; typedef uint8_t lv_label_long_mode_t; /** Label align policy*/ enum { LV_LABEL_ALIGN_LEFT, /**< Align text to left */ LV_LABEL_ALIGN_CENTER, /**< Align text to center */ LV_LABEL_ALIGN_RIGHT, /**< Align text to right */ }; typedef uint8_t lv_label_align_t; /** Data of label*/ typedef struct { /*Inherited from 'base_obj' so no inherited ext.*/ /*Ext. of ancestor*/ /*New data for this type */ char * text; /*Text of the label*/ union { char * tmp_ptr; /* Pointer to the allocated memory containing the character which are replaced by dots (Handled by the library)*/ char tmp[sizeof(char *)]; /* Directly store the characters if <=4 characters */ } dot; uint16_t dot_end; /*The text end position in dot mode (Handled by the library)*/ lv_point_t offset; /*Text draw position offset*/ #if LV_LABEL_LONG_TXT_HINT lv_draw_label_hint_t hint; /*Used to buffer info about large text*/ #endif #if LV_USE_ANIMATION uint16_t anim_speed; /*Speed of scroll and roll animation in px/sec unit*/ #endif #if LV_LABEL_TEXT_SEL uint16_t txt_sel_start; /*Left-most selection character*/ uint16_t txt_sel_end; /*Right-most selection character*/ #endif lv_label_long_mode_t long_mode : 3; /*Determinate what to do with the long texts*/ uint8_t static_txt : 1; /*Flag to indicate the text is static*/ uint8_t align : 2; /*Align type from 'lv_label_align_t'*/ uint8_t recolor : 1; /*Enable in-line letter re-coloring*/ uint8_t expand : 1; /*Ignore real width (used by the library with LV_LABEL_LONG_ROLL)*/ uint8_t body_draw : 1; /*Draw background body*/ uint8_t dot_tmp_alloc : 1; /*True if dot_tmp has been allocated. False if dot_tmp directly holds up to 4 bytes of characters */ } lv_label_ext_t; /** Label styles*/ enum { LV_LABEL_STYLE_MAIN, }; typedef uint8_t lv_label_style_t; /********************** * GLOBAL PROTOTYPES **********************/ /** * Create a label objects * @param par pointer to an object, it will be the parent of the new label * @param copy pointer to a button object, if not NULL then the new object will be copied from it * @return pointer to the created button */ lv_obj_t * lv_label_create(lv_obj_t * par, const lv_obj_t * copy); /*===================== * Setter functions *====================*/ /** * Set a new text for a label. Memory will be allocated to store the text by the label. * @param label pointer to a label object * @param text '\0' terminated character string. NULL to refresh with the current text. */ void lv_label_set_text(lv_obj_t * label, const char * text); /** * Set a new text for a label from a character array. The array don't has to be '\0' terminated. * Memory will be allocated to store the array by the label. * @param label pointer to a label object * @param array array of characters or NULL to refresh the label * @param size the size of 'array' in bytes */ void lv_label_set_array_text(lv_obj_t * label, const char * array, uint16_t size); /** * Set a static text. It will not be saved by the label so the 'text' variable * has to be 'alive' while the label exist. * @param label pointer to a label object * @param text pointer to a text. NULL to refresh with the current text. */ void lv_label_set_static_text(lv_obj_t * label, const char * text); /** * Set the behavior of the label with longer text then the object size * @param label pointer to a label object * @param long_mode the new mode from 'lv_label_long_mode' enum. * In LV_LONG_BREAK/LONG/ROLL the size of the label should be set AFTER this * function */ void lv_label_set_long_mode(lv_obj_t * label, lv_label_long_mode_t long_mode); /** * Set the align of the label (left or center) * @param label pointer to a label object * @param align 'LV_LABEL_ALIGN_LEFT' or 'LV_LABEL_ALIGN_LEFT' */ void lv_label_set_align(lv_obj_t * label, lv_label_align_t align); /** * Enable the recoloring by in-line commands * @param label pointer to a label object * @param en true: enable recoloring, false: disable */ void lv_label_set_recolor(lv_obj_t * label, bool en); /** * Set the label to draw (or not draw) background specified in its style's body * @param label pointer to a label object * @param en true: draw body; false: don't draw body */ void lv_label_set_body_draw(lv_obj_t * label, bool en); /** * Set the label's animation speed in LV_LABEL_LONG_SROLL/SCROLL_CIRC modes * @param label pointer to a label object * @param anim_speed speed of animation in px/sec unit */ void lv_label_set_anim_speed(lv_obj_t * label, uint16_t anim_speed); /** * Set the style of an label * @param label pointer to an label object * @param type which style should be get (can be only `LV_LABEL_STYLE_MAIN`) * @param style pointer to a style */ static inline void lv_label_set_style(lv_obj_t * label, lv_label_style_t type, const lv_style_t * style) { (void)type; /*Unused*/ lv_obj_set_style(label, style); } /** * @brief Set the selection start index. * @param label pointer to a label object. * @param index index to set. `LV_LABEL_TXT_SEL_OFF` to select nothing. */ void lv_label_set_text_sel_start(lv_obj_t * label, uint16_t index); /** * @brief Set the selection end index. * @param label pointer to a label object. * @param index index to set. `LV_LABEL_TXT_SEL_OFF` to select nothing. */ void lv_label_set_text_sel_end(lv_obj_t * label, uint16_t index); /*===================== * Getter functions *====================*/ /** * Get the text of a label * @param label pointer to a label object * @return the text of the label */ char * lv_label_get_text(const lv_obj_t * label); /** * Get the long mode of a label * @param label pointer to a label object * @return the long mode */ lv_label_long_mode_t lv_label_get_long_mode(const lv_obj_t * label); /** * Get the align attribute * @param label pointer to a label object * @return LV_LABEL_ALIGN_LEFT or LV_LABEL_ALIGN_CENTER */ lv_label_align_t lv_label_get_align(const lv_obj_t * label); /** * Get the recoloring attribute * @param label pointer to a label object * @return true: recoloring is enabled, false: disable */ bool lv_label_get_recolor(const lv_obj_t * label); /** * Get the body draw attribute * @param label pointer to a label object * @return true: draw body; false: don't draw body */ bool lv_label_get_body_draw(const lv_obj_t * label); /** * Get the label's animation speed in LV_LABEL_LONG_ROLL and SCROLL modes * @param label pointer to a label object * @return speed of animation in px/sec unit */ uint16_t lv_label_get_anim_speed(const lv_obj_t * label); /** * Get the relative x and y coordinates of a letter * @param label pointer to a label object * @param index index of the letter [0 ... text length]. Expressed in character index, not byte * index (different in UTF-8) * @param pos store the result here (E.g. index = 0 gives 0;0 coordinates) */ void lv_label_get_letter_pos(const lv_obj_t * label, uint16_t index, lv_point_t * pos); /** * Get the index of letter on a relative point of a label * @param label pointer to label object * @param pos pointer to point with coordinates on a the label * @return the index of the letter on the 'pos_p' point (E.g. on 0;0 is the 0. letter) * Expressed in character index and not byte index (different in UTF-8) */ uint16_t lv_label_get_letter_on(const lv_obj_t * label, lv_point_t * pos); /** * Check if a character is drawn under a point. * @param label Label object * @param pos Point to check for characte under * @return whether a character is drawn under the point */ bool lv_label_is_char_under_pos(const lv_obj_t * label, lv_point_t * pos); /** * Get the style of an label object * @param label pointer to an label object * @param type which style should be get (can be only `LV_LABEL_STYLE_MAIN`) * @return pointer to the label's style */ static inline const lv_style_t * lv_label_get_style(const lv_obj_t * label, lv_label_style_t type) { (void)type; /*Unused*/ return lv_obj_get_style(label); } /** * @brief Get the selection start index. * @param label pointer to a label object. * @return selection start index. `LV_LABEL_TXT_SEL_OFF` if nothing is selected. */ uint16_t lv_label_get_text_sel_start(const lv_obj_t * label); /** * @brief Get the selection end index. * @param label pointer to a label object. * @return selection end index. `LV_LABEL_TXT_SEL_OFF` if nothing is selected. */ uint16_t lv_label_get_text_sel_end(const lv_obj_t * label); /*===================== * Other functions *====================*/ /** * Insert a text to the label. The label text can not be static. * @param label pointer to a label object * @param pos character index to insert. Expressed in character index and not byte index (Different * in UTF-8) 0: before first char. LV_LABEL_POS_LAST: after last char. * @param txt pointer to the text to insert */ void lv_label_ins_text(lv_obj_t * label, uint32_t pos, const char * txt); /** * Delete characters from a label. The label text can not be static. * @param label pointer to a label object * @param pos character index to insert. Expressed in character index and not byte index (Different * in UTF-8) 0: before first char. * @param cnt number of characters to cut */ void lv_label_cut_text(lv_obj_t * label, uint32_t pos, uint32_t cnt); /********************** * MACROS **********************/ #endif /*LV_USE_LABEL*/ #ifdef __cplusplus } /* extern "C" */ #endif #endif /*LV_LABEL_H*/