add lv_obj_move_foreground/background

This commit is contained in:
Gabor Kiss-Vamosi
2019-05-03 19:25:58 +02:00
parent f6c60b8204
commit f4c0055c5a
8 changed files with 86 additions and 25 deletions

View File

@@ -328,6 +328,18 @@ void lv_obj_invalidate(const lv_obj_t * obj);
*/
void lv_obj_set_parent(lv_obj_t * obj, lv_obj_t * parent);
/**
* Move and object to the foreground
* @param obj pointer to an object
*/
void lv_obj_move_foreground(lv_obj_t * obj);
/**
* Move and object to the background
* @param obj pointer to an object
*/
void lv_obj_move_background(lv_obj_t * obj);
/*--------------------
* Coordinate set
* ------------------*/