refactor(style) prefix const property IDs with an underscore

This commit is contained in:
embeddedt
2022-07-26 13:18:23 -04:00
parent 71e040d832
commit ca8f0ab549
3 changed files with 255 additions and 255 deletions

View File

@@ -402,14 +402,14 @@ def style_set_c(p):
print(" lv_style_set_prop(style, LV_STYLE_" + p['name'] +", v);") print(" lv_style_set_prop(style, LV_STYLE_" + p['name'] +", v);")
print("}") print("}")
print("") print("")
print("const lv_style_prop_t lv_style_const_prop_id_" + p['name'] + " = LV_STYLE_" + p['name'] + ";") print("const lv_style_prop_t _lv_style_const_prop_id_" + p['name'] + " = LV_STYLE_" + p['name'] + ";")
def style_set_h(p): def style_set_h(p):
if 'section' in p: return if 'section' in p: return
print("void lv_style_set_" + p['name'].lower() +"(lv_style_t * style, "+ p['var_type'] +" value);") print("void lv_style_set_" + p['name'].lower() +"(lv_style_t * style, "+ p['var_type'] +" value);")
print("extern const lv_style_prop_t lv_style_const_prop_id_" + p['name'] + ";") print("extern const lv_style_prop_t _lv_style_const_prop_id_" + p['name'] + ";")
def local_style_set_c(p): def local_style_set_c(p):
@@ -438,7 +438,7 @@ def style_const_set(p):
print("") print("")
print("#define LV_STYLE_CONST_" + p['name'] + "(val) \\") print("#define LV_STYLE_CONST_" + p['name'] + "(val) \\")
print(" { \\") print(" { \\")
print(" .prop_ptr = &lv_style_const_prop_id_" + p['name'] + ", .value = { ." + p['style_type'] +" = " + cast + "val } \\") print(" .prop_ptr = &_lv_style_const_prop_id_" + p['name'] + ", .value = { ." + p['style_type'] +" = " + cast + "val } \\")
print(" }") print(" }")

View File

@@ -8,7 +8,7 @@ void lv_style_set_width(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_WIDTH, v); lv_style_set_prop(style, LV_STYLE_WIDTH, v);
} }
const lv_style_prop_t lv_style_const_prop_id_WIDTH = LV_STYLE_WIDTH; const lv_style_prop_t _lv_style_const_prop_id_WIDTH = LV_STYLE_WIDTH;
void lv_style_set_min_width(lv_style_t * style, lv_coord_t value) void lv_style_set_min_width(lv_style_t * style, lv_coord_t value)
{ {
@@ -18,7 +18,7 @@ void lv_style_set_min_width(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_MIN_WIDTH, v); lv_style_set_prop(style, LV_STYLE_MIN_WIDTH, v);
} }
const lv_style_prop_t lv_style_const_prop_id_MIN_WIDTH = LV_STYLE_MIN_WIDTH; const lv_style_prop_t _lv_style_const_prop_id_MIN_WIDTH = LV_STYLE_MIN_WIDTH;
void lv_style_set_max_width(lv_style_t * style, lv_coord_t value) void lv_style_set_max_width(lv_style_t * style, lv_coord_t value)
{ {
@@ -28,7 +28,7 @@ void lv_style_set_max_width(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_MAX_WIDTH, v); lv_style_set_prop(style, LV_STYLE_MAX_WIDTH, v);
} }
const lv_style_prop_t lv_style_const_prop_id_MAX_WIDTH = LV_STYLE_MAX_WIDTH; const lv_style_prop_t _lv_style_const_prop_id_MAX_WIDTH = LV_STYLE_MAX_WIDTH;
void lv_style_set_height(lv_style_t * style, lv_coord_t value) void lv_style_set_height(lv_style_t * style, lv_coord_t value)
{ {
@@ -38,7 +38,7 @@ void lv_style_set_height(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_HEIGHT, v); lv_style_set_prop(style, LV_STYLE_HEIGHT, v);
} }
const lv_style_prop_t lv_style_const_prop_id_HEIGHT = LV_STYLE_HEIGHT; const lv_style_prop_t _lv_style_const_prop_id_HEIGHT = LV_STYLE_HEIGHT;
void lv_style_set_min_height(lv_style_t * style, lv_coord_t value) void lv_style_set_min_height(lv_style_t * style, lv_coord_t value)
{ {
@@ -48,7 +48,7 @@ void lv_style_set_min_height(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_MIN_HEIGHT, v); lv_style_set_prop(style, LV_STYLE_MIN_HEIGHT, v);
} }
const lv_style_prop_t lv_style_const_prop_id_MIN_HEIGHT = LV_STYLE_MIN_HEIGHT; const lv_style_prop_t _lv_style_const_prop_id_MIN_HEIGHT = LV_STYLE_MIN_HEIGHT;
void lv_style_set_max_height(lv_style_t * style, lv_coord_t value) void lv_style_set_max_height(lv_style_t * style, lv_coord_t value)
{ {
@@ -58,7 +58,7 @@ void lv_style_set_max_height(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_MAX_HEIGHT, v); lv_style_set_prop(style, LV_STYLE_MAX_HEIGHT, v);
} }
const lv_style_prop_t lv_style_const_prop_id_MAX_HEIGHT = LV_STYLE_MAX_HEIGHT; const lv_style_prop_t _lv_style_const_prop_id_MAX_HEIGHT = LV_STYLE_MAX_HEIGHT;
void lv_style_set_x(lv_style_t * style, lv_coord_t value) void lv_style_set_x(lv_style_t * style, lv_coord_t value)
{ {
@@ -68,7 +68,7 @@ void lv_style_set_x(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_X, v); lv_style_set_prop(style, LV_STYLE_X, v);
} }
const lv_style_prop_t lv_style_const_prop_id_X = LV_STYLE_X; const lv_style_prop_t _lv_style_const_prop_id_X = LV_STYLE_X;
void lv_style_set_y(lv_style_t * style, lv_coord_t value) void lv_style_set_y(lv_style_t * style, lv_coord_t value)
{ {
@@ -78,7 +78,7 @@ void lv_style_set_y(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_Y, v); lv_style_set_prop(style, LV_STYLE_Y, v);
} }
const lv_style_prop_t lv_style_const_prop_id_Y = LV_STYLE_Y; const lv_style_prop_t _lv_style_const_prop_id_Y = LV_STYLE_Y;
void lv_style_set_align(lv_style_t * style, lv_align_t value) void lv_style_set_align(lv_style_t * style, lv_align_t value)
{ {
@@ -88,7 +88,7 @@ void lv_style_set_align(lv_style_t * style, lv_align_t value)
lv_style_set_prop(style, LV_STYLE_ALIGN, v); lv_style_set_prop(style, LV_STYLE_ALIGN, v);
} }
const lv_style_prop_t lv_style_const_prop_id_ALIGN = LV_STYLE_ALIGN; const lv_style_prop_t _lv_style_const_prop_id_ALIGN = LV_STYLE_ALIGN;
void lv_style_set_transform_width(lv_style_t * style, lv_coord_t value) void lv_style_set_transform_width(lv_style_t * style, lv_coord_t value)
{ {
@@ -98,7 +98,7 @@ void lv_style_set_transform_width(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_TRANSFORM_WIDTH, v); lv_style_set_prop(style, LV_STYLE_TRANSFORM_WIDTH, v);
} }
const lv_style_prop_t lv_style_const_prop_id_TRANSFORM_WIDTH = LV_STYLE_TRANSFORM_WIDTH; const lv_style_prop_t _lv_style_const_prop_id_TRANSFORM_WIDTH = LV_STYLE_TRANSFORM_WIDTH;
void lv_style_set_transform_height(lv_style_t * style, lv_coord_t value) void lv_style_set_transform_height(lv_style_t * style, lv_coord_t value)
{ {
@@ -108,7 +108,7 @@ void lv_style_set_transform_height(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_TRANSFORM_HEIGHT, v); lv_style_set_prop(style, LV_STYLE_TRANSFORM_HEIGHT, v);
} }
const lv_style_prop_t lv_style_const_prop_id_TRANSFORM_HEIGHT = LV_STYLE_TRANSFORM_HEIGHT; const lv_style_prop_t _lv_style_const_prop_id_TRANSFORM_HEIGHT = LV_STYLE_TRANSFORM_HEIGHT;
void lv_style_set_translate_x(lv_style_t * style, lv_coord_t value) void lv_style_set_translate_x(lv_style_t * style, lv_coord_t value)
{ {
@@ -118,7 +118,7 @@ void lv_style_set_translate_x(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_TRANSLATE_X, v); lv_style_set_prop(style, LV_STYLE_TRANSLATE_X, v);
} }
const lv_style_prop_t lv_style_const_prop_id_TRANSLATE_X = LV_STYLE_TRANSLATE_X; const lv_style_prop_t _lv_style_const_prop_id_TRANSLATE_X = LV_STYLE_TRANSLATE_X;
void lv_style_set_translate_y(lv_style_t * style, lv_coord_t value) void lv_style_set_translate_y(lv_style_t * style, lv_coord_t value)
{ {
@@ -128,7 +128,7 @@ void lv_style_set_translate_y(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_TRANSLATE_Y, v); lv_style_set_prop(style, LV_STYLE_TRANSLATE_Y, v);
} }
const lv_style_prop_t lv_style_const_prop_id_TRANSLATE_Y = LV_STYLE_TRANSLATE_Y; const lv_style_prop_t _lv_style_const_prop_id_TRANSLATE_Y = LV_STYLE_TRANSLATE_Y;
void lv_style_set_transform_zoom(lv_style_t * style, lv_coord_t value) void lv_style_set_transform_zoom(lv_style_t * style, lv_coord_t value)
{ {
@@ -138,7 +138,7 @@ void lv_style_set_transform_zoom(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_TRANSFORM_ZOOM, v); lv_style_set_prop(style, LV_STYLE_TRANSFORM_ZOOM, v);
} }
const lv_style_prop_t lv_style_const_prop_id_TRANSFORM_ZOOM = LV_STYLE_TRANSFORM_ZOOM; const lv_style_prop_t _lv_style_const_prop_id_TRANSFORM_ZOOM = LV_STYLE_TRANSFORM_ZOOM;
void lv_style_set_transform_angle(lv_style_t * style, lv_coord_t value) void lv_style_set_transform_angle(lv_style_t * style, lv_coord_t value)
{ {
@@ -148,7 +148,7 @@ void lv_style_set_transform_angle(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_TRANSFORM_ANGLE, v); lv_style_set_prop(style, LV_STYLE_TRANSFORM_ANGLE, v);
} }
const lv_style_prop_t lv_style_const_prop_id_TRANSFORM_ANGLE = LV_STYLE_TRANSFORM_ANGLE; const lv_style_prop_t _lv_style_const_prop_id_TRANSFORM_ANGLE = LV_STYLE_TRANSFORM_ANGLE;
void lv_style_set_transform_pivot_x(lv_style_t * style, lv_coord_t value) void lv_style_set_transform_pivot_x(lv_style_t * style, lv_coord_t value)
{ {
@@ -158,7 +158,7 @@ void lv_style_set_transform_pivot_x(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_TRANSFORM_PIVOT_X, v); lv_style_set_prop(style, LV_STYLE_TRANSFORM_PIVOT_X, v);
} }
const lv_style_prop_t lv_style_const_prop_id_TRANSFORM_PIVOT_X = LV_STYLE_TRANSFORM_PIVOT_X; const lv_style_prop_t _lv_style_const_prop_id_TRANSFORM_PIVOT_X = LV_STYLE_TRANSFORM_PIVOT_X;
void lv_style_set_transform_pivot_y(lv_style_t * style, lv_coord_t value) void lv_style_set_transform_pivot_y(lv_style_t * style, lv_coord_t value)
{ {
@@ -168,7 +168,7 @@ void lv_style_set_transform_pivot_y(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_TRANSFORM_PIVOT_Y, v); lv_style_set_prop(style, LV_STYLE_TRANSFORM_PIVOT_Y, v);
} }
const lv_style_prop_t lv_style_const_prop_id_TRANSFORM_PIVOT_Y = LV_STYLE_TRANSFORM_PIVOT_Y; const lv_style_prop_t _lv_style_const_prop_id_TRANSFORM_PIVOT_Y = LV_STYLE_TRANSFORM_PIVOT_Y;
void lv_style_set_pad_top(lv_style_t * style, lv_coord_t value) void lv_style_set_pad_top(lv_style_t * style, lv_coord_t value)
{ {
@@ -178,7 +178,7 @@ void lv_style_set_pad_top(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_PAD_TOP, v); lv_style_set_prop(style, LV_STYLE_PAD_TOP, v);
} }
const lv_style_prop_t lv_style_const_prop_id_PAD_TOP = LV_STYLE_PAD_TOP; const lv_style_prop_t _lv_style_const_prop_id_PAD_TOP = LV_STYLE_PAD_TOP;
void lv_style_set_pad_bottom(lv_style_t * style, lv_coord_t value) void lv_style_set_pad_bottom(lv_style_t * style, lv_coord_t value)
{ {
@@ -188,7 +188,7 @@ void lv_style_set_pad_bottom(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_PAD_BOTTOM, v); lv_style_set_prop(style, LV_STYLE_PAD_BOTTOM, v);
} }
const lv_style_prop_t lv_style_const_prop_id_PAD_BOTTOM = LV_STYLE_PAD_BOTTOM; const lv_style_prop_t _lv_style_const_prop_id_PAD_BOTTOM = LV_STYLE_PAD_BOTTOM;
void lv_style_set_pad_left(lv_style_t * style, lv_coord_t value) void lv_style_set_pad_left(lv_style_t * style, lv_coord_t value)
{ {
@@ -198,7 +198,7 @@ void lv_style_set_pad_left(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_PAD_LEFT, v); lv_style_set_prop(style, LV_STYLE_PAD_LEFT, v);
} }
const lv_style_prop_t lv_style_const_prop_id_PAD_LEFT = LV_STYLE_PAD_LEFT; const lv_style_prop_t _lv_style_const_prop_id_PAD_LEFT = LV_STYLE_PAD_LEFT;
void lv_style_set_pad_right(lv_style_t * style, lv_coord_t value) void lv_style_set_pad_right(lv_style_t * style, lv_coord_t value)
{ {
@@ -208,7 +208,7 @@ void lv_style_set_pad_right(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_PAD_RIGHT, v); lv_style_set_prop(style, LV_STYLE_PAD_RIGHT, v);
} }
const lv_style_prop_t lv_style_const_prop_id_PAD_RIGHT = LV_STYLE_PAD_RIGHT; const lv_style_prop_t _lv_style_const_prop_id_PAD_RIGHT = LV_STYLE_PAD_RIGHT;
void lv_style_set_pad_row(lv_style_t * style, lv_coord_t value) void lv_style_set_pad_row(lv_style_t * style, lv_coord_t value)
{ {
@@ -218,7 +218,7 @@ void lv_style_set_pad_row(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_PAD_ROW, v); lv_style_set_prop(style, LV_STYLE_PAD_ROW, v);
} }
const lv_style_prop_t lv_style_const_prop_id_PAD_ROW = LV_STYLE_PAD_ROW; const lv_style_prop_t _lv_style_const_prop_id_PAD_ROW = LV_STYLE_PAD_ROW;
void lv_style_set_pad_column(lv_style_t * style, lv_coord_t value) void lv_style_set_pad_column(lv_style_t * style, lv_coord_t value)
{ {
@@ -228,7 +228,7 @@ void lv_style_set_pad_column(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_PAD_COLUMN, v); lv_style_set_prop(style, LV_STYLE_PAD_COLUMN, v);
} }
const lv_style_prop_t lv_style_const_prop_id_PAD_COLUMN = LV_STYLE_PAD_COLUMN; const lv_style_prop_t _lv_style_const_prop_id_PAD_COLUMN = LV_STYLE_PAD_COLUMN;
void lv_style_set_bg_color(lv_style_t * style, lv_color_t value) void lv_style_set_bg_color(lv_style_t * style, lv_color_t value)
{ {
@@ -238,7 +238,7 @@ void lv_style_set_bg_color(lv_style_t * style, lv_color_t value)
lv_style_set_prop(style, LV_STYLE_BG_COLOR, v); lv_style_set_prop(style, LV_STYLE_BG_COLOR, v);
} }
const lv_style_prop_t lv_style_const_prop_id_BG_COLOR = LV_STYLE_BG_COLOR; const lv_style_prop_t _lv_style_const_prop_id_BG_COLOR = LV_STYLE_BG_COLOR;
void lv_style_set_bg_opa(lv_style_t * style, lv_opa_t value) void lv_style_set_bg_opa(lv_style_t * style, lv_opa_t value)
{ {
@@ -248,7 +248,7 @@ void lv_style_set_bg_opa(lv_style_t * style, lv_opa_t value)
lv_style_set_prop(style, LV_STYLE_BG_OPA, v); lv_style_set_prop(style, LV_STYLE_BG_OPA, v);
} }
const lv_style_prop_t lv_style_const_prop_id_BG_OPA = LV_STYLE_BG_OPA; const lv_style_prop_t _lv_style_const_prop_id_BG_OPA = LV_STYLE_BG_OPA;
void lv_style_set_bg_grad_color(lv_style_t * style, lv_color_t value) void lv_style_set_bg_grad_color(lv_style_t * style, lv_color_t value)
{ {
@@ -258,7 +258,7 @@ void lv_style_set_bg_grad_color(lv_style_t * style, lv_color_t value)
lv_style_set_prop(style, LV_STYLE_BG_GRAD_COLOR, v); lv_style_set_prop(style, LV_STYLE_BG_GRAD_COLOR, v);
} }
const lv_style_prop_t lv_style_const_prop_id_BG_GRAD_COLOR = LV_STYLE_BG_GRAD_COLOR; const lv_style_prop_t _lv_style_const_prop_id_BG_GRAD_COLOR = LV_STYLE_BG_GRAD_COLOR;
void lv_style_set_bg_grad_dir(lv_style_t * style, lv_grad_dir_t value) void lv_style_set_bg_grad_dir(lv_style_t * style, lv_grad_dir_t value)
{ {
@@ -268,7 +268,7 @@ void lv_style_set_bg_grad_dir(lv_style_t * style, lv_grad_dir_t value)
lv_style_set_prop(style, LV_STYLE_BG_GRAD_DIR, v); lv_style_set_prop(style, LV_STYLE_BG_GRAD_DIR, v);
} }
const lv_style_prop_t lv_style_const_prop_id_BG_GRAD_DIR = LV_STYLE_BG_GRAD_DIR; const lv_style_prop_t _lv_style_const_prop_id_BG_GRAD_DIR = LV_STYLE_BG_GRAD_DIR;
void lv_style_set_bg_main_stop(lv_style_t * style, lv_coord_t value) void lv_style_set_bg_main_stop(lv_style_t * style, lv_coord_t value)
{ {
@@ -278,7 +278,7 @@ void lv_style_set_bg_main_stop(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_BG_MAIN_STOP, v); lv_style_set_prop(style, LV_STYLE_BG_MAIN_STOP, v);
} }
const lv_style_prop_t lv_style_const_prop_id_BG_MAIN_STOP = LV_STYLE_BG_MAIN_STOP; const lv_style_prop_t _lv_style_const_prop_id_BG_MAIN_STOP = LV_STYLE_BG_MAIN_STOP;
void lv_style_set_bg_grad_stop(lv_style_t * style, lv_coord_t value) void lv_style_set_bg_grad_stop(lv_style_t * style, lv_coord_t value)
{ {
@@ -288,7 +288,7 @@ void lv_style_set_bg_grad_stop(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_BG_GRAD_STOP, v); lv_style_set_prop(style, LV_STYLE_BG_GRAD_STOP, v);
} }
const lv_style_prop_t lv_style_const_prop_id_BG_GRAD_STOP = LV_STYLE_BG_GRAD_STOP; const lv_style_prop_t _lv_style_const_prop_id_BG_GRAD_STOP = LV_STYLE_BG_GRAD_STOP;
void lv_style_set_bg_grad(lv_style_t * style, const lv_grad_dsc_t * value) void lv_style_set_bg_grad(lv_style_t * style, const lv_grad_dsc_t * value)
{ {
@@ -298,7 +298,7 @@ void lv_style_set_bg_grad(lv_style_t * style, const lv_grad_dsc_t * value)
lv_style_set_prop(style, LV_STYLE_BG_GRAD, v); lv_style_set_prop(style, LV_STYLE_BG_GRAD, v);
} }
const lv_style_prop_t lv_style_const_prop_id_BG_GRAD = LV_STYLE_BG_GRAD; const lv_style_prop_t _lv_style_const_prop_id_BG_GRAD = LV_STYLE_BG_GRAD;
void lv_style_set_bg_dither_mode(lv_style_t * style, lv_dither_mode_t value) void lv_style_set_bg_dither_mode(lv_style_t * style, lv_dither_mode_t value)
{ {
@@ -308,7 +308,7 @@ void lv_style_set_bg_dither_mode(lv_style_t * style, lv_dither_mode_t value)
lv_style_set_prop(style, LV_STYLE_BG_DITHER_MODE, v); lv_style_set_prop(style, LV_STYLE_BG_DITHER_MODE, v);
} }
const lv_style_prop_t lv_style_const_prop_id_BG_DITHER_MODE = LV_STYLE_BG_DITHER_MODE; const lv_style_prop_t _lv_style_const_prop_id_BG_DITHER_MODE = LV_STYLE_BG_DITHER_MODE;
void lv_style_set_bg_img_src(lv_style_t * style, const void * value) void lv_style_set_bg_img_src(lv_style_t * style, const void * value)
{ {
@@ -318,7 +318,7 @@ void lv_style_set_bg_img_src(lv_style_t * style, const void * value)
lv_style_set_prop(style, LV_STYLE_BG_IMG_SRC, v); lv_style_set_prop(style, LV_STYLE_BG_IMG_SRC, v);
} }
const lv_style_prop_t lv_style_const_prop_id_BG_IMG_SRC = LV_STYLE_BG_IMG_SRC; const lv_style_prop_t _lv_style_const_prop_id_BG_IMG_SRC = LV_STYLE_BG_IMG_SRC;
void lv_style_set_bg_img_opa(lv_style_t * style, lv_opa_t value) void lv_style_set_bg_img_opa(lv_style_t * style, lv_opa_t value)
{ {
@@ -328,7 +328,7 @@ void lv_style_set_bg_img_opa(lv_style_t * style, lv_opa_t value)
lv_style_set_prop(style, LV_STYLE_BG_IMG_OPA, v); lv_style_set_prop(style, LV_STYLE_BG_IMG_OPA, v);
} }
const lv_style_prop_t lv_style_const_prop_id_BG_IMG_OPA = LV_STYLE_BG_IMG_OPA; const lv_style_prop_t _lv_style_const_prop_id_BG_IMG_OPA = LV_STYLE_BG_IMG_OPA;
void lv_style_set_bg_img_recolor(lv_style_t * style, lv_color_t value) void lv_style_set_bg_img_recolor(lv_style_t * style, lv_color_t value)
{ {
@@ -338,7 +338,7 @@ void lv_style_set_bg_img_recolor(lv_style_t * style, lv_color_t value)
lv_style_set_prop(style, LV_STYLE_BG_IMG_RECOLOR, v); lv_style_set_prop(style, LV_STYLE_BG_IMG_RECOLOR, v);
} }
const lv_style_prop_t lv_style_const_prop_id_BG_IMG_RECOLOR = LV_STYLE_BG_IMG_RECOLOR; const lv_style_prop_t _lv_style_const_prop_id_BG_IMG_RECOLOR = LV_STYLE_BG_IMG_RECOLOR;
void lv_style_set_bg_img_recolor_opa(lv_style_t * style, lv_opa_t value) void lv_style_set_bg_img_recolor_opa(lv_style_t * style, lv_opa_t value)
{ {
@@ -348,7 +348,7 @@ void lv_style_set_bg_img_recolor_opa(lv_style_t * style, lv_opa_t value)
lv_style_set_prop(style, LV_STYLE_BG_IMG_RECOLOR_OPA, v); lv_style_set_prop(style, LV_STYLE_BG_IMG_RECOLOR_OPA, v);
} }
const lv_style_prop_t lv_style_const_prop_id_BG_IMG_RECOLOR_OPA = LV_STYLE_BG_IMG_RECOLOR_OPA; const lv_style_prop_t _lv_style_const_prop_id_BG_IMG_RECOLOR_OPA = LV_STYLE_BG_IMG_RECOLOR_OPA;
void lv_style_set_bg_img_tiled(lv_style_t * style, bool value) void lv_style_set_bg_img_tiled(lv_style_t * style, bool value)
{ {
@@ -358,7 +358,7 @@ void lv_style_set_bg_img_tiled(lv_style_t * style, bool value)
lv_style_set_prop(style, LV_STYLE_BG_IMG_TILED, v); lv_style_set_prop(style, LV_STYLE_BG_IMG_TILED, v);
} }
const lv_style_prop_t lv_style_const_prop_id_BG_IMG_TILED = LV_STYLE_BG_IMG_TILED; const lv_style_prop_t _lv_style_const_prop_id_BG_IMG_TILED = LV_STYLE_BG_IMG_TILED;
void lv_style_set_border_color(lv_style_t * style, lv_color_t value) void lv_style_set_border_color(lv_style_t * style, lv_color_t value)
{ {
@@ -368,7 +368,7 @@ void lv_style_set_border_color(lv_style_t * style, lv_color_t value)
lv_style_set_prop(style, LV_STYLE_BORDER_COLOR, v); lv_style_set_prop(style, LV_STYLE_BORDER_COLOR, v);
} }
const lv_style_prop_t lv_style_const_prop_id_BORDER_COLOR = LV_STYLE_BORDER_COLOR; const lv_style_prop_t _lv_style_const_prop_id_BORDER_COLOR = LV_STYLE_BORDER_COLOR;
void lv_style_set_border_opa(lv_style_t * style, lv_opa_t value) void lv_style_set_border_opa(lv_style_t * style, lv_opa_t value)
{ {
@@ -378,7 +378,7 @@ void lv_style_set_border_opa(lv_style_t * style, lv_opa_t value)
lv_style_set_prop(style, LV_STYLE_BORDER_OPA, v); lv_style_set_prop(style, LV_STYLE_BORDER_OPA, v);
} }
const lv_style_prop_t lv_style_const_prop_id_BORDER_OPA = LV_STYLE_BORDER_OPA; const lv_style_prop_t _lv_style_const_prop_id_BORDER_OPA = LV_STYLE_BORDER_OPA;
void lv_style_set_border_width(lv_style_t * style, lv_coord_t value) void lv_style_set_border_width(lv_style_t * style, lv_coord_t value)
{ {
@@ -388,7 +388,7 @@ void lv_style_set_border_width(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_BORDER_WIDTH, v); lv_style_set_prop(style, LV_STYLE_BORDER_WIDTH, v);
} }
const lv_style_prop_t lv_style_const_prop_id_BORDER_WIDTH = LV_STYLE_BORDER_WIDTH; const lv_style_prop_t _lv_style_const_prop_id_BORDER_WIDTH = LV_STYLE_BORDER_WIDTH;
void lv_style_set_border_side(lv_style_t * style, lv_border_side_t value) void lv_style_set_border_side(lv_style_t * style, lv_border_side_t value)
{ {
@@ -398,7 +398,7 @@ void lv_style_set_border_side(lv_style_t * style, lv_border_side_t value)
lv_style_set_prop(style, LV_STYLE_BORDER_SIDE, v); lv_style_set_prop(style, LV_STYLE_BORDER_SIDE, v);
} }
const lv_style_prop_t lv_style_const_prop_id_BORDER_SIDE = LV_STYLE_BORDER_SIDE; const lv_style_prop_t _lv_style_const_prop_id_BORDER_SIDE = LV_STYLE_BORDER_SIDE;
void lv_style_set_border_post(lv_style_t * style, bool value) void lv_style_set_border_post(lv_style_t * style, bool value)
{ {
@@ -408,7 +408,7 @@ void lv_style_set_border_post(lv_style_t * style, bool value)
lv_style_set_prop(style, LV_STYLE_BORDER_POST, v); lv_style_set_prop(style, LV_STYLE_BORDER_POST, v);
} }
const lv_style_prop_t lv_style_const_prop_id_BORDER_POST = LV_STYLE_BORDER_POST; const lv_style_prop_t _lv_style_const_prop_id_BORDER_POST = LV_STYLE_BORDER_POST;
void lv_style_set_outline_width(lv_style_t * style, lv_coord_t value) void lv_style_set_outline_width(lv_style_t * style, lv_coord_t value)
{ {
@@ -418,7 +418,7 @@ void lv_style_set_outline_width(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_OUTLINE_WIDTH, v); lv_style_set_prop(style, LV_STYLE_OUTLINE_WIDTH, v);
} }
const lv_style_prop_t lv_style_const_prop_id_OUTLINE_WIDTH = LV_STYLE_OUTLINE_WIDTH; const lv_style_prop_t _lv_style_const_prop_id_OUTLINE_WIDTH = LV_STYLE_OUTLINE_WIDTH;
void lv_style_set_outline_color(lv_style_t * style, lv_color_t value) void lv_style_set_outline_color(lv_style_t * style, lv_color_t value)
{ {
@@ -428,7 +428,7 @@ void lv_style_set_outline_color(lv_style_t * style, lv_color_t value)
lv_style_set_prop(style, LV_STYLE_OUTLINE_COLOR, v); lv_style_set_prop(style, LV_STYLE_OUTLINE_COLOR, v);
} }
const lv_style_prop_t lv_style_const_prop_id_OUTLINE_COLOR = LV_STYLE_OUTLINE_COLOR; const lv_style_prop_t _lv_style_const_prop_id_OUTLINE_COLOR = LV_STYLE_OUTLINE_COLOR;
void lv_style_set_outline_opa(lv_style_t * style, lv_opa_t value) void lv_style_set_outline_opa(lv_style_t * style, lv_opa_t value)
{ {
@@ -438,7 +438,7 @@ void lv_style_set_outline_opa(lv_style_t * style, lv_opa_t value)
lv_style_set_prop(style, LV_STYLE_OUTLINE_OPA, v); lv_style_set_prop(style, LV_STYLE_OUTLINE_OPA, v);
} }
const lv_style_prop_t lv_style_const_prop_id_OUTLINE_OPA = LV_STYLE_OUTLINE_OPA; const lv_style_prop_t _lv_style_const_prop_id_OUTLINE_OPA = LV_STYLE_OUTLINE_OPA;
void lv_style_set_outline_pad(lv_style_t * style, lv_coord_t value) void lv_style_set_outline_pad(lv_style_t * style, lv_coord_t value)
{ {
@@ -448,7 +448,7 @@ void lv_style_set_outline_pad(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_OUTLINE_PAD, v); lv_style_set_prop(style, LV_STYLE_OUTLINE_PAD, v);
} }
const lv_style_prop_t lv_style_const_prop_id_OUTLINE_PAD = LV_STYLE_OUTLINE_PAD; const lv_style_prop_t _lv_style_const_prop_id_OUTLINE_PAD = LV_STYLE_OUTLINE_PAD;
void lv_style_set_shadow_width(lv_style_t * style, lv_coord_t value) void lv_style_set_shadow_width(lv_style_t * style, lv_coord_t value)
{ {
@@ -458,7 +458,7 @@ void lv_style_set_shadow_width(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_SHADOW_WIDTH, v); lv_style_set_prop(style, LV_STYLE_SHADOW_WIDTH, v);
} }
const lv_style_prop_t lv_style_const_prop_id_SHADOW_WIDTH = LV_STYLE_SHADOW_WIDTH; const lv_style_prop_t _lv_style_const_prop_id_SHADOW_WIDTH = LV_STYLE_SHADOW_WIDTH;
void lv_style_set_shadow_ofs_x(lv_style_t * style, lv_coord_t value) void lv_style_set_shadow_ofs_x(lv_style_t * style, lv_coord_t value)
{ {
@@ -468,7 +468,7 @@ void lv_style_set_shadow_ofs_x(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_SHADOW_OFS_X, v); lv_style_set_prop(style, LV_STYLE_SHADOW_OFS_X, v);
} }
const lv_style_prop_t lv_style_const_prop_id_SHADOW_OFS_X = LV_STYLE_SHADOW_OFS_X; const lv_style_prop_t _lv_style_const_prop_id_SHADOW_OFS_X = LV_STYLE_SHADOW_OFS_X;
void lv_style_set_shadow_ofs_y(lv_style_t * style, lv_coord_t value) void lv_style_set_shadow_ofs_y(lv_style_t * style, lv_coord_t value)
{ {
@@ -478,7 +478,7 @@ void lv_style_set_shadow_ofs_y(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_SHADOW_OFS_Y, v); lv_style_set_prop(style, LV_STYLE_SHADOW_OFS_Y, v);
} }
const lv_style_prop_t lv_style_const_prop_id_SHADOW_OFS_Y = LV_STYLE_SHADOW_OFS_Y; const lv_style_prop_t _lv_style_const_prop_id_SHADOW_OFS_Y = LV_STYLE_SHADOW_OFS_Y;
void lv_style_set_shadow_spread(lv_style_t * style, lv_coord_t value) void lv_style_set_shadow_spread(lv_style_t * style, lv_coord_t value)
{ {
@@ -488,7 +488,7 @@ void lv_style_set_shadow_spread(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_SHADOW_SPREAD, v); lv_style_set_prop(style, LV_STYLE_SHADOW_SPREAD, v);
} }
const lv_style_prop_t lv_style_const_prop_id_SHADOW_SPREAD = LV_STYLE_SHADOW_SPREAD; const lv_style_prop_t _lv_style_const_prop_id_SHADOW_SPREAD = LV_STYLE_SHADOW_SPREAD;
void lv_style_set_shadow_color(lv_style_t * style, lv_color_t value) void lv_style_set_shadow_color(lv_style_t * style, lv_color_t value)
{ {
@@ -498,7 +498,7 @@ void lv_style_set_shadow_color(lv_style_t * style, lv_color_t value)
lv_style_set_prop(style, LV_STYLE_SHADOW_COLOR, v); lv_style_set_prop(style, LV_STYLE_SHADOW_COLOR, v);
} }
const lv_style_prop_t lv_style_const_prop_id_SHADOW_COLOR = LV_STYLE_SHADOW_COLOR; const lv_style_prop_t _lv_style_const_prop_id_SHADOW_COLOR = LV_STYLE_SHADOW_COLOR;
void lv_style_set_shadow_opa(lv_style_t * style, lv_opa_t value) void lv_style_set_shadow_opa(lv_style_t * style, lv_opa_t value)
{ {
@@ -508,7 +508,7 @@ void lv_style_set_shadow_opa(lv_style_t * style, lv_opa_t value)
lv_style_set_prop(style, LV_STYLE_SHADOW_OPA, v); lv_style_set_prop(style, LV_STYLE_SHADOW_OPA, v);
} }
const lv_style_prop_t lv_style_const_prop_id_SHADOW_OPA = LV_STYLE_SHADOW_OPA; const lv_style_prop_t _lv_style_const_prop_id_SHADOW_OPA = LV_STYLE_SHADOW_OPA;
void lv_style_set_img_opa(lv_style_t * style, lv_opa_t value) void lv_style_set_img_opa(lv_style_t * style, lv_opa_t value)
{ {
@@ -518,7 +518,7 @@ void lv_style_set_img_opa(lv_style_t * style, lv_opa_t value)
lv_style_set_prop(style, LV_STYLE_IMG_OPA, v); lv_style_set_prop(style, LV_STYLE_IMG_OPA, v);
} }
const lv_style_prop_t lv_style_const_prop_id_IMG_OPA = LV_STYLE_IMG_OPA; const lv_style_prop_t _lv_style_const_prop_id_IMG_OPA = LV_STYLE_IMG_OPA;
void lv_style_set_img_recolor(lv_style_t * style, lv_color_t value) void lv_style_set_img_recolor(lv_style_t * style, lv_color_t value)
{ {
@@ -528,7 +528,7 @@ void lv_style_set_img_recolor(lv_style_t * style, lv_color_t value)
lv_style_set_prop(style, LV_STYLE_IMG_RECOLOR, v); lv_style_set_prop(style, LV_STYLE_IMG_RECOLOR, v);
} }
const lv_style_prop_t lv_style_const_prop_id_IMG_RECOLOR = LV_STYLE_IMG_RECOLOR; const lv_style_prop_t _lv_style_const_prop_id_IMG_RECOLOR = LV_STYLE_IMG_RECOLOR;
void lv_style_set_img_recolor_opa(lv_style_t * style, lv_opa_t value) void lv_style_set_img_recolor_opa(lv_style_t * style, lv_opa_t value)
{ {
@@ -538,7 +538,7 @@ void lv_style_set_img_recolor_opa(lv_style_t * style, lv_opa_t value)
lv_style_set_prop(style, LV_STYLE_IMG_RECOLOR_OPA, v); lv_style_set_prop(style, LV_STYLE_IMG_RECOLOR_OPA, v);
} }
const lv_style_prop_t lv_style_const_prop_id_IMG_RECOLOR_OPA = LV_STYLE_IMG_RECOLOR_OPA; const lv_style_prop_t _lv_style_const_prop_id_IMG_RECOLOR_OPA = LV_STYLE_IMG_RECOLOR_OPA;
void lv_style_set_line_width(lv_style_t * style, lv_coord_t value) void lv_style_set_line_width(lv_style_t * style, lv_coord_t value)
{ {
@@ -548,7 +548,7 @@ void lv_style_set_line_width(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_LINE_WIDTH, v); lv_style_set_prop(style, LV_STYLE_LINE_WIDTH, v);
} }
const lv_style_prop_t lv_style_const_prop_id_LINE_WIDTH = LV_STYLE_LINE_WIDTH; const lv_style_prop_t _lv_style_const_prop_id_LINE_WIDTH = LV_STYLE_LINE_WIDTH;
void lv_style_set_line_dash_width(lv_style_t * style, lv_coord_t value) void lv_style_set_line_dash_width(lv_style_t * style, lv_coord_t value)
{ {
@@ -558,7 +558,7 @@ void lv_style_set_line_dash_width(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_LINE_DASH_WIDTH, v); lv_style_set_prop(style, LV_STYLE_LINE_DASH_WIDTH, v);
} }
const lv_style_prop_t lv_style_const_prop_id_LINE_DASH_WIDTH = LV_STYLE_LINE_DASH_WIDTH; const lv_style_prop_t _lv_style_const_prop_id_LINE_DASH_WIDTH = LV_STYLE_LINE_DASH_WIDTH;
void lv_style_set_line_dash_gap(lv_style_t * style, lv_coord_t value) void lv_style_set_line_dash_gap(lv_style_t * style, lv_coord_t value)
{ {
@@ -568,7 +568,7 @@ void lv_style_set_line_dash_gap(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_LINE_DASH_GAP, v); lv_style_set_prop(style, LV_STYLE_LINE_DASH_GAP, v);
} }
const lv_style_prop_t lv_style_const_prop_id_LINE_DASH_GAP = LV_STYLE_LINE_DASH_GAP; const lv_style_prop_t _lv_style_const_prop_id_LINE_DASH_GAP = LV_STYLE_LINE_DASH_GAP;
void lv_style_set_line_rounded(lv_style_t * style, bool value) void lv_style_set_line_rounded(lv_style_t * style, bool value)
{ {
@@ -578,7 +578,7 @@ void lv_style_set_line_rounded(lv_style_t * style, bool value)
lv_style_set_prop(style, LV_STYLE_LINE_ROUNDED, v); lv_style_set_prop(style, LV_STYLE_LINE_ROUNDED, v);
} }
const lv_style_prop_t lv_style_const_prop_id_LINE_ROUNDED = LV_STYLE_LINE_ROUNDED; const lv_style_prop_t _lv_style_const_prop_id_LINE_ROUNDED = LV_STYLE_LINE_ROUNDED;
void lv_style_set_line_color(lv_style_t * style, lv_color_t value) void lv_style_set_line_color(lv_style_t * style, lv_color_t value)
{ {
@@ -588,7 +588,7 @@ void lv_style_set_line_color(lv_style_t * style, lv_color_t value)
lv_style_set_prop(style, LV_STYLE_LINE_COLOR, v); lv_style_set_prop(style, LV_STYLE_LINE_COLOR, v);
} }
const lv_style_prop_t lv_style_const_prop_id_LINE_COLOR = LV_STYLE_LINE_COLOR; const lv_style_prop_t _lv_style_const_prop_id_LINE_COLOR = LV_STYLE_LINE_COLOR;
void lv_style_set_line_opa(lv_style_t * style, lv_opa_t value) void lv_style_set_line_opa(lv_style_t * style, lv_opa_t value)
{ {
@@ -598,7 +598,7 @@ void lv_style_set_line_opa(lv_style_t * style, lv_opa_t value)
lv_style_set_prop(style, LV_STYLE_LINE_OPA, v); lv_style_set_prop(style, LV_STYLE_LINE_OPA, v);
} }
const lv_style_prop_t lv_style_const_prop_id_LINE_OPA = LV_STYLE_LINE_OPA; const lv_style_prop_t _lv_style_const_prop_id_LINE_OPA = LV_STYLE_LINE_OPA;
void lv_style_set_arc_width(lv_style_t * style, lv_coord_t value) void lv_style_set_arc_width(lv_style_t * style, lv_coord_t value)
{ {
@@ -608,7 +608,7 @@ void lv_style_set_arc_width(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_ARC_WIDTH, v); lv_style_set_prop(style, LV_STYLE_ARC_WIDTH, v);
} }
const lv_style_prop_t lv_style_const_prop_id_ARC_WIDTH = LV_STYLE_ARC_WIDTH; const lv_style_prop_t _lv_style_const_prop_id_ARC_WIDTH = LV_STYLE_ARC_WIDTH;
void lv_style_set_arc_rounded(lv_style_t * style, bool value) void lv_style_set_arc_rounded(lv_style_t * style, bool value)
{ {
@@ -618,7 +618,7 @@ void lv_style_set_arc_rounded(lv_style_t * style, bool value)
lv_style_set_prop(style, LV_STYLE_ARC_ROUNDED, v); lv_style_set_prop(style, LV_STYLE_ARC_ROUNDED, v);
} }
const lv_style_prop_t lv_style_const_prop_id_ARC_ROUNDED = LV_STYLE_ARC_ROUNDED; const lv_style_prop_t _lv_style_const_prop_id_ARC_ROUNDED = LV_STYLE_ARC_ROUNDED;
void lv_style_set_arc_color(lv_style_t * style, lv_color_t value) void lv_style_set_arc_color(lv_style_t * style, lv_color_t value)
{ {
@@ -628,7 +628,7 @@ void lv_style_set_arc_color(lv_style_t * style, lv_color_t value)
lv_style_set_prop(style, LV_STYLE_ARC_COLOR, v); lv_style_set_prop(style, LV_STYLE_ARC_COLOR, v);
} }
const lv_style_prop_t lv_style_const_prop_id_ARC_COLOR = LV_STYLE_ARC_COLOR; const lv_style_prop_t _lv_style_const_prop_id_ARC_COLOR = LV_STYLE_ARC_COLOR;
void lv_style_set_arc_opa(lv_style_t * style, lv_opa_t value) void lv_style_set_arc_opa(lv_style_t * style, lv_opa_t value)
{ {
@@ -638,7 +638,7 @@ void lv_style_set_arc_opa(lv_style_t * style, lv_opa_t value)
lv_style_set_prop(style, LV_STYLE_ARC_OPA, v); lv_style_set_prop(style, LV_STYLE_ARC_OPA, v);
} }
const lv_style_prop_t lv_style_const_prop_id_ARC_OPA = LV_STYLE_ARC_OPA; const lv_style_prop_t _lv_style_const_prop_id_ARC_OPA = LV_STYLE_ARC_OPA;
void lv_style_set_arc_img_src(lv_style_t * style, const void * value) void lv_style_set_arc_img_src(lv_style_t * style, const void * value)
{ {
@@ -648,7 +648,7 @@ void lv_style_set_arc_img_src(lv_style_t * style, const void * value)
lv_style_set_prop(style, LV_STYLE_ARC_IMG_SRC, v); lv_style_set_prop(style, LV_STYLE_ARC_IMG_SRC, v);
} }
const lv_style_prop_t lv_style_const_prop_id_ARC_IMG_SRC = LV_STYLE_ARC_IMG_SRC; const lv_style_prop_t _lv_style_const_prop_id_ARC_IMG_SRC = LV_STYLE_ARC_IMG_SRC;
void lv_style_set_text_color(lv_style_t * style, lv_color_t value) void lv_style_set_text_color(lv_style_t * style, lv_color_t value)
{ {
@@ -658,7 +658,7 @@ void lv_style_set_text_color(lv_style_t * style, lv_color_t value)
lv_style_set_prop(style, LV_STYLE_TEXT_COLOR, v); lv_style_set_prop(style, LV_STYLE_TEXT_COLOR, v);
} }
const lv_style_prop_t lv_style_const_prop_id_TEXT_COLOR = LV_STYLE_TEXT_COLOR; const lv_style_prop_t _lv_style_const_prop_id_TEXT_COLOR = LV_STYLE_TEXT_COLOR;
void lv_style_set_text_opa(lv_style_t * style, lv_opa_t value) void lv_style_set_text_opa(lv_style_t * style, lv_opa_t value)
{ {
@@ -668,7 +668,7 @@ void lv_style_set_text_opa(lv_style_t * style, lv_opa_t value)
lv_style_set_prop(style, LV_STYLE_TEXT_OPA, v); lv_style_set_prop(style, LV_STYLE_TEXT_OPA, v);
} }
const lv_style_prop_t lv_style_const_prop_id_TEXT_OPA = LV_STYLE_TEXT_OPA; const lv_style_prop_t _lv_style_const_prop_id_TEXT_OPA = LV_STYLE_TEXT_OPA;
void lv_style_set_text_font(lv_style_t * style, const lv_font_t * value) void lv_style_set_text_font(lv_style_t * style, const lv_font_t * value)
{ {
@@ -678,7 +678,7 @@ void lv_style_set_text_font(lv_style_t * style, const lv_font_t * value)
lv_style_set_prop(style, LV_STYLE_TEXT_FONT, v); lv_style_set_prop(style, LV_STYLE_TEXT_FONT, v);
} }
const lv_style_prop_t lv_style_const_prop_id_TEXT_FONT = LV_STYLE_TEXT_FONT; const lv_style_prop_t _lv_style_const_prop_id_TEXT_FONT = LV_STYLE_TEXT_FONT;
void lv_style_set_text_letter_space(lv_style_t * style, lv_coord_t value) void lv_style_set_text_letter_space(lv_style_t * style, lv_coord_t value)
{ {
@@ -688,7 +688,7 @@ void lv_style_set_text_letter_space(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_TEXT_LETTER_SPACE, v); lv_style_set_prop(style, LV_STYLE_TEXT_LETTER_SPACE, v);
} }
const lv_style_prop_t lv_style_const_prop_id_TEXT_LETTER_SPACE = LV_STYLE_TEXT_LETTER_SPACE; const lv_style_prop_t _lv_style_const_prop_id_TEXT_LETTER_SPACE = LV_STYLE_TEXT_LETTER_SPACE;
void lv_style_set_text_line_space(lv_style_t * style, lv_coord_t value) void lv_style_set_text_line_space(lv_style_t * style, lv_coord_t value)
{ {
@@ -698,7 +698,7 @@ void lv_style_set_text_line_space(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_TEXT_LINE_SPACE, v); lv_style_set_prop(style, LV_STYLE_TEXT_LINE_SPACE, v);
} }
const lv_style_prop_t lv_style_const_prop_id_TEXT_LINE_SPACE = LV_STYLE_TEXT_LINE_SPACE; const lv_style_prop_t _lv_style_const_prop_id_TEXT_LINE_SPACE = LV_STYLE_TEXT_LINE_SPACE;
void lv_style_set_text_decor(lv_style_t * style, lv_text_decor_t value) void lv_style_set_text_decor(lv_style_t * style, lv_text_decor_t value)
{ {
@@ -708,7 +708,7 @@ void lv_style_set_text_decor(lv_style_t * style, lv_text_decor_t value)
lv_style_set_prop(style, LV_STYLE_TEXT_DECOR, v); lv_style_set_prop(style, LV_STYLE_TEXT_DECOR, v);
} }
const lv_style_prop_t lv_style_const_prop_id_TEXT_DECOR = LV_STYLE_TEXT_DECOR; const lv_style_prop_t _lv_style_const_prop_id_TEXT_DECOR = LV_STYLE_TEXT_DECOR;
void lv_style_set_text_align(lv_style_t * style, lv_text_align_t value) void lv_style_set_text_align(lv_style_t * style, lv_text_align_t value)
{ {
@@ -718,7 +718,7 @@ void lv_style_set_text_align(lv_style_t * style, lv_text_align_t value)
lv_style_set_prop(style, LV_STYLE_TEXT_ALIGN, v); lv_style_set_prop(style, LV_STYLE_TEXT_ALIGN, v);
} }
const lv_style_prop_t lv_style_const_prop_id_TEXT_ALIGN = LV_STYLE_TEXT_ALIGN; const lv_style_prop_t _lv_style_const_prop_id_TEXT_ALIGN = LV_STYLE_TEXT_ALIGN;
void lv_style_set_radius(lv_style_t * style, lv_coord_t value) void lv_style_set_radius(lv_style_t * style, lv_coord_t value)
{ {
@@ -728,7 +728,7 @@ void lv_style_set_radius(lv_style_t * style, lv_coord_t value)
lv_style_set_prop(style, LV_STYLE_RADIUS, v); lv_style_set_prop(style, LV_STYLE_RADIUS, v);
} }
const lv_style_prop_t lv_style_const_prop_id_RADIUS = LV_STYLE_RADIUS; const lv_style_prop_t _lv_style_const_prop_id_RADIUS = LV_STYLE_RADIUS;
void lv_style_set_clip_corner(lv_style_t * style, bool value) void lv_style_set_clip_corner(lv_style_t * style, bool value)
{ {
@@ -738,7 +738,7 @@ void lv_style_set_clip_corner(lv_style_t * style, bool value)
lv_style_set_prop(style, LV_STYLE_CLIP_CORNER, v); lv_style_set_prop(style, LV_STYLE_CLIP_CORNER, v);
} }
const lv_style_prop_t lv_style_const_prop_id_CLIP_CORNER = LV_STYLE_CLIP_CORNER; const lv_style_prop_t _lv_style_const_prop_id_CLIP_CORNER = LV_STYLE_CLIP_CORNER;
void lv_style_set_opa(lv_style_t * style, lv_opa_t value) void lv_style_set_opa(lv_style_t * style, lv_opa_t value)
{ {
@@ -748,7 +748,7 @@ void lv_style_set_opa(lv_style_t * style, lv_opa_t value)
lv_style_set_prop(style, LV_STYLE_OPA, v); lv_style_set_prop(style, LV_STYLE_OPA, v);
} }
const lv_style_prop_t lv_style_const_prop_id_OPA = LV_STYLE_OPA; const lv_style_prop_t _lv_style_const_prop_id_OPA = LV_STYLE_OPA;
void lv_style_set_color_filter_dsc(lv_style_t * style, const lv_color_filter_dsc_t * value) void lv_style_set_color_filter_dsc(lv_style_t * style, const lv_color_filter_dsc_t * value)
{ {
@@ -758,7 +758,7 @@ void lv_style_set_color_filter_dsc(lv_style_t * style, const lv_color_filter_dsc
lv_style_set_prop(style, LV_STYLE_COLOR_FILTER_DSC, v); lv_style_set_prop(style, LV_STYLE_COLOR_FILTER_DSC, v);
} }
const lv_style_prop_t lv_style_const_prop_id_COLOR_FILTER_DSC = LV_STYLE_COLOR_FILTER_DSC; const lv_style_prop_t _lv_style_const_prop_id_COLOR_FILTER_DSC = LV_STYLE_COLOR_FILTER_DSC;
void lv_style_set_color_filter_opa(lv_style_t * style, lv_opa_t value) void lv_style_set_color_filter_opa(lv_style_t * style, lv_opa_t value)
{ {
@@ -768,7 +768,7 @@ void lv_style_set_color_filter_opa(lv_style_t * style, lv_opa_t value)
lv_style_set_prop(style, LV_STYLE_COLOR_FILTER_OPA, v); lv_style_set_prop(style, LV_STYLE_COLOR_FILTER_OPA, v);
} }
const lv_style_prop_t lv_style_const_prop_id_COLOR_FILTER_OPA = LV_STYLE_COLOR_FILTER_OPA; const lv_style_prop_t _lv_style_const_prop_id_COLOR_FILTER_OPA = LV_STYLE_COLOR_FILTER_OPA;
void lv_style_set_anim(lv_style_t * style, const lv_anim_t * value) void lv_style_set_anim(lv_style_t * style, const lv_anim_t * value)
{ {
@@ -778,7 +778,7 @@ void lv_style_set_anim(lv_style_t * style, const lv_anim_t * value)
lv_style_set_prop(style, LV_STYLE_ANIM, v); lv_style_set_prop(style, LV_STYLE_ANIM, v);
} }
const lv_style_prop_t lv_style_const_prop_id_ANIM = LV_STYLE_ANIM; const lv_style_prop_t _lv_style_const_prop_id_ANIM = LV_STYLE_ANIM;
void lv_style_set_anim_time(lv_style_t * style, uint32_t value) void lv_style_set_anim_time(lv_style_t * style, uint32_t value)
{ {
@@ -788,7 +788,7 @@ void lv_style_set_anim_time(lv_style_t * style, uint32_t value)
lv_style_set_prop(style, LV_STYLE_ANIM_TIME, v); lv_style_set_prop(style, LV_STYLE_ANIM_TIME, v);
} }
const lv_style_prop_t lv_style_const_prop_id_ANIM_TIME = LV_STYLE_ANIM_TIME; const lv_style_prop_t _lv_style_const_prop_id_ANIM_TIME = LV_STYLE_ANIM_TIME;
void lv_style_set_anim_speed(lv_style_t * style, uint32_t value) void lv_style_set_anim_speed(lv_style_t * style, uint32_t value)
{ {
@@ -798,7 +798,7 @@ void lv_style_set_anim_speed(lv_style_t * style, uint32_t value)
lv_style_set_prop(style, LV_STYLE_ANIM_SPEED, v); lv_style_set_prop(style, LV_STYLE_ANIM_SPEED, v);
} }
const lv_style_prop_t lv_style_const_prop_id_ANIM_SPEED = LV_STYLE_ANIM_SPEED; const lv_style_prop_t _lv_style_const_prop_id_ANIM_SPEED = LV_STYLE_ANIM_SPEED;
void lv_style_set_transition(lv_style_t * style, const lv_style_transition_dsc_t * value) void lv_style_set_transition(lv_style_t * style, const lv_style_transition_dsc_t * value)
{ {
@@ -808,7 +808,7 @@ void lv_style_set_transition(lv_style_t * style, const lv_style_transition_dsc_t
lv_style_set_prop(style, LV_STYLE_TRANSITION, v); lv_style_set_prop(style, LV_STYLE_TRANSITION, v);
} }
const lv_style_prop_t lv_style_const_prop_id_TRANSITION = LV_STYLE_TRANSITION; const lv_style_prop_t _lv_style_const_prop_id_TRANSITION = LV_STYLE_TRANSITION;
void lv_style_set_blend_mode(lv_style_t * style, lv_blend_mode_t value) void lv_style_set_blend_mode(lv_style_t * style, lv_blend_mode_t value)
{ {
@@ -818,7 +818,7 @@ void lv_style_set_blend_mode(lv_style_t * style, lv_blend_mode_t value)
lv_style_set_prop(style, LV_STYLE_BLEND_MODE, v); lv_style_set_prop(style, LV_STYLE_BLEND_MODE, v);
} }
const lv_style_prop_t lv_style_const_prop_id_BLEND_MODE = LV_STYLE_BLEND_MODE; const lv_style_prop_t _lv_style_const_prop_id_BLEND_MODE = LV_STYLE_BLEND_MODE;
void lv_style_set_layout(lv_style_t * style, uint16_t value) void lv_style_set_layout(lv_style_t * style, uint16_t value)
{ {
@@ -828,7 +828,7 @@ void lv_style_set_layout(lv_style_t * style, uint16_t value)
lv_style_set_prop(style, LV_STYLE_LAYOUT, v); lv_style_set_prop(style, LV_STYLE_LAYOUT, v);
} }
const lv_style_prop_t lv_style_const_prop_id_LAYOUT = LV_STYLE_LAYOUT; const lv_style_prop_t _lv_style_const_prop_id_LAYOUT = LV_STYLE_LAYOUT;
void lv_style_set_base_dir(lv_style_t * style, lv_base_dir_t value) void lv_style_set_base_dir(lv_style_t * style, lv_base_dir_t value)
{ {
@@ -838,4 +838,4 @@ void lv_style_set_base_dir(lv_style_t * style, lv_base_dir_t value)
lv_style_set_prop(style, LV_STYLE_BASE_DIR, v); lv_style_set_prop(style, LV_STYLE_BASE_DIR, v);
} }
const lv_style_prop_t lv_style_const_prop_id_BASE_DIR = LV_STYLE_BASE_DIR; const lv_style_prop_t _lv_style_const_prop_id_BASE_DIR = LV_STYLE_BASE_DIR;

View File

@@ -1,588 +1,588 @@
void lv_style_set_width(lv_style_t * style, lv_coord_t value); void lv_style_set_width(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_WIDTH; extern const lv_style_prop_t _lv_style_const_prop_id_WIDTH;
void lv_style_set_min_width(lv_style_t * style, lv_coord_t value); void lv_style_set_min_width(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_MIN_WIDTH; extern const lv_style_prop_t _lv_style_const_prop_id_MIN_WIDTH;
void lv_style_set_max_width(lv_style_t * style, lv_coord_t value); void lv_style_set_max_width(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_MAX_WIDTH; extern const lv_style_prop_t _lv_style_const_prop_id_MAX_WIDTH;
void lv_style_set_height(lv_style_t * style, lv_coord_t value); void lv_style_set_height(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_HEIGHT; extern const lv_style_prop_t _lv_style_const_prop_id_HEIGHT;
void lv_style_set_min_height(lv_style_t * style, lv_coord_t value); void lv_style_set_min_height(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_MIN_HEIGHT; extern const lv_style_prop_t _lv_style_const_prop_id_MIN_HEIGHT;
void lv_style_set_max_height(lv_style_t * style, lv_coord_t value); void lv_style_set_max_height(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_MAX_HEIGHT; extern const lv_style_prop_t _lv_style_const_prop_id_MAX_HEIGHT;
void lv_style_set_x(lv_style_t * style, lv_coord_t value); void lv_style_set_x(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_X; extern const lv_style_prop_t _lv_style_const_prop_id_X;
void lv_style_set_y(lv_style_t * style, lv_coord_t value); void lv_style_set_y(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_Y; extern const lv_style_prop_t _lv_style_const_prop_id_Y;
void lv_style_set_align(lv_style_t * style, lv_align_t value); void lv_style_set_align(lv_style_t * style, lv_align_t value);
extern const lv_style_prop_t lv_style_const_prop_id_ALIGN; extern const lv_style_prop_t _lv_style_const_prop_id_ALIGN;
void lv_style_set_transform_width(lv_style_t * style, lv_coord_t value); void lv_style_set_transform_width(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_TRANSFORM_WIDTH; extern const lv_style_prop_t _lv_style_const_prop_id_TRANSFORM_WIDTH;
void lv_style_set_transform_height(lv_style_t * style, lv_coord_t value); void lv_style_set_transform_height(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_TRANSFORM_HEIGHT; extern const lv_style_prop_t _lv_style_const_prop_id_TRANSFORM_HEIGHT;
void lv_style_set_translate_x(lv_style_t * style, lv_coord_t value); void lv_style_set_translate_x(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_TRANSLATE_X; extern const lv_style_prop_t _lv_style_const_prop_id_TRANSLATE_X;
void lv_style_set_translate_y(lv_style_t * style, lv_coord_t value); void lv_style_set_translate_y(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_TRANSLATE_Y; extern const lv_style_prop_t _lv_style_const_prop_id_TRANSLATE_Y;
void lv_style_set_transform_zoom(lv_style_t * style, lv_coord_t value); void lv_style_set_transform_zoom(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_TRANSFORM_ZOOM; extern const lv_style_prop_t _lv_style_const_prop_id_TRANSFORM_ZOOM;
void lv_style_set_transform_angle(lv_style_t * style, lv_coord_t value); void lv_style_set_transform_angle(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_TRANSFORM_ANGLE; extern const lv_style_prop_t _lv_style_const_prop_id_TRANSFORM_ANGLE;
void lv_style_set_transform_pivot_x(lv_style_t * style, lv_coord_t value); void lv_style_set_transform_pivot_x(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_TRANSFORM_PIVOT_X; extern const lv_style_prop_t _lv_style_const_prop_id_TRANSFORM_PIVOT_X;
void lv_style_set_transform_pivot_y(lv_style_t * style, lv_coord_t value); void lv_style_set_transform_pivot_y(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_TRANSFORM_PIVOT_Y; extern const lv_style_prop_t _lv_style_const_prop_id_TRANSFORM_PIVOT_Y;
void lv_style_set_pad_top(lv_style_t * style, lv_coord_t value); void lv_style_set_pad_top(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_PAD_TOP; extern const lv_style_prop_t _lv_style_const_prop_id_PAD_TOP;
void lv_style_set_pad_bottom(lv_style_t * style, lv_coord_t value); void lv_style_set_pad_bottom(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_PAD_BOTTOM; extern const lv_style_prop_t _lv_style_const_prop_id_PAD_BOTTOM;
void lv_style_set_pad_left(lv_style_t * style, lv_coord_t value); void lv_style_set_pad_left(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_PAD_LEFT; extern const lv_style_prop_t _lv_style_const_prop_id_PAD_LEFT;
void lv_style_set_pad_right(lv_style_t * style, lv_coord_t value); void lv_style_set_pad_right(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_PAD_RIGHT; extern const lv_style_prop_t _lv_style_const_prop_id_PAD_RIGHT;
void lv_style_set_pad_row(lv_style_t * style, lv_coord_t value); void lv_style_set_pad_row(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_PAD_ROW; extern const lv_style_prop_t _lv_style_const_prop_id_PAD_ROW;
void lv_style_set_pad_column(lv_style_t * style, lv_coord_t value); void lv_style_set_pad_column(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_PAD_COLUMN; extern const lv_style_prop_t _lv_style_const_prop_id_PAD_COLUMN;
void lv_style_set_bg_color(lv_style_t * style, lv_color_t value); void lv_style_set_bg_color(lv_style_t * style, lv_color_t value);
extern const lv_style_prop_t lv_style_const_prop_id_BG_COLOR; extern const lv_style_prop_t _lv_style_const_prop_id_BG_COLOR;
void lv_style_set_bg_opa(lv_style_t * style, lv_opa_t value); void lv_style_set_bg_opa(lv_style_t * style, lv_opa_t value);
extern const lv_style_prop_t lv_style_const_prop_id_BG_OPA; extern const lv_style_prop_t _lv_style_const_prop_id_BG_OPA;
void lv_style_set_bg_grad_color(lv_style_t * style, lv_color_t value); void lv_style_set_bg_grad_color(lv_style_t * style, lv_color_t value);
extern const lv_style_prop_t lv_style_const_prop_id_BG_GRAD_COLOR; extern const lv_style_prop_t _lv_style_const_prop_id_BG_GRAD_COLOR;
void lv_style_set_bg_grad_dir(lv_style_t * style, lv_grad_dir_t value); void lv_style_set_bg_grad_dir(lv_style_t * style, lv_grad_dir_t value);
extern const lv_style_prop_t lv_style_const_prop_id_BG_GRAD_DIR; extern const lv_style_prop_t _lv_style_const_prop_id_BG_GRAD_DIR;
void lv_style_set_bg_main_stop(lv_style_t * style, lv_coord_t value); void lv_style_set_bg_main_stop(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_BG_MAIN_STOP; extern const lv_style_prop_t _lv_style_const_prop_id_BG_MAIN_STOP;
void lv_style_set_bg_grad_stop(lv_style_t * style, lv_coord_t value); void lv_style_set_bg_grad_stop(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_BG_GRAD_STOP; extern const lv_style_prop_t _lv_style_const_prop_id_BG_GRAD_STOP;
void lv_style_set_bg_grad(lv_style_t * style, const lv_grad_dsc_t * value); void lv_style_set_bg_grad(lv_style_t * style, const lv_grad_dsc_t * value);
extern const lv_style_prop_t lv_style_const_prop_id_BG_GRAD; extern const lv_style_prop_t _lv_style_const_prop_id_BG_GRAD;
void lv_style_set_bg_dither_mode(lv_style_t * style, lv_dither_mode_t value); void lv_style_set_bg_dither_mode(lv_style_t * style, lv_dither_mode_t value);
extern const lv_style_prop_t lv_style_const_prop_id_BG_DITHER_MODE; extern const lv_style_prop_t _lv_style_const_prop_id_BG_DITHER_MODE;
void lv_style_set_bg_img_src(lv_style_t * style, const void * value); void lv_style_set_bg_img_src(lv_style_t * style, const void * value);
extern const lv_style_prop_t lv_style_const_prop_id_BG_IMG_SRC; extern const lv_style_prop_t _lv_style_const_prop_id_BG_IMG_SRC;
void lv_style_set_bg_img_opa(lv_style_t * style, lv_opa_t value); void lv_style_set_bg_img_opa(lv_style_t * style, lv_opa_t value);
extern const lv_style_prop_t lv_style_const_prop_id_BG_IMG_OPA; extern const lv_style_prop_t _lv_style_const_prop_id_BG_IMG_OPA;
void lv_style_set_bg_img_recolor(lv_style_t * style, lv_color_t value); void lv_style_set_bg_img_recolor(lv_style_t * style, lv_color_t value);
extern const lv_style_prop_t lv_style_const_prop_id_BG_IMG_RECOLOR; extern const lv_style_prop_t _lv_style_const_prop_id_BG_IMG_RECOLOR;
void lv_style_set_bg_img_recolor_opa(lv_style_t * style, lv_opa_t value); void lv_style_set_bg_img_recolor_opa(lv_style_t * style, lv_opa_t value);
extern const lv_style_prop_t lv_style_const_prop_id_BG_IMG_RECOLOR_OPA; extern const lv_style_prop_t _lv_style_const_prop_id_BG_IMG_RECOLOR_OPA;
void lv_style_set_bg_img_tiled(lv_style_t * style, bool value); void lv_style_set_bg_img_tiled(lv_style_t * style, bool value);
extern const lv_style_prop_t lv_style_const_prop_id_BG_IMG_TILED; extern const lv_style_prop_t _lv_style_const_prop_id_BG_IMG_TILED;
void lv_style_set_border_color(lv_style_t * style, lv_color_t value); void lv_style_set_border_color(lv_style_t * style, lv_color_t value);
extern const lv_style_prop_t lv_style_const_prop_id_BORDER_COLOR; extern const lv_style_prop_t _lv_style_const_prop_id_BORDER_COLOR;
void lv_style_set_border_opa(lv_style_t * style, lv_opa_t value); void lv_style_set_border_opa(lv_style_t * style, lv_opa_t value);
extern const lv_style_prop_t lv_style_const_prop_id_BORDER_OPA; extern const lv_style_prop_t _lv_style_const_prop_id_BORDER_OPA;
void lv_style_set_border_width(lv_style_t * style, lv_coord_t value); void lv_style_set_border_width(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_BORDER_WIDTH; extern const lv_style_prop_t _lv_style_const_prop_id_BORDER_WIDTH;
void lv_style_set_border_side(lv_style_t * style, lv_border_side_t value); void lv_style_set_border_side(lv_style_t * style, lv_border_side_t value);
extern const lv_style_prop_t lv_style_const_prop_id_BORDER_SIDE; extern const lv_style_prop_t _lv_style_const_prop_id_BORDER_SIDE;
void lv_style_set_border_post(lv_style_t * style, bool value); void lv_style_set_border_post(lv_style_t * style, bool value);
extern const lv_style_prop_t lv_style_const_prop_id_BORDER_POST; extern const lv_style_prop_t _lv_style_const_prop_id_BORDER_POST;
void lv_style_set_outline_width(lv_style_t * style, lv_coord_t value); void lv_style_set_outline_width(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_OUTLINE_WIDTH; extern const lv_style_prop_t _lv_style_const_prop_id_OUTLINE_WIDTH;
void lv_style_set_outline_color(lv_style_t * style, lv_color_t value); void lv_style_set_outline_color(lv_style_t * style, lv_color_t value);
extern const lv_style_prop_t lv_style_const_prop_id_OUTLINE_COLOR; extern const lv_style_prop_t _lv_style_const_prop_id_OUTLINE_COLOR;
void lv_style_set_outline_opa(lv_style_t * style, lv_opa_t value); void lv_style_set_outline_opa(lv_style_t * style, lv_opa_t value);
extern const lv_style_prop_t lv_style_const_prop_id_OUTLINE_OPA; extern const lv_style_prop_t _lv_style_const_prop_id_OUTLINE_OPA;
void lv_style_set_outline_pad(lv_style_t * style, lv_coord_t value); void lv_style_set_outline_pad(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_OUTLINE_PAD; extern const lv_style_prop_t _lv_style_const_prop_id_OUTLINE_PAD;
void lv_style_set_shadow_width(lv_style_t * style, lv_coord_t value); void lv_style_set_shadow_width(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_SHADOW_WIDTH; extern const lv_style_prop_t _lv_style_const_prop_id_SHADOW_WIDTH;
void lv_style_set_shadow_ofs_x(lv_style_t * style, lv_coord_t value); void lv_style_set_shadow_ofs_x(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_SHADOW_OFS_X; extern const lv_style_prop_t _lv_style_const_prop_id_SHADOW_OFS_X;
void lv_style_set_shadow_ofs_y(lv_style_t * style, lv_coord_t value); void lv_style_set_shadow_ofs_y(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_SHADOW_OFS_Y; extern const lv_style_prop_t _lv_style_const_prop_id_SHADOW_OFS_Y;
void lv_style_set_shadow_spread(lv_style_t * style, lv_coord_t value); void lv_style_set_shadow_spread(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_SHADOW_SPREAD; extern const lv_style_prop_t _lv_style_const_prop_id_SHADOW_SPREAD;
void lv_style_set_shadow_color(lv_style_t * style, lv_color_t value); void lv_style_set_shadow_color(lv_style_t * style, lv_color_t value);
extern const lv_style_prop_t lv_style_const_prop_id_SHADOW_COLOR; extern const lv_style_prop_t _lv_style_const_prop_id_SHADOW_COLOR;
void lv_style_set_shadow_opa(lv_style_t * style, lv_opa_t value); void lv_style_set_shadow_opa(lv_style_t * style, lv_opa_t value);
extern const lv_style_prop_t lv_style_const_prop_id_SHADOW_OPA; extern const lv_style_prop_t _lv_style_const_prop_id_SHADOW_OPA;
void lv_style_set_img_opa(lv_style_t * style, lv_opa_t value); void lv_style_set_img_opa(lv_style_t * style, lv_opa_t value);
extern const lv_style_prop_t lv_style_const_prop_id_IMG_OPA; extern const lv_style_prop_t _lv_style_const_prop_id_IMG_OPA;
void lv_style_set_img_recolor(lv_style_t * style, lv_color_t value); void lv_style_set_img_recolor(lv_style_t * style, lv_color_t value);
extern const lv_style_prop_t lv_style_const_prop_id_IMG_RECOLOR; extern const lv_style_prop_t _lv_style_const_prop_id_IMG_RECOLOR;
void lv_style_set_img_recolor_opa(lv_style_t * style, lv_opa_t value); void lv_style_set_img_recolor_opa(lv_style_t * style, lv_opa_t value);
extern const lv_style_prop_t lv_style_const_prop_id_IMG_RECOLOR_OPA; extern const lv_style_prop_t _lv_style_const_prop_id_IMG_RECOLOR_OPA;
void lv_style_set_line_width(lv_style_t * style, lv_coord_t value); void lv_style_set_line_width(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_LINE_WIDTH; extern const lv_style_prop_t _lv_style_const_prop_id_LINE_WIDTH;
void lv_style_set_line_dash_width(lv_style_t * style, lv_coord_t value); void lv_style_set_line_dash_width(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_LINE_DASH_WIDTH; extern const lv_style_prop_t _lv_style_const_prop_id_LINE_DASH_WIDTH;
void lv_style_set_line_dash_gap(lv_style_t * style, lv_coord_t value); void lv_style_set_line_dash_gap(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_LINE_DASH_GAP; extern const lv_style_prop_t _lv_style_const_prop_id_LINE_DASH_GAP;
void lv_style_set_line_rounded(lv_style_t * style, bool value); void lv_style_set_line_rounded(lv_style_t * style, bool value);
extern const lv_style_prop_t lv_style_const_prop_id_LINE_ROUNDED; extern const lv_style_prop_t _lv_style_const_prop_id_LINE_ROUNDED;
void lv_style_set_line_color(lv_style_t * style, lv_color_t value); void lv_style_set_line_color(lv_style_t * style, lv_color_t value);
extern const lv_style_prop_t lv_style_const_prop_id_LINE_COLOR; extern const lv_style_prop_t _lv_style_const_prop_id_LINE_COLOR;
void lv_style_set_line_opa(lv_style_t * style, lv_opa_t value); void lv_style_set_line_opa(lv_style_t * style, lv_opa_t value);
extern const lv_style_prop_t lv_style_const_prop_id_LINE_OPA; extern const lv_style_prop_t _lv_style_const_prop_id_LINE_OPA;
void lv_style_set_arc_width(lv_style_t * style, lv_coord_t value); void lv_style_set_arc_width(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_ARC_WIDTH; extern const lv_style_prop_t _lv_style_const_prop_id_ARC_WIDTH;
void lv_style_set_arc_rounded(lv_style_t * style, bool value); void lv_style_set_arc_rounded(lv_style_t * style, bool value);
extern const lv_style_prop_t lv_style_const_prop_id_ARC_ROUNDED; extern const lv_style_prop_t _lv_style_const_prop_id_ARC_ROUNDED;
void lv_style_set_arc_color(lv_style_t * style, lv_color_t value); void lv_style_set_arc_color(lv_style_t * style, lv_color_t value);
extern const lv_style_prop_t lv_style_const_prop_id_ARC_COLOR; extern const lv_style_prop_t _lv_style_const_prop_id_ARC_COLOR;
void lv_style_set_arc_opa(lv_style_t * style, lv_opa_t value); void lv_style_set_arc_opa(lv_style_t * style, lv_opa_t value);
extern const lv_style_prop_t lv_style_const_prop_id_ARC_OPA; extern const lv_style_prop_t _lv_style_const_prop_id_ARC_OPA;
void lv_style_set_arc_img_src(lv_style_t * style, const void * value); void lv_style_set_arc_img_src(lv_style_t * style, const void * value);
extern const lv_style_prop_t lv_style_const_prop_id_ARC_IMG_SRC; extern const lv_style_prop_t _lv_style_const_prop_id_ARC_IMG_SRC;
void lv_style_set_text_color(lv_style_t * style, lv_color_t value); void lv_style_set_text_color(lv_style_t * style, lv_color_t value);
extern const lv_style_prop_t lv_style_const_prop_id_TEXT_COLOR; extern const lv_style_prop_t _lv_style_const_prop_id_TEXT_COLOR;
void lv_style_set_text_opa(lv_style_t * style, lv_opa_t value); void lv_style_set_text_opa(lv_style_t * style, lv_opa_t value);
extern const lv_style_prop_t lv_style_const_prop_id_TEXT_OPA; extern const lv_style_prop_t _lv_style_const_prop_id_TEXT_OPA;
void lv_style_set_text_font(lv_style_t * style, const lv_font_t * value); void lv_style_set_text_font(lv_style_t * style, const lv_font_t * value);
extern const lv_style_prop_t lv_style_const_prop_id_TEXT_FONT; extern const lv_style_prop_t _lv_style_const_prop_id_TEXT_FONT;
void lv_style_set_text_letter_space(lv_style_t * style, lv_coord_t value); void lv_style_set_text_letter_space(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_TEXT_LETTER_SPACE; extern const lv_style_prop_t _lv_style_const_prop_id_TEXT_LETTER_SPACE;
void lv_style_set_text_line_space(lv_style_t * style, lv_coord_t value); void lv_style_set_text_line_space(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_TEXT_LINE_SPACE; extern const lv_style_prop_t _lv_style_const_prop_id_TEXT_LINE_SPACE;
void lv_style_set_text_decor(lv_style_t * style, lv_text_decor_t value); void lv_style_set_text_decor(lv_style_t * style, lv_text_decor_t value);
extern const lv_style_prop_t lv_style_const_prop_id_TEXT_DECOR; extern const lv_style_prop_t _lv_style_const_prop_id_TEXT_DECOR;
void lv_style_set_text_align(lv_style_t * style, lv_text_align_t value); void lv_style_set_text_align(lv_style_t * style, lv_text_align_t value);
extern const lv_style_prop_t lv_style_const_prop_id_TEXT_ALIGN; extern const lv_style_prop_t _lv_style_const_prop_id_TEXT_ALIGN;
void lv_style_set_radius(lv_style_t * style, lv_coord_t value); void lv_style_set_radius(lv_style_t * style, lv_coord_t value);
extern const lv_style_prop_t lv_style_const_prop_id_RADIUS; extern const lv_style_prop_t _lv_style_const_prop_id_RADIUS;
void lv_style_set_clip_corner(lv_style_t * style, bool value); void lv_style_set_clip_corner(lv_style_t * style, bool value);
extern const lv_style_prop_t lv_style_const_prop_id_CLIP_CORNER; extern const lv_style_prop_t _lv_style_const_prop_id_CLIP_CORNER;
void lv_style_set_opa(lv_style_t * style, lv_opa_t value); void lv_style_set_opa(lv_style_t * style, lv_opa_t value);
extern const lv_style_prop_t lv_style_const_prop_id_OPA; extern const lv_style_prop_t _lv_style_const_prop_id_OPA;
void lv_style_set_color_filter_dsc(lv_style_t * style, const lv_color_filter_dsc_t * value); void lv_style_set_color_filter_dsc(lv_style_t * style, const lv_color_filter_dsc_t * value);
extern const lv_style_prop_t lv_style_const_prop_id_COLOR_FILTER_DSC; extern const lv_style_prop_t _lv_style_const_prop_id_COLOR_FILTER_DSC;
void lv_style_set_color_filter_opa(lv_style_t * style, lv_opa_t value); void lv_style_set_color_filter_opa(lv_style_t * style, lv_opa_t value);
extern const lv_style_prop_t lv_style_const_prop_id_COLOR_FILTER_OPA; extern const lv_style_prop_t _lv_style_const_prop_id_COLOR_FILTER_OPA;
void lv_style_set_anim(lv_style_t * style, const lv_anim_t * value); void lv_style_set_anim(lv_style_t * style, const lv_anim_t * value);
extern const lv_style_prop_t lv_style_const_prop_id_ANIM; extern const lv_style_prop_t _lv_style_const_prop_id_ANIM;
void lv_style_set_anim_time(lv_style_t * style, uint32_t value); void lv_style_set_anim_time(lv_style_t * style, uint32_t value);
extern const lv_style_prop_t lv_style_const_prop_id_ANIM_TIME; extern const lv_style_prop_t _lv_style_const_prop_id_ANIM_TIME;
void lv_style_set_anim_speed(lv_style_t * style, uint32_t value); void lv_style_set_anim_speed(lv_style_t * style, uint32_t value);
extern const lv_style_prop_t lv_style_const_prop_id_ANIM_SPEED; extern const lv_style_prop_t _lv_style_const_prop_id_ANIM_SPEED;
void lv_style_set_transition(lv_style_t * style, const lv_style_transition_dsc_t * value); void lv_style_set_transition(lv_style_t * style, const lv_style_transition_dsc_t * value);
extern const lv_style_prop_t lv_style_const_prop_id_TRANSITION; extern const lv_style_prop_t _lv_style_const_prop_id_TRANSITION;
void lv_style_set_blend_mode(lv_style_t * style, lv_blend_mode_t value); void lv_style_set_blend_mode(lv_style_t * style, lv_blend_mode_t value);
extern const lv_style_prop_t lv_style_const_prop_id_BLEND_MODE; extern const lv_style_prop_t _lv_style_const_prop_id_BLEND_MODE;
void lv_style_set_layout(lv_style_t * style, uint16_t value); void lv_style_set_layout(lv_style_t * style, uint16_t value);
extern const lv_style_prop_t lv_style_const_prop_id_LAYOUT; extern const lv_style_prop_t _lv_style_const_prop_id_LAYOUT;
void lv_style_set_base_dir(lv_style_t * style, lv_base_dir_t value); void lv_style_set_base_dir(lv_style_t * style, lv_base_dir_t value);
extern const lv_style_prop_t lv_style_const_prop_id_BASE_DIR; extern const lv_style_prop_t _lv_style_const_prop_id_BASE_DIR;
#define LV_STYLE_CONST_WIDTH(val) \ #define LV_STYLE_CONST_WIDTH(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_WIDTH, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_WIDTH, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_MIN_WIDTH(val) \ #define LV_STYLE_CONST_MIN_WIDTH(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_MIN_WIDTH, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_MIN_WIDTH, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_MAX_WIDTH(val) \ #define LV_STYLE_CONST_MAX_WIDTH(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_MAX_WIDTH, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_MAX_WIDTH, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_HEIGHT(val) \ #define LV_STYLE_CONST_HEIGHT(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_HEIGHT, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_HEIGHT, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_MIN_HEIGHT(val) \ #define LV_STYLE_CONST_MIN_HEIGHT(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_MIN_HEIGHT, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_MIN_HEIGHT, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_MAX_HEIGHT(val) \ #define LV_STYLE_CONST_MAX_HEIGHT(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_MAX_HEIGHT, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_MAX_HEIGHT, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_X(val) \ #define LV_STYLE_CONST_X(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_X, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_X, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_Y(val) \ #define LV_STYLE_CONST_Y(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_Y, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_Y, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_ALIGN(val) \ #define LV_STYLE_CONST_ALIGN(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_ALIGN, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_ALIGN, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_TRANSFORM_WIDTH(val) \ #define LV_STYLE_CONST_TRANSFORM_WIDTH(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_TRANSFORM_WIDTH, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_TRANSFORM_WIDTH, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_TRANSFORM_HEIGHT(val) \ #define LV_STYLE_CONST_TRANSFORM_HEIGHT(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_TRANSFORM_HEIGHT, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_TRANSFORM_HEIGHT, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_TRANSLATE_X(val) \ #define LV_STYLE_CONST_TRANSLATE_X(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_TRANSLATE_X, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_TRANSLATE_X, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_TRANSLATE_Y(val) \ #define LV_STYLE_CONST_TRANSLATE_Y(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_TRANSLATE_Y, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_TRANSLATE_Y, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_TRANSFORM_ZOOM(val) \ #define LV_STYLE_CONST_TRANSFORM_ZOOM(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_TRANSFORM_ZOOM, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_TRANSFORM_ZOOM, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_TRANSFORM_ANGLE(val) \ #define LV_STYLE_CONST_TRANSFORM_ANGLE(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_TRANSFORM_ANGLE, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_TRANSFORM_ANGLE, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_TRANSFORM_PIVOT_X(val) \ #define LV_STYLE_CONST_TRANSFORM_PIVOT_X(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_TRANSFORM_PIVOT_X, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_TRANSFORM_PIVOT_X, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_TRANSFORM_PIVOT_Y(val) \ #define LV_STYLE_CONST_TRANSFORM_PIVOT_Y(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_TRANSFORM_PIVOT_Y, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_TRANSFORM_PIVOT_Y, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_PAD_TOP(val) \ #define LV_STYLE_CONST_PAD_TOP(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_PAD_TOP, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_PAD_TOP, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_PAD_BOTTOM(val) \ #define LV_STYLE_CONST_PAD_BOTTOM(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_PAD_BOTTOM, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_PAD_BOTTOM, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_PAD_LEFT(val) \ #define LV_STYLE_CONST_PAD_LEFT(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_PAD_LEFT, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_PAD_LEFT, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_PAD_RIGHT(val) \ #define LV_STYLE_CONST_PAD_RIGHT(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_PAD_RIGHT, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_PAD_RIGHT, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_PAD_ROW(val) \ #define LV_STYLE_CONST_PAD_ROW(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_PAD_ROW, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_PAD_ROW, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_PAD_COLUMN(val) \ #define LV_STYLE_CONST_PAD_COLUMN(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_PAD_COLUMN, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_PAD_COLUMN, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_BG_COLOR(val) \ #define LV_STYLE_CONST_BG_COLOR(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_BG_COLOR, .value = { .color = val } \ .prop_ptr = &_lv_style_const_prop_id_BG_COLOR, .value = { .color = val } \
} }
#define LV_STYLE_CONST_BG_OPA(val) \ #define LV_STYLE_CONST_BG_OPA(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_BG_OPA, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_BG_OPA, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_BG_GRAD_COLOR(val) \ #define LV_STYLE_CONST_BG_GRAD_COLOR(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_BG_GRAD_COLOR, .value = { .color = val } \ .prop_ptr = &_lv_style_const_prop_id_BG_GRAD_COLOR, .value = { .color = val } \
} }
#define LV_STYLE_CONST_BG_GRAD_DIR(val) \ #define LV_STYLE_CONST_BG_GRAD_DIR(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_BG_GRAD_DIR, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_BG_GRAD_DIR, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_BG_MAIN_STOP(val) \ #define LV_STYLE_CONST_BG_MAIN_STOP(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_BG_MAIN_STOP, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_BG_MAIN_STOP, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_BG_GRAD_STOP(val) \ #define LV_STYLE_CONST_BG_GRAD_STOP(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_BG_GRAD_STOP, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_BG_GRAD_STOP, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_BG_GRAD(val) \ #define LV_STYLE_CONST_BG_GRAD(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_BG_GRAD, .value = { .ptr = val } \ .prop_ptr = &_lv_style_const_prop_id_BG_GRAD, .value = { .ptr = val } \
} }
#define LV_STYLE_CONST_BG_DITHER_MODE(val) \ #define LV_STYLE_CONST_BG_DITHER_MODE(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_BG_DITHER_MODE, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_BG_DITHER_MODE, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_BG_IMG_SRC(val) \ #define LV_STYLE_CONST_BG_IMG_SRC(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_BG_IMG_SRC, .value = { .ptr = val } \ .prop_ptr = &_lv_style_const_prop_id_BG_IMG_SRC, .value = { .ptr = val } \
} }
#define LV_STYLE_CONST_BG_IMG_OPA(val) \ #define LV_STYLE_CONST_BG_IMG_OPA(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_BG_IMG_OPA, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_BG_IMG_OPA, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_BG_IMG_RECOLOR(val) \ #define LV_STYLE_CONST_BG_IMG_RECOLOR(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_BG_IMG_RECOLOR, .value = { .color = val } \ .prop_ptr = &_lv_style_const_prop_id_BG_IMG_RECOLOR, .value = { .color = val } \
} }
#define LV_STYLE_CONST_BG_IMG_RECOLOR_OPA(val) \ #define LV_STYLE_CONST_BG_IMG_RECOLOR_OPA(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_BG_IMG_RECOLOR_OPA, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_BG_IMG_RECOLOR_OPA, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_BG_IMG_TILED(val) \ #define LV_STYLE_CONST_BG_IMG_TILED(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_BG_IMG_TILED, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_BG_IMG_TILED, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_BORDER_COLOR(val) \ #define LV_STYLE_CONST_BORDER_COLOR(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_BORDER_COLOR, .value = { .color = val } \ .prop_ptr = &_lv_style_const_prop_id_BORDER_COLOR, .value = { .color = val } \
} }
#define LV_STYLE_CONST_BORDER_OPA(val) \ #define LV_STYLE_CONST_BORDER_OPA(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_BORDER_OPA, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_BORDER_OPA, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_BORDER_WIDTH(val) \ #define LV_STYLE_CONST_BORDER_WIDTH(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_BORDER_WIDTH, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_BORDER_WIDTH, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_BORDER_SIDE(val) \ #define LV_STYLE_CONST_BORDER_SIDE(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_BORDER_SIDE, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_BORDER_SIDE, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_BORDER_POST(val) \ #define LV_STYLE_CONST_BORDER_POST(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_BORDER_POST, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_BORDER_POST, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_OUTLINE_WIDTH(val) \ #define LV_STYLE_CONST_OUTLINE_WIDTH(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_OUTLINE_WIDTH, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_OUTLINE_WIDTH, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_OUTLINE_COLOR(val) \ #define LV_STYLE_CONST_OUTLINE_COLOR(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_OUTLINE_COLOR, .value = { .color = val } \ .prop_ptr = &_lv_style_const_prop_id_OUTLINE_COLOR, .value = { .color = val } \
} }
#define LV_STYLE_CONST_OUTLINE_OPA(val) \ #define LV_STYLE_CONST_OUTLINE_OPA(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_OUTLINE_OPA, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_OUTLINE_OPA, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_OUTLINE_PAD(val) \ #define LV_STYLE_CONST_OUTLINE_PAD(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_OUTLINE_PAD, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_OUTLINE_PAD, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_SHADOW_WIDTH(val) \ #define LV_STYLE_CONST_SHADOW_WIDTH(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_SHADOW_WIDTH, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_SHADOW_WIDTH, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_SHADOW_OFS_X(val) \ #define LV_STYLE_CONST_SHADOW_OFS_X(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_SHADOW_OFS_X, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_SHADOW_OFS_X, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_SHADOW_OFS_Y(val) \ #define LV_STYLE_CONST_SHADOW_OFS_Y(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_SHADOW_OFS_Y, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_SHADOW_OFS_Y, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_SHADOW_SPREAD(val) \ #define LV_STYLE_CONST_SHADOW_SPREAD(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_SHADOW_SPREAD, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_SHADOW_SPREAD, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_SHADOW_COLOR(val) \ #define LV_STYLE_CONST_SHADOW_COLOR(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_SHADOW_COLOR, .value = { .color = val } \ .prop_ptr = &_lv_style_const_prop_id_SHADOW_COLOR, .value = { .color = val } \
} }
#define LV_STYLE_CONST_SHADOW_OPA(val) \ #define LV_STYLE_CONST_SHADOW_OPA(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_SHADOW_OPA, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_SHADOW_OPA, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_IMG_OPA(val) \ #define LV_STYLE_CONST_IMG_OPA(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_IMG_OPA, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_IMG_OPA, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_IMG_RECOLOR(val) \ #define LV_STYLE_CONST_IMG_RECOLOR(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_IMG_RECOLOR, .value = { .color = val } \ .prop_ptr = &_lv_style_const_prop_id_IMG_RECOLOR, .value = { .color = val } \
} }
#define LV_STYLE_CONST_IMG_RECOLOR_OPA(val) \ #define LV_STYLE_CONST_IMG_RECOLOR_OPA(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_IMG_RECOLOR_OPA, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_IMG_RECOLOR_OPA, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_LINE_WIDTH(val) \ #define LV_STYLE_CONST_LINE_WIDTH(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_LINE_WIDTH, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_LINE_WIDTH, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_LINE_DASH_WIDTH(val) \ #define LV_STYLE_CONST_LINE_DASH_WIDTH(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_LINE_DASH_WIDTH, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_LINE_DASH_WIDTH, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_LINE_DASH_GAP(val) \ #define LV_STYLE_CONST_LINE_DASH_GAP(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_LINE_DASH_GAP, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_LINE_DASH_GAP, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_LINE_ROUNDED(val) \ #define LV_STYLE_CONST_LINE_ROUNDED(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_LINE_ROUNDED, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_LINE_ROUNDED, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_LINE_COLOR(val) \ #define LV_STYLE_CONST_LINE_COLOR(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_LINE_COLOR, .value = { .color = val } \ .prop_ptr = &_lv_style_const_prop_id_LINE_COLOR, .value = { .color = val } \
} }
#define LV_STYLE_CONST_LINE_OPA(val) \ #define LV_STYLE_CONST_LINE_OPA(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_LINE_OPA, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_LINE_OPA, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_ARC_WIDTH(val) \ #define LV_STYLE_CONST_ARC_WIDTH(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_ARC_WIDTH, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_ARC_WIDTH, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_ARC_ROUNDED(val) \ #define LV_STYLE_CONST_ARC_ROUNDED(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_ARC_ROUNDED, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_ARC_ROUNDED, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_ARC_COLOR(val) \ #define LV_STYLE_CONST_ARC_COLOR(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_ARC_COLOR, .value = { .color = val } \ .prop_ptr = &_lv_style_const_prop_id_ARC_COLOR, .value = { .color = val } \
} }
#define LV_STYLE_CONST_ARC_OPA(val) \ #define LV_STYLE_CONST_ARC_OPA(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_ARC_OPA, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_ARC_OPA, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_ARC_IMG_SRC(val) \ #define LV_STYLE_CONST_ARC_IMG_SRC(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_ARC_IMG_SRC, .value = { .ptr = val } \ .prop_ptr = &_lv_style_const_prop_id_ARC_IMG_SRC, .value = { .ptr = val } \
} }
#define LV_STYLE_CONST_TEXT_COLOR(val) \ #define LV_STYLE_CONST_TEXT_COLOR(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_TEXT_COLOR, .value = { .color = val } \ .prop_ptr = &_lv_style_const_prop_id_TEXT_COLOR, .value = { .color = val } \
} }
#define LV_STYLE_CONST_TEXT_OPA(val) \ #define LV_STYLE_CONST_TEXT_OPA(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_TEXT_OPA, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_TEXT_OPA, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_TEXT_FONT(val) \ #define LV_STYLE_CONST_TEXT_FONT(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_TEXT_FONT, .value = { .ptr = val } \ .prop_ptr = &_lv_style_const_prop_id_TEXT_FONT, .value = { .ptr = val } \
} }
#define LV_STYLE_CONST_TEXT_LETTER_SPACE(val) \ #define LV_STYLE_CONST_TEXT_LETTER_SPACE(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_TEXT_LETTER_SPACE, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_TEXT_LETTER_SPACE, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_TEXT_LINE_SPACE(val) \ #define LV_STYLE_CONST_TEXT_LINE_SPACE(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_TEXT_LINE_SPACE, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_TEXT_LINE_SPACE, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_TEXT_DECOR(val) \ #define LV_STYLE_CONST_TEXT_DECOR(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_TEXT_DECOR, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_TEXT_DECOR, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_TEXT_ALIGN(val) \ #define LV_STYLE_CONST_TEXT_ALIGN(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_TEXT_ALIGN, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_TEXT_ALIGN, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_RADIUS(val) \ #define LV_STYLE_CONST_RADIUS(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_RADIUS, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_RADIUS, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_CLIP_CORNER(val) \ #define LV_STYLE_CONST_CLIP_CORNER(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_CLIP_CORNER, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_CLIP_CORNER, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_OPA(val) \ #define LV_STYLE_CONST_OPA(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_OPA, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_OPA, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_COLOR_FILTER_DSC(val) \ #define LV_STYLE_CONST_COLOR_FILTER_DSC(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_COLOR_FILTER_DSC, .value = { .ptr = val } \ .prop_ptr = &_lv_style_const_prop_id_COLOR_FILTER_DSC, .value = { .ptr = val } \
} }
#define LV_STYLE_CONST_COLOR_FILTER_OPA(val) \ #define LV_STYLE_CONST_COLOR_FILTER_OPA(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_COLOR_FILTER_OPA, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_COLOR_FILTER_OPA, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_ANIM(val) \ #define LV_STYLE_CONST_ANIM(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_ANIM, .value = { .ptr = val } \ .prop_ptr = &_lv_style_const_prop_id_ANIM, .value = { .ptr = val } \
} }
#define LV_STYLE_CONST_ANIM_TIME(val) \ #define LV_STYLE_CONST_ANIM_TIME(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_ANIM_TIME, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_ANIM_TIME, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_ANIM_SPEED(val) \ #define LV_STYLE_CONST_ANIM_SPEED(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_ANIM_SPEED, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_ANIM_SPEED, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_TRANSITION(val) \ #define LV_STYLE_CONST_TRANSITION(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_TRANSITION, .value = { .ptr = val } \ .prop_ptr = &_lv_style_const_prop_id_TRANSITION, .value = { .ptr = val } \
} }
#define LV_STYLE_CONST_BLEND_MODE(val) \ #define LV_STYLE_CONST_BLEND_MODE(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_BLEND_MODE, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_BLEND_MODE, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_LAYOUT(val) \ #define LV_STYLE_CONST_LAYOUT(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_LAYOUT, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_LAYOUT, .value = { .num = (int32_t)val } \
} }
#define LV_STYLE_CONST_BASE_DIR(val) \ #define LV_STYLE_CONST_BASE_DIR(val) \
{ \ { \
.prop_ptr = &lv_style_const_prop_id_BASE_DIR, .value = { .num = (int32_t)val } \ .prop_ptr = &_lv_style_const_prop_id_BASE_DIR, .value = { .num = (int32_t)val } \
} }