aboutsummaryrefslogtreecommitdiff
path: root/src/misc/lv_style.h
diff options
context:
space:
mode:
authorVictor Wheeler <vwheeler63@users.noreply.github.com>2024-08-12 06:20:15 -0600
committerGitHub <noreply@github.com>2024-08-12 14:20:15 +0200
commit14461f1d9dcd168d59d07ea682ca671e55b1c0eb (patch)
tree2b9d2234bdd090deb4b1c967e19b23e1e8d068a2 /src/misc/lv_style.h
parent8699a7e86e18fdb09bb2d72e35c75bdedc539b14 (diff)
downloadlvgl-14461f1d9dcd168d59d07ea682ca671e55b1c0eb.tar.gz
lvgl-14461f1d9dcd168d59d07ea682ca671e55b1c0eb.zip
fix(docbuild): Doxygen warnings from format errors (part 1 of 2) (#6652)
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
Diffstat (limited to 'src/misc/lv_style.h')
-rw-r--r--src/misc/lv_style.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/misc/lv_style.h b/src/misc/lv_style.h
index 771149754..dcce7dcd6 100644
--- a/src/misc/lv_style.h
+++ b/src/misc/lv_style.h
@@ -33,18 +33,18 @@ extern "C" {
* Flags for style behavior
*/
#define LV_STYLE_PROP_FLAG_NONE (0) /**< No special behavior */
-#define LV_STYLE_PROP_FLAG_INHERITABLE (1 << 0) /**< Inherited*/
-#define LV_STYLE_PROP_FLAG_EXT_DRAW_UPDATE (1 << 1) /**< Requires ext. draw size update when changed*/
-#define LV_STYLE_PROP_FLAG_LAYOUT_UPDATE (1 << 2) /**< Requires layout update when changed*/
-#define LV_STYLE_PROP_FLAG_PARENT_LAYOUT_UPDATE (1 << 3) /**< Requires layout update on parent when changed*/
-#define LV_STYLE_PROP_FLAG_LAYER_UPDATE (1 << 4) /**< Affects layer handling*/
-#define LV_STYLE_PROP_FLAG_TRANSFORM (1 << 5) /**< Affects the object's transformation*/
-#define LV_STYLE_PROP_FLAG_ALL (0x3F) /**< Indicating all flags*/
+#define LV_STYLE_PROP_FLAG_INHERITABLE (1 << 0) /**< Inherited */
+#define LV_STYLE_PROP_FLAG_EXT_DRAW_UPDATE (1 << 1) /**< Requires ext. draw size update when changed */
+#define LV_STYLE_PROP_FLAG_LAYOUT_UPDATE (1 << 2) /**< Requires layout update when changed */
+#define LV_STYLE_PROP_FLAG_PARENT_LAYOUT_UPDATE (1 << 3) /**< Requires layout update on parent when changed */
+#define LV_STYLE_PROP_FLAG_LAYER_UPDATE (1 << 4) /**< Affects layer handling */
+#define LV_STYLE_PROP_FLAG_TRANSFORM (1 << 5) /**< Affects the object's transformation */
+#define LV_STYLE_PROP_FLAG_ALL (0x3F) /**< Indicating all flags */
-/**
+/*
* Other constants
*/
-#define LV_SCALE_NONE 256 /**< Value for not zooming the image*/
+#define LV_SCALE_NONE 256 /**< Value for not zooming the image */
LV_EXPORT_CONST_INT(LV_SCALE_NONE);
// *INDENT-OFF*
@@ -52,16 +52,16 @@ LV_EXPORT_CONST_INT(LV_SCALE_NONE);
#define LV_STYLE_CONST_INIT(var_name, prop_array) \
const lv_style_t var_name = { \
.sentinel = LV_STYLE_SENTINEL_VALUE, \
- .values_and_props = (void*)prop_array, \
+ .values_and_props = (void*)prop_array, \
.has_group = 0xFFFFFFFF, \
- .prop_cnt = 255 \
+ .prop_cnt = 255 \
}
#else
#define LV_STYLE_CONST_INIT(var_name, prop_array) \
const lv_style_t var_name = { \
- .values_and_props = prop_array, \
+ .values_and_props = prop_array, \
.has_group = 0xFFFFFFFF, \
- .prop_cnt = 255, \
+ .prop_cnt = 255, \
}
#endif
// *INDENT-ON*
@@ -73,7 +73,7 @@ LV_EXPORT_CONST_INT(LV_SCALE_NONE);
**********************/
/**
- * Possible options how to blend opaque drawings
+ * Possible options for blending opaque drawings
*/
typedef enum {
LV_BLEND_MODE_NORMAL, /**< Simply mix according to the opacity value*/
@@ -142,7 +142,7 @@ typedef struct {
uint8_t stops_count; /**< The number of used stops in the array */
lv_grad_dir_t dir : 3; /**< The gradient direction.
* Any of LV_GRAD_DIR_NONE, LV_GRAD_DIR_VER, LV_GRAD_DIR_HOR,
- LV_GRAD_TYPE_LINEAR, LV_GRAD_TYPE_RADIAL, LV_GRAD_TYPE_CONICAL */
+ * LV_GRAD_TYPE_LINEAR, LV_GRAD_TYPE_RADIAL, LV_GRAD_TYPE_CONICAL */
lv_grad_extend_t extend : 2; /**< Behaviour outside the defined range.
* LV_GRAD_EXTEND_NONE, LV_GRAD_EXTEND_PAD, LV_GRAD_EXTEND_REPEAT, LV_GRAD_EXTEND_REFLECT */
#if LV_USE_DRAW_SW_COMPLEX_GRADIENTS
@@ -348,7 +348,7 @@ typedef enum {
typedef struct {
const lv_style_prop_t * props; /**< An array with the properties to animate.*/
void * user_data; /**< A custom user data that will be passed to the animation's user_data */
- lv_anim_path_cb_t path_xcb; /**< A path for the animation.*/
+ lv_anim_path_cb_t path_xcb; /**< A path for the animation.*/
uint32_t time; /**< Duration of the transition in [ms]*/
uint32_t delay; /**< Delay before the transition in [ms]*/
} lv_style_transition_dsc_t;
@@ -470,8 +470,8 @@ lv_style_res_t lv_style_get_prop(const lv_style_t * style, lv_style_prop_t prop,
* Example:
* @code
* const static lv_style_prop_t trans_props[] = { LV_STYLE_BG_OPA, LV_STYLE_BG_COLOR, 0 };
- * static lv_style_transition_dsc_t trans1;
- * lv_style_transition_dsc_init(&trans1, trans_props, NULL, 300, 0, NULL);
+ * static lv_style_transition_dsc_t trans1;
+ * lv_style_transition_dsc_init(&trans1, trans_props, NULL, 300, 0, NULL);
* @endcode
*/
void lv_style_transition_dsc_init(lv_style_transition_dsc_t * tr, const lv_style_prop_t props[],