Method
ClutterActorset_child_below_sibling
Declaration [src]
void
clutter_actor_set_child_below_sibling (
ClutterActor* self,
ClutterActor* child,
ClutterActor* sibling
)
Description [src]
Sets child to be below sibling in the list of children of self.
If sibling is NULL, child will be the new first child of self.
This function is logically equivalent to removing self and using
clutter_actor_insert_child_below(), 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. |