Files
lvgl/src/widgets/property/lv_image_properties.c
Neo Xu d6495b576b fix(image): image inner align name should not conflict with obj's align
If the name conflicts with base class property name, the property is overridden. This is the property's feature.
The image inner align name is update to 'inner_align'.

Signed-off-by: Neo Xu <neo.xu1990@gmail.com>
2024-08-05 13:34:21 +02:00

34 lines
1.0 KiB
C

/**
* GENERATED FILE, DO NOT EDIT IT!
* @file lv_image_properties.c
*/
#include "../image/lv_image.h"
#if LV_USE_OBJ_PROPERTY && LV_USE_OBJ_PROPERTY_NAME
#if LV_USE_IMAGE
/**
* Image widget property names, name must be in order.
* Generated code from properties.py
*/
/* *INDENT-OFF* */
const lv_property_name_t lv_image_property_names[11] = {
{"antialias", LV_PROPERTY_IMAGE_ANTIALIAS,},
{"blend_mode", LV_PROPERTY_IMAGE_BLEND_MODE,},
{"inner_align", LV_PROPERTY_IMAGE_INNER_ALIGN,},
{"offset_x", LV_PROPERTY_IMAGE_OFFSET_X,},
{"offset_y", LV_PROPERTY_IMAGE_OFFSET_Y,},
{"pivot", LV_PROPERTY_IMAGE_PIVOT,},
{"rotation", LV_PROPERTY_IMAGE_ROTATION,},
{"scale", LV_PROPERTY_IMAGE_SCALE,},
{"scale_x", LV_PROPERTY_IMAGE_SCALE_X,},
{"scale_y", LV_PROPERTY_IMAGE_SCALE_Y,},
{"src", LV_PROPERTY_IMAGE_SRC,},
};
#endif /*LV_USE_IMAGE*/
/* *INDENT-ON* */
#endif