Method
ClutterActorinsert_child_at_index
Declaration [src]
void
clutter_actor_insert_child_at_index (
ClutterActor* self,
ClutterActor* child,
gint index_
)
Description [src]
Inserts child into the list of children of self, using the
given index_. If index_ is greater than the number of children
in self, or is less than 0, then the new child is added at the end.
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. | |
index_ |
gint |
The index. |