Method
ClutterActorset_child_above_sibling
Declaration [src]
void
clutter_actor_set_child_above_sibling (
ClutterActor* self,
ClutterActor* child,
ClutterActor* sibling
)
Description [src]
Sets child
to be above sibling
in the list of children of self
.
If sibling
is NULL
, child
will be the new last child of self
.
This function is logically equivalent to removing child
and using
clutter_actor_insert_child_above(), but it will not emit signals
or change state on child
.
Available since: | 1.10 |
Parameters
child |
ClutterActor |
A |
|
The data is owned by the caller of the function. | |
sibling |
ClutterActor |
A |
|
The argument can be NULL . | |
The data is owned by the caller of the function. |