rename lv_obj_adjust_coords to lv_obj_get_inner_coords
This commit is contained in:
@@ -667,10 +667,11 @@ uint16_t lv_obj_count_children_recursive(const lv_obj_t * obj);
|
||||
void lv_obj_get_coords(const lv_obj_t * obj, lv_area_t * cords_p);
|
||||
|
||||
/**
|
||||
* Adjust the coordinates retrieved from lv_obj_get_coords() according
|
||||
* to the object's style.
|
||||
* Reduce area retried by `lv_obj_get_coords()` the get graphically usable area of an object.
|
||||
* (Without the size of the border or other extra graphical elements)
|
||||
* @param coords_p store the result area here
|
||||
*/
|
||||
void lv_obj_adjust_coords(const lv_obj_t *obj, lv_area_t * cords_p);
|
||||
void lv_obj_get_inner_coords(const lv_obj_t *obj, lv_area_t * coords_p);
|
||||
|
||||
/**
|
||||
* Get the x coordinate of object
|
||||
|
||||
Reference in New Issue
Block a user