Method
ClutterActorinsert_child_below
Declaration [src]
void
clutter_actor_insert_child_below (
ClutterActor* self,
ClutterActor* child,
ClutterActor* sibling
)
Description [src]
Inserts child
into the list of children of self
, below another
child of self
or, if sibling
is NULL
, below all the children
of self
.
This function will acquire a reference on child
that will only
be released when calling clutter_actor_remove_child().
This function will not take into consideration the ClutterActor:depth
of child
.
This function will emit the ClutterContainer::actor-added
signal
on self
.
Available since: | 1.10 |
Parameters
child |
ClutterActor |
A |
|
The data is owned by the caller of the function. | |
sibling |
ClutterActor |
A child of |
|
The argument can be NULL . | |
The data is owned by the caller of the function. |