@@ -51,9 +51,9 @@ LV_ATTRIBUTE_EXTERN_DATA extern const lv_obj_class_t lv_arc_label_class;
5151 **********************/
5252
5353/**
54- * Create an arc object
55- * @param parent pointer to an object, it will be the parent of the new arc
56- * @return pointer to the created arc
54+ * Create an arc label object
55+ * @param parent pointer to an object, it will be the parent of the new arc label
56+ * @return pointer to the created arc label
5757 */
5858lv_obj_t * lv_arc_label_create (lv_obj_t * parent );
5959
@@ -98,35 +98,35 @@ void lv_arc_label_set_text_static(lv_obj_t * obj, const char * text);
9898
9999/**
100100 * Set the start angle of an arc. 0 deg: right, 90 bottom, etc.
101- * @param obj pointer to an arc object
101+ * @param obj pointer to an arc label object
102102 * @param start the start angle. (if `LV_USE_FLOAT` is enabled it can be fractional too.)
103103 */
104104void lv_arc_label_set_angle_start (lv_obj_t * obj , lv_value_precise_t start );
105105
106106/**
107107 * Set the end angle of an arc. 0 deg: right, 90 bottom, etc.
108- * @param obj pointer to an arc object
108+ * @param obj pointer to an arc label object
109109 * @param size the angle size (if `LV_USE_FLOAT` is enabled it can be fractional too.)
110110 */
111111void lv_arc_label_set_angle_size (lv_obj_t * obj , lv_value_precise_t size );
112112
113113/**
114114 * Set the rotation for the whole arc
115- * @param obj pointer to an arc object
115+ * @param obj pointer to an arc label object
116116 * @param offset rotation angle
117117 */
118118void lv_arc_label_set_offset (lv_obj_t * obj , int32_t offset );
119119
120120/**
121121 * Set the type of arc.
122- * @param obj pointer to arc object
122+ * @param obj pointer to and arc label object
123123 * @param dir arc label's direction
124124 */
125125void lv_arc_label_set_dir (lv_obj_t * obj , lv_arc_label_dir_t dir );
126126
127127/**
128128 * Enable the recoloring by in-line commands
129- * @param obj pointer to a label object
129+ * @param obj pointer to an arc label object
130130 * @param en true: enable recoloring, false: disable
131131 * Example: "This is a #ff0000 red# word"
132132 */
@@ -174,21 +174,21 @@ void lv_arc_label_set_text_horizontal_align(lv_obj_t * obj, lv_arc_label_text_al
174174
175175/**
176176 * Get the start angle of an arc label.
177- * @param obj pointer to an arc object
177+ * @param obj pointer to an arc label object
178178 * @return the start angle [0..360] (if `LV_USE_FLOAT` is enabled it can be fractional too.)
179179 */
180180lv_value_precise_t lv_arc_label_get_angle_start (lv_obj_t * obj );
181181
182182/**
183183 * Get the angle size of an arc label.
184- * @param obj pointer to an arc object
184+ * @param obj pointer to an arc label object
185185 * @return the end angle [0..360] (if `LV_USE_FLOAT` is enabled it can be fractional too.)
186186 */
187187lv_value_precise_t lv_arc_label_get_angle_size (lv_obj_t * obj );
188188
189189/**
190- * Get whether the arc is type or not.
191- * @param obj pointer to an arc object
190+ * Get whether the arc label is type or not.
191+ * @param obj pointer to an arc label object
192192 * @return arc label's direction
193193 */
194194lv_arc_label_dir_t lv_arc_label_get_dir (const lv_obj_t * obj );
@@ -205,7 +205,7 @@ bool lv_arc_label_get_recolor(lv_obj_t * obj);
205205
206206/**
207207 * Get the text of the arc label.
208- * @param obj pointer to an arc object
208+ * @param obj pointer to an arc label object
209209 * @return the radius of the arc label
210210 */
211211uint32_t lv_arc_label_get_radius (lv_obj_t * obj );
0 commit comments