diff options
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/lv_group.h | 2 | ||||
-rw-r--r-- | src/core/lv_obj_class_private.h | 4 | ||||
-rw-r--r-- | src/core/lv_obj_private.h | 4 | ||||
-rw-r--r-- | src/core/lv_obj_style.h | 8 |
4 files changed, 9 insertions, 9 deletions
diff --git a/src/core/lv_group.h b/src/core/lv_group.h index 77d97c64e..ac7d6501d 100644 --- a/src/core/lv_group.h +++ b/src/core/lv_group.h @@ -21,7 +21,7 @@ extern "C" { /********************* * DEFINES *********************/ -/*Predefined keys to control the focused object via lv_group_send(group, c)*/ +/** Predefined keys to control focused object via lv_group_send(group, c) */ typedef enum { LV_KEY_UP = 17, /*0x11*/ LV_KEY_DOWN = 18, /*0x12*/ diff --git a/src/core/lv_obj_class_private.h b/src/core/lv_obj_class_private.h index 464813fb6..1279b9caf 100644 --- a/src/core/lv_obj_class_private.h +++ b/src/core/lv_obj_class_private.h @@ -30,11 +30,11 @@ extern "C" { */ struct lv_obj_class_t { const lv_obj_class_t * base_class; - /*class_p is the final class while obj->class_p is the class currently being [de]constructed.*/ + /** class_p is the final class while obj->class_p is the class currently being [de]constructed. */ void (*constructor_cb)(const lv_obj_class_t * class_p, lv_obj_t * obj); void (*destructor_cb)(const lv_obj_class_t * class_p, lv_obj_t * obj); - /*class_p is the class in which event is being processed.*/ + /** class_p is the class in which event is being processed. */ void (*event_cb)(const lv_obj_class_t * class_p, lv_event_t * e); /**< Widget type specific event function*/ #if LV_USE_OBJ_PROPERTY diff --git a/src/core/lv_obj_private.h b/src/core/lv_obj_private.h index 931454e78..d9eee4939 100644 --- a/src/core/lv_obj_private.h +++ b/src/core/lv_obj_private.h @@ -29,7 +29,7 @@ extern "C" { * They are allocated automatically if any elements is set. */ struct lv_obj_spec_attr_t { - lv_obj_t ** children; /**< Store the pointer of the children in an array.*/ + lv_obj_t ** children; /**< Store the pointer of the children in an array.*/ lv_group_t * group_p; lv_event_list_t event_list; @@ -43,7 +43,7 @@ struct lv_obj_spec_attr_t { uint16_t scroll_snap_x : 2; /**< Where to align the snappable children horizontally, see `lv_scroll_snap_t`*/ uint16_t scroll_snap_y : 2; /**< Where to align the snappable children vertically*/ uint16_t scroll_dir : 4; /**< The allowed scroll direction(s), see `lv_dir_t`*/ - uint16_t layer_type : 2; /**< Cache the layer type here. Element of @lv_intermediate_layer_type_t */ + uint16_t layer_type : 2; /**< Cache the layer type here. Element of lv_intermediate_layer_type_t */ }; struct lv_obj_t { diff --git a/src/core/lv_obj_style.h b/src/core/lv_obj_style.h index face6f9d2..ff4e365d8 100644 --- a/src/core/lv_obj_style.h +++ b/src/core/lv_obj_style.h @@ -26,10 +26,10 @@ extern "C" { **********************/ typedef enum { - LV_STYLE_STATE_CMP_SAME, /*The style properties in the 2 states are identical*/ - LV_STYLE_STATE_CMP_DIFF_REDRAW, /*The differences can be shown with a simple redraw*/ - LV_STYLE_STATE_CMP_DIFF_DRAW_PAD, /*The differences can be shown with a simple redraw*/ - LV_STYLE_STATE_CMP_DIFF_LAYOUT, /*The differences can be shown with a simple redraw*/ + LV_STYLE_STATE_CMP_SAME, /**< The style properties in the 2 states are identical */ + LV_STYLE_STATE_CMP_DIFF_REDRAW, /**< The differences can be shown with a simple redraw */ + LV_STYLE_STATE_CMP_DIFF_DRAW_PAD, /**< The differences can be shown with a simple redraw */ + LV_STYLE_STATE_CMP_DIFF_LAYOUT, /**< The differences can be shown with a simple redraw */ } lv_style_state_cmp_t; typedef uint32_t lv_style_selector_t; |