lv_btn_set_styles() revert to set all styles paramter list

This commit is contained in:
Gabor Kiss-Vamosi
2017-10-31 16:25:52 +01:00
parent 919a8e81ea
commit 0dbc0f0442
23 changed files with 343 additions and 231 deletions

View File

@@ -204,6 +204,12 @@ lv_obj_t * lv_obj_create(lv_obj_t * parent, lv_obj_t * copy);
*/
void lv_obj_del(lv_obj_t * obj);
/**
* Delete all children of an object
* @param obj pointer to an object
*/
void lv_obj_clear(lv_obj_t *obj);
/**
* Signal function of the basic object
* @param obj pointer to an object
@@ -523,6 +529,15 @@ lv_obj_t * lv_obj_get_parent(lv_obj_t * obj);
*/
lv_obj_t * lv_obj_get_child(lv_obj_t * obj, lv_obj_t * child);
/**
* Iterate through the children of an object (start from the "oldest")
* @param obj pointer to an object
* @param child NULL at first call to get the next children
* and the previous return value later
* @return the child after 'act_child' or NULL if no more child
*/
lv_obj_t * lv_obj_get_child_back(lv_obj_t * obj, lv_obj_t * child);
/**
* Count the children of an object (only children directly on 'obj')
* @param obj pointer to an object