1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00
lvgl/lv_objx/lv_label.c

694 lines
22 KiB
C
Raw Normal View History

2016-06-08 07:25:08 +02:00
/**
* @file lv_rect.c
*
*/
/*********************
* INCLUDES
*********************/
#include "lv_conf.h"
2016-06-08 07:25:08 +02:00
#if USE_LV_LABEL != 0
2017-04-21 09:15:39 +02:00
#include "misc/gfx/color.h"
#include "misc/math/math_base.h"
2016-06-08 07:25:08 +02:00
#include "lv_label.h"
#include "../lv_obj/lv_obj.h"
#include "../lv_obj/lv_group.h"
2017-04-21 09:15:39 +02:00
#include "misc/gfx/text.h"
#include "misc/gfx/anim.h"
2016-06-08 07:25:08 +02:00
#include "../lv_draw/lv_draw.h"
/*********************
* DEFINES
*********************/
/*Test configurations*/
#ifndef LV_LABEL_SCROLL_SPEED
#define LV_LABEL_SCROLL_SPEED (25 * LV_DOWNSCALE) /*Hor, or ver. scroll speed (px/sec) in 'LV_LABEL_LONG_SCROLL' mode*/
#endif
#ifndef LV_LABEL_SCROLL_SPEED_VER
#define LV_LABEL_SCROLL_SPEED_VER (10 * LV_DOWNSCALE) /*Ver. scroll speed if hor. scroll is applied too*/
#endif
#ifndef LV_LABEL_SCROLL_PLAYBACK_PAUSE
#define LV_LABEL_SCROLL_PLAYBACK_PAUSE 500 /*Wait before the scroll turns back in ms*/
#endif
#ifndef LV_LABEL_SCROLL_REPEAT_PAUSE
#define LV_LABEL_SCROLL_REPEAT_PAUSE 500 /*Wait before the scroll begins again in ms*/
#endif
#define LV_LABEL_DOT_NUM 3
#define LV_LABEL_DOT_END_INV 0xFFFF
2016-06-08 07:25:08 +02:00
/**********************
* TYPEDEFS
**********************/
/**********************
* STATIC PROTOTYPES
**********************/
2016-10-07 11:15:46 +02:00
static bool lv_label_design(lv_obj_t * label, const area_t * mask, lv_design_mode_t mode);
static void lv_label_refr_text(lv_obj_t * label);
static void lv_label_set_offset_x(lv_obj_t * label, cord_t x);
static void lv_label_set_offset_y(lv_obj_t * label, cord_t y);
2016-06-08 07:25:08 +02:00
/**********************
* STATIC VARIABLES
**********************/
/**********************
* MACROS
**********************/
/**********************
* GLOBAL FUNCTIONS
**********************/
/**
* Create a label objects
2016-10-07 11:15:46 +02:00
* @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
2016-06-08 07:25:08 +02:00
* @return pointer to the created button
*/
2016-10-07 11:15:46 +02:00
lv_obj_t * lv_label_create(lv_obj_t * par, lv_obj_t * copy)
2016-06-08 07:25:08 +02:00
{
/*Create a basic object*/
2016-10-07 11:15:46 +02:00
lv_obj_t * new_label = lv_obj_create(par, copy);
dm_assert(new_label);
2016-06-08 07:25:08 +02:00
/*Extend the basic object to a label object*/
2016-10-07 11:15:46 +02:00
lv_obj_alloc_ext(new_label, sizeof(lv_label_ext_t));
2016-06-08 07:25:08 +02:00
lv_label_ext_t * ext = lv_obj_get_ext(new_label);
dm_assert(ext);
ext->txt = NULL;
ext->static_txt = 0;
ext->recolor = 0;
ext->dot_end = LV_LABEL_DOT_END_INV;
ext->long_mode = LV_LABEL_LONG_EXPAND;
ext->offset.x = 0;
ext->offset.y = 0;
2016-10-07 11:15:46 +02:00
lv_obj_set_design_f(new_label, lv_label_design);
lv_obj_set_signal_f(new_label, lv_label_signal);
2016-06-08 07:25:08 +02:00
/*Init the new label*/
2016-10-07 11:15:46 +02:00
if(copy == NULL) {
lv_obj_set_click(new_label, false);
lv_obj_set_style(new_label, NULL);
lv_label_set_long_mode(new_label, LV_LABEL_LONG_EXPAND);
2016-10-07 11:15:46 +02:00
lv_label_set_text(new_label, "Text");
2016-06-08 07:25:08 +02:00
}
2016-10-07 11:15:46 +02:00
/*Copy 'copy' if not NULL*/
2016-06-08 07:25:08 +02:00
else {
lv_label_ext_t * copy_ext = lv_obj_get_ext(copy);
lv_label_set_long_mode(new_label, lv_label_get_long_mode(copy));
lv_label_set_recolor(new_label, lv_label_get_recolor(copy));
if(copy_ext->static_txt == 0) lv_label_set_text(new_label, lv_label_get_text(copy));
else lv_label_set_text_static(new_label, lv_label_get_text(copy));
/*Refresh the style with new signal function*/
lv_obj_refr_style(new_label);
2016-06-08 07:25:08 +02:00
}
2016-10-07 11:15:46 +02:00
return new_label;
2016-06-08 07:25:08 +02:00
}
/**
* Signal function of the label
2016-10-07 11:15:46 +02:00
* @param label pointer to a label object
2016-06-08 07:25:08 +02:00
* @param sign a signal type from lv_signal_t enum
* @param param pointer to a signal specific variable
*/
2016-10-07 11:15:46 +02:00
bool lv_label_signal(lv_obj_t * label, lv_signal_t sign, void * param)
2016-06-08 07:25:08 +02:00
{
bool valid;
/* Include the ancient signal function */
2016-10-07 11:15:46 +02:00
valid = lv_obj_signal(label, sign, param);
2016-06-08 07:25:08 +02:00
/* The object can be deleted so check its validity and then
* make the object specific signal handling */
if(valid != false) {
lv_label_ext_t * ext = lv_obj_get_ext(label);
2016-06-08 07:25:08 +02:00
/*No signal handling*/
switch(sign) {
case LV_SIGNAL_CLEANUP:
if(ext->static_txt == 0) {
dm_free(ext->txt);
ext->txt = NULL;
}
2016-06-08 07:25:08 +02:00
break;
case LV_SIGNAL_STYLE_CHG:
2016-10-07 11:15:46 +02:00
lv_label_set_text(label, NULL);
2016-06-08 07:25:08 +02:00
break;
default:
break;
}
}
return valid;
}
/*=====================
* Setter functions
*====================*/
/**
* Set a new text for a label. Memory will be allocated to store the text by the label.
2016-10-07 11:15:46 +02:00
* @param label pointer to a label object
* @param text '\0' terminated character string. NULL to refresh with the current text.
2016-06-08 07:25:08 +02:00
*/
2016-10-07 11:15:46 +02:00
void lv_label_set_text(lv_obj_t * label, const char * text)
2016-06-08 07:25:08 +02:00
{
2016-10-07 11:15:46 +02:00
lv_obj_inv(label);
2016-06-08 07:25:08 +02:00
2016-10-07 11:15:46 +02:00
lv_label_ext_t * ext = lv_obj_get_ext(label);
2016-06-08 07:25:08 +02:00
/*If trying to set its own text or the text is NULL then refresh */
if(text == ext->txt || text == NULL) {
lv_label_refr_text(label);
return;
}
/*Allocate space for the new text*/
uint32_t len = strlen(text) + 1;
if(ext->txt != NULL && ext->static_txt == 0) {
dm_free(ext->txt);
2017-04-21 17:11:47 +02:00
ext->txt = NULL;
}
ext->txt = dm_alloc(len);
strcpy(ext->txt, text);
ext->static_txt = 0; /*Now the text is dynamically allocated*/
2016-06-08 07:25:08 +02:00
lv_label_refr_text(label);
}
/**
* 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_text_array(lv_obj_t * label, const char * array, uint16_t size)
{
lv_obj_inv(label);
lv_label_ext_t * ext = lv_obj_get_ext(label);
/*If trying to set its own text or the array is NULL then refresh */
if(array == ext->txt || array == NULL) {
lv_label_refr_text(label);
return;
2016-06-08 07:25:08 +02:00
}
/*Allocate space for the new text*/
if(ext->txt != NULL && ext->static_txt == 0) {
dm_free(ext->txt);
2017-04-21 17:11:47 +02:00
ext->txt = NULL;
}
ext->txt = dm_alloc(size + 1);
memcpy(ext->txt, array, size);
ext->txt[size] = '\0';
ext->static_txt = 0; /*Now the text is dynamically allocated*/
lv_label_refr_text(label);
}
/**
* 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_text_static(lv_obj_t * label, const char * text)
{
lv_label_ext_t * ext = lv_obj_get_ext(label);
if(ext->static_txt == 0 && ext->txt != NULL) {
dm_free(ext->txt);
2017-04-21 17:11:47 +02:00
ext->txt = NULL;
2016-06-08 07:25:08 +02:00
}
if(text != NULL) {
ext->static_txt = 1;
ext->txt = (char *) text;
}
2016-06-15 09:38:20 +02:00
lv_label_refr_text(label);
2016-06-08 07:25:08 +02:00
}
2017-02-06 08:52:59 +01:00
/**
* Append a text to the label. The label current label text can not be static.
* @param label pointer to label object
* @param text pointe rto the new text
*/
void lv_label_append_text(lv_obj_t * label, const char * text)
{
lv_label_ext_t * ext = lv_obj_get_ext(label);
/*Can not append to static text*/
if(ext->static_txt != 0) return;
lv_obj_inv(label);
/*Allocate space for the new text*/
uint32_t old_len = strlen(ext->txt);
uint32_t app_len = strlen(text);
uint32_t new_len = app_len + old_len;
ext->txt = dm_realloc(ext->txt, new_len + 1);
memcpy(ext->txt + old_len, text, app_len);
ext->txt[new_len] = '\0';
lv_label_refr_text(label);
}
/**
* Set the behavior of the label with longer text then the object size
2016-10-07 11:15:46 +02:00
* @param label pointer to a label object
* @param long_mode the new mode from 'lv_label_long_mode' enum.
*/
void lv_label_set_long_mode(lv_obj_t * label, lv_label_long_mode_t long_mode)
{
2016-10-07 11:15:46 +02:00
lv_label_ext_t * ext = lv_obj_get_ext(label);
/*When changing from dot mode reload the characters replaced by dots*/
if(ext->long_mode == LV_LABEL_LONG_DOTS &&
ext->dot_end != LV_LABEL_DOT_END_INV) {
uint8_t i;
for(i = 0; i < LV_LABEL_DOT_NUM + 1; i++) {
ext->txt[ext->dot_end - LV_LABEL_DOT_NUM + i] = ext->dot_tmp[i];
}
}
/*Delete the old animation (if exists)*/
anim_del(label, (anim_fp_t) lv_obj_set_x);
anim_del(label, (anim_fp_t) lv_obj_set_y);
anim_del(label, (anim_fp_t) lv_label_set_offset_x);
anim_del(label, (anim_fp_t) lv_label_set_offset_y);
ext->offset.x = 0;
ext->offset.y = 0;
if(long_mode == LV_LABEL_LONG_ROLL) ext->expand = 1;
else ext->expand = 0;
2016-10-20 16:35:03 +02:00
ext->long_mode = long_mode;
lv_label_refr_text(label);
}
/**
* Enable the recoloring by in-line commands
* @param label pointer to a label object
* @param recolor true: enable recoloring, false: disable
*/
void lv_label_set_recolor(lv_obj_t * label, bool recolor)
{
lv_label_ext_t * ext = lv_obj_get_ext(label);
ext->recolor = recolor == false ? 0 : 1;
lv_label_refr_text(label);
}
2016-06-08 07:25:08 +02:00
/*=====================
* Getter functions
*====================*/
/**
* Get the text of a label
2016-10-07 11:15:46 +02:00
* @param label pointer to a label object
2016-06-08 07:25:08 +02:00
* @return the text of the label
*/
char * lv_label_get_text(lv_obj_t * label)
2016-06-08 07:25:08 +02:00
{
2016-10-07 11:15:46 +02:00
lv_label_ext_t * ext = lv_obj_get_ext(label);
2016-06-08 07:25:08 +02:00
2016-10-07 11:15:46 +02:00
return ext->txt;
}
/**
* Get the long mode of a label
2016-10-07 11:15:46 +02:00
* @param label pointer to a label object
* @return the long mode
*/
lv_label_long_mode_t lv_label_get_long_mode(lv_obj_t * label)
{
2016-10-07 11:15:46 +02:00
lv_label_ext_t * ext = lv_obj_get_ext(label);
return ext->long_mode;
2016-06-08 07:25:08 +02:00
}
/**
* Get the recoloring attribute
* @param label pointer to a label object
* @return true: recoloring is enabled, false: disable
*/
bool lv_label_get_recolor(lv_obj_t * label)
{
lv_label_ext_t * ext = lv_obj_get_ext(label);
return ext->recolor == 0 ? false : true;
2017-06-13 14:17:33 +02:00
}
2016-09-30 15:29:00 +02:00
/**
* Get the relative x and y coordinates of a letter
2016-10-07 11:15:46 +02:00
* @param label pointer to a label object
2016-09-30 15:29:00 +02:00
* @param index index of the letter (0 ... text length)
2016-10-07 11:15:46 +02:00
* @param pos store the result here (E.g. index = 0 gives 0;0 coordinates)
2016-09-30 15:29:00 +02:00
*/
2016-10-07 11:15:46 +02:00
void lv_label_get_letter_pos(lv_obj_t * label, uint16_t index, point_t * pos)
2016-09-30 15:29:00 +02:00
{
2017-06-13 14:17:33 +02:00
const char * txt = lv_label_get_text(label);
2016-10-07 11:15:46 +02:00
lv_label_ext_t * ext = lv_obj_get_ext(label);
2016-09-30 15:29:00 +02:00
uint32_t line_start = 0;
uint32_t new_line_start = 0;
2016-12-20 15:02:23 +01:00
cord_t max_w = lv_obj_get_width(label);
lv_style_t * style = lv_obj_get_style(label);
const font_t * font = style->font;
2017-04-21 09:15:39 +02:00
uint8_t letter_height = font_get_height(font) >> FONT_ANTIALIAS;
2016-09-30 15:29:00 +02:00
cord_t y = 0;
txt_flag_t flag = TXT_FLAG_NONE;
if(ext->recolor != 0) flag |= TXT_FLAG_RECOLOR;
if(ext->expand != 0) flag |= TXT_FLAG_EXPAND;
2016-09-30 15:29:00 +02:00
/*If the width will be expanded the set the max length to very big */
if(ext->long_mode == LV_LABEL_LONG_EXPAND || ext->long_mode == LV_LABEL_LONG_SCROLL) {
2017-04-21 09:15:39 +02:00
max_w = CORD_MAX;
2016-09-30 15:29:00 +02:00
}
/*Search the line of the index letter */;
2017-06-13 14:17:33 +02:00
while (txt[new_line_start] != '\0') {
new_line_start += txt_get_next_line(&txt[line_start], font, style->letter_space, max_w, flag);
if(index < new_line_start || txt[new_line_start] == '\0') break; /*The line of 'index' letter begins at 'line_start'*/
2016-09-30 15:29:00 +02:00
y += letter_height + style->line_space;
2016-09-30 15:29:00 +02:00
line_start = new_line_start;
}
2017-06-13 14:17:33 +02:00
if((txt[index - 1] == '\n' || txt[index - 1] == '\r') && txt[index] == '\0') {
y += letter_height + style->line_space;
2016-12-20 15:02:23 +01:00
line_start = index;
}
2016-09-30 15:29:00 +02:00
/*Calculate the x coordinate*/
cord_t x = 0;
2016-10-01 00:25:10 +02:00
uint32_t i;
txt_cmd_state_t cmd_state = TXT_CMD_STATE_WAIT;
2016-10-01 00:25:10 +02:00
for(i = line_start; i < index; i++) {
/*Handle the recolor command*/
if((flag & TXT_FLAG_RECOLOR) != 0) {
2017-06-13 14:17:33 +02:00
if(txt_is_cmd(&cmd_state, txt[i]) != false) {
continue; /*Skip the letter is it is part of a command*/
}
}
x += (font_get_width(font, txt[i]) >> FONT_ANTIALIAS) + style->letter_space;
2016-10-01 00:25:10 +02:00
}
2017-04-21 09:15:39 +02:00
if(style->txt_align == LV_TXT_ALIGN_MID) {
2016-10-01 00:25:10 +02:00
cord_t line_w;
2017-06-13 14:17:33 +02:00
line_w = txt_get_width(&txt[line_start], new_line_start - line_start,
font, style->letter_space, flag);
2016-10-07 11:15:46 +02:00
x += lv_obj_get_width(label) / 2 - line_w / 2;
2016-10-01 00:25:10 +02:00
}
2016-10-07 11:15:46 +02:00
pos->x = x;
pos->y = y;
2016-10-01 00:25:10 +02:00
}
/**
* Get the index of letter on a relative point of a label
2016-10-07 11:15:46 +02:00
* @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)
*/
2016-10-07 11:15:46 +02:00
uint16_t lv_label_get_letter_on(lv_obj_t * label, point_t * pos)
2016-10-01 00:25:10 +02:00
{
2017-06-13 14:17:33 +02:00
const char * txt = lv_label_get_text(label);
2016-10-07 11:15:46 +02:00
lv_label_ext_t * ext = lv_obj_get_ext(label);
2016-10-01 00:25:10 +02:00
uint32_t line_start = 0;
uint32_t new_line_start = 0;
2016-12-20 15:02:23 +01:00
cord_t max_w = lv_obj_get_width(label);
lv_style_t * style = lv_obj_get_style(label);
const font_t * font = style->font;
2017-04-21 09:15:39 +02:00
uint8_t letter_height = font_get_height(font) >> FONT_ANTIALIAS;
2016-10-01 00:25:10 +02:00
cord_t y = 0;
txt_flag_t flag = TXT_FLAG_NONE;
if(ext->recolor != 0) flag |= TXT_FLAG_RECOLOR;
if(ext->expand != 0) flag |= TXT_FLAG_EXPAND;
2016-10-01 00:25:10 +02:00
/*If the width will be expanded set the max length to very big */
if(ext->long_mode == LV_LABEL_LONG_EXPAND || ext->long_mode == LV_LABEL_LONG_SCROLL) {
2017-04-21 09:15:39 +02:00
max_w = CORD_MAX;
2016-10-01 00:25:10 +02:00
}
/*Search the line of the index letter */;
2017-06-13 14:17:33 +02:00
while (txt[line_start] != '\0') {
new_line_start += txt_get_next_line(&txt[line_start], font, style->letter_space, max_w, flag);
2016-12-20 15:02:23 +01:00
if(pos->y <= y + letter_height + style->line_space) break; /*The line is found ('line_start')*/
y += letter_height + style->line_space;
2016-10-01 00:25:10 +02:00
line_start = new_line_start;
2016-09-30 15:29:00 +02:00
}
2016-10-01 00:25:10 +02:00
/*Calculate the x coordinate*/
cord_t x = 0;
2017-04-21 09:15:39 +02:00
if(style->txt_align == LV_TXT_ALIGN_MID) {
2016-10-01 00:25:10 +02:00
cord_t line_w;
2017-06-13 14:17:33 +02:00
line_w = txt_get_width(&txt[line_start], new_line_start - line_start,
font, style->letter_space, flag);
2016-10-07 11:15:46 +02:00
x += lv_obj_get_width(label) / 2 - line_w / 2;
2016-10-01 00:25:10 +02:00
}
txt_cmd_state_t cmd_state = TXT_CMD_STATE_WAIT;
uint16_t i;
for(i = line_start; i < new_line_start - 1; i++) {
/*Handle the recolor command*/
if((flag & TXT_FLAG_RECOLOR) != 0) {
2017-06-13 14:17:33 +02:00
if(txt_is_cmd(&cmd_state, txt[i]) != false) {
continue; /*Skip the letter is it is part of a command*/
}
}
x += (font_get_width(font, txt[i]) >> FONT_ANTIALIAS) + style->letter_space;
2016-10-07 11:15:46 +02:00
if(pos->x < x) break;
2016-10-01 00:25:10 +02:00
}
return i;
2016-09-30 15:29:00 +02:00
}
2016-06-08 07:25:08 +02:00
/**********************
* STATIC FUNCTIONS
**********************/
/**
* Handle the drawing related tasks of the labels
2016-10-07 11:15:46 +02:00
* @param label pointer to a label object
2016-06-08 07:25:08 +02:00
* @param mask the object will be drawn only in this area
* @param mode LV_DESIGN_COVER_CHK: only check if the object fully covers the 'mask_p' area
* (return 'true' if yes)
* LV_DESIGN_DRAW: draw the object (always return 'true')
* LV_DESIGN_DRAW_POST: drawing after every children are drawn
2016-06-08 07:25:08 +02:00
* @param return true/false, depends on 'mode'
*/
2016-10-07 11:15:46 +02:00
static bool lv_label_design(lv_obj_t * label, const area_t * mask, lv_design_mode_t mode)
2016-06-08 07:25:08 +02:00
{
/* A label never covers an area */
if(mode == LV_DESIGN_COVER_CHK) return false;
else if(mode == LV_DESIGN_DRAW_MAIN) {
area_t cords;
lv_style_t * style = lv_obj_get_style(label);
lv_obj_get_cords(label, &cords);
#if LV_OBJ_GROUP != 0
lv_group_t * g = lv_obj_get_group(label);
if(lv_group_get_focused(g) == label) {
lv_draw_rect(&cords, mask, style);
}
#endif
/*TEST: draw a background for the label*/
2016-10-20 16:35:03 +02:00
//lv_vfill(&label->cords, mask, COLOR_LIME, OPA_COVER);
lv_label_ext_t * ext = lv_obj_get_ext(label);
txt_flag_t flag = TXT_FLAG_NONE;
if(ext->recolor != 0) flag |= TXT_FLAG_RECOLOR;
if(ext->expand != 0) flag |= TXT_FLAG_EXPAND;
lv_draw_label(&cords, mask, style, ext->txt, flag, &ext->offset);
}
2016-06-08 07:25:08 +02:00
return true;
}
/**
* Refresh the label with its text stored in its extended data
* @param label pointer to a label object
*/
static void lv_label_refr_text(lv_obj_t * label)
{
lv_label_ext_t * ext = lv_obj_get_ext(label);
if(ext->txt == NULL) return;
cord_t max_w = lv_obj_get_width(label);
lv_style_t * style = lv_obj_get_style(label);
const font_t * font = style->font;
ext->dot_end = LV_LABEL_DOT_END_INV; /*Initialize the dot end index*/
/*If the width will be expanded set the max length to very big */
if(ext->long_mode == LV_LABEL_LONG_EXPAND ||
ext->long_mode == LV_LABEL_LONG_SCROLL) {
2017-04-21 09:15:39 +02:00
max_w = CORD_MAX;
}
/*Calc. the height and longest line*/
point_t size;
txt_flag_t flag = TXT_FLAG_NONE;
if(ext->recolor != 0) flag |= TXT_FLAG_RECOLOR;
if(ext->expand != 0) flag |= TXT_FLAG_EXPAND;
txt_get_size(&size, ext->txt, font, style->letter_space, style->line_space, max_w, flag);
/*Refresh the full size in expand mode*/
if(ext->long_mode == LV_LABEL_LONG_EXPAND || ext->long_mode == LV_LABEL_LONG_SCROLL) {
lv_obj_set_size(label, size.x, size.y);
/*Start scrolling if the label is greater then its parent*/
if(ext->long_mode == LV_LABEL_LONG_SCROLL) {
lv_obj_t * parent = lv_obj_get_parent(label);
/*Delete the potential previous scroller animations*/
anim_del(label, (anim_fp_t) lv_obj_set_x);
anim_del(label, (anim_fp_t) lv_obj_set_y);
anim_t anim;
anim.var = label;
anim.repeat = 1;
anim.playback = 1;
2017-04-21 09:15:39 +02:00
anim.start = font_get_width(font, ' ') >> FONT_ANTIALIAS;
anim.act_time = 0;
anim.end_cb = NULL;
anim.path = anim_get_path(ANIM_PATH_LIN);
anim.time = 3000;
anim.playback_pause = LV_LABEL_SCROLL_PLAYBACK_PAUSE;
anim.repeat_pause = LV_LABEL_SCROLL_REPEAT_PAUSE;
bool hor_anim = false;
if(lv_obj_get_width(label) > lv_obj_get_width(parent)) {
2017-03-20 07:07:05 +01:00
anim.end = lv_obj_get_width(parent) - lv_obj_get_width(label) -
2017-04-21 09:15:39 +02:00
(font_get_width(font, ' ') >> FONT_ANTIALIAS);
anim.fp = (anim_fp_t) lv_obj_set_x;
anim.time = anim_speed_to_time(LV_LABEL_SCROLL_SPEED, anim.start, anim.end);
anim_create(&anim);
hor_anim = true;
}
if(lv_obj_get_height(label) > lv_obj_get_height(parent)) {
2017-03-20 07:07:05 +01:00
anim.end = lv_obj_get_height(parent) - lv_obj_get_height(label) -
2017-04-21 09:15:39 +02:00
(font_get_height(font) - FONT_ANTIALIAS);
anim.fp = (anim_fp_t)lv_obj_set_y;
/*Different animation speed if horizontal animation is created too*/
if(hor_anim == false) {
anim.time = anim_speed_to_time(LV_LABEL_SCROLL_SPEED, anim.start, anim.end);
} else {
anim.time = anim_speed_to_time(LV_LABEL_SCROLL_SPEED_VER, anim.start, anim.end);
}
anim_create(&anim);
}
}
}
/*In roll mode keep the size but start offset animations*/
else if(ext->long_mode == LV_LABEL_LONG_ROLL) {
anim_t anim;
anim.var = label;
anim.repeat = 1;
anim.playback = 1;
anim.start = font_get_width(font, ' ') >> FONT_ANTIALIAS;
anim.act_time = 0;
anim.end_cb = NULL;
anim.path = anim_get_path(ANIM_PATH_LIN);
anim.playback_pause = LV_LABEL_SCROLL_PLAYBACK_PAUSE;
anim.repeat_pause = LV_LABEL_SCROLL_REPEAT_PAUSE;
bool hor_anim = false;
if(size.x > lv_obj_get_width(label)) {
anim.end = lv_obj_get_width(label) - size.x -
(font_get_width(font, ' ') >> FONT_ANTIALIAS);
anim.fp = (anim_fp_t) lv_label_set_offset_x;
anim.time = anim_speed_to_time(LV_LABEL_SCROLL_SPEED, anim.start, anim.end);
anim_create(&anim);
hor_anim = true;
}
if(size.y > lv_obj_get_height(label)) {
anim.end = lv_obj_get_height(label) - size.y -
(font_get_height(font) - FONT_ANTIALIAS);
anim.fp = (anim_fp_t)lv_label_set_offset_y;
/*Different animation speed if horizontal animation is created too*/
if(hor_anim == false) {
anim.time = anim_speed_to_time(LV_LABEL_SCROLL_SPEED, anim.start, anim.end);
} else {
anim.time = anim_speed_to_time(LV_LABEL_SCROLL_SPEED_VER, anim.start, anim.end);
}
anim_create(&anim);
}
}
/*In break mode only the height can change*/
else if (ext->long_mode == LV_LABEL_LONG_BREAK) {
lv_obj_set_height(label, size.y);
}
/*Replace the last 'LV_LABEL_DOT_NUM' characters with dots
* and save these characters*/
else if(ext->long_mode == LV_LABEL_LONG_DOTS) {
point_t point;
point.x = lv_obj_get_width(label) - 1;
point.y = lv_obj_get_height(label) - 1;
uint16_t index = lv_label_get_letter_on(label, &point);
if(index < strlen(ext->txt) - 1) {
/* Change the last 'LV_LABEL_DOT_NUM' to dots
* (if there are at least 'LV_LABEL_DOT_NUM' characters*/
if(index > LV_LABEL_DOT_NUM) {
uint8_t i;
for(i = 0; i < LV_LABEL_DOT_NUM; i++) {
ext->dot_tmp[i] = ext->txt[index - LV_LABEL_DOT_NUM + i];
ext->txt[index - LV_LABEL_DOT_NUM + i] = '.';
}
2017-05-10 16:11:20 +02:00
/*The last character is '\0'. Save this character from the text too.*/
ext->dot_tmp[i] = ext->txt[index];
ext->txt[index] = '\0';
}
/*Else with short text change all characters to dots*/
else {
uint8_t i;
for(i = 0; i < LV_LABEL_DOT_NUM; i++) {
ext->txt[i] = '.';
}
ext->txt[i] = '\0';
}
/*Save the dot end index*/
ext->dot_end = index;
}
}
lv_obj_inv(label);
}
static void lv_label_set_offset_x(lv_obj_t * label, cord_t x)
{
lv_label_ext_t * ext = lv_obj_get_ext(label);
ext->offset.x = x;
lv_obj_inv(label);
}
static void lv_label_set_offset_y(lv_obj_t * label, cord_t y)
{
lv_label_ext_t * ext = lv_obj_get_ext(label);
ext->offset.y = y;
lv_obj_inv(label);
}
2016-06-08 07:25:08 +02:00
#endif