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.

Parameters

child

Type: ClutterActor

A ClutterActor child of self.

The data is owned by the caller of the method.
sibling

Type: ClutterActor

A ClutterActor child of self, or NULL.

The argument can be NULL.
The data is owned by the caller of the method.