/**1* @file lv_draw_label.h2*3*/45#ifndef LV_DRAW_LABEL_H6#define LV_DRAW_LABEL_H78#ifdef __cplusplus9extern "C" {10#endif1112/*********************13* INCLUDES14*********************/15#include "lv_draw.h"1617/*********************18* DEFINES19*********************/2021/**********************22* TYPEDEFS23**********************/2425/**********************26* GLOBAL PROTOTYPES27**********************/2829/**30* Write a text31* @param coords coordinates of the label32* @param mask the label will be drawn only in this area33* @param style pointer to a style34* @param opa_scale scale down all opacities by the factor35* @param txt 0 terminated text to write36* @param flag settings for the text from 'txt_flag_t' enum37* @param offset text offset in x and y direction (NULL if unused)38*39*/40void lv_draw_label(const lv_area_t * coords,const lv_area_t * mask, const lv_style_t * style, lv_opa_t opa_scale,41const char * txt, lv_txt_flag_t flag, lv_point_t * offset);4243/**********************44* MACROS45**********************/464748#ifdef __cplusplus49} /* extern "C" */50#endif5152#endif /*LV_DRAW_LABEL_H*/535455