Signal

ClutterActor::transition-removed

Declaration

void
transition_removed (
  ClutterActor* self,
  ClutterTransition* transition,
  gboolean is_finished,
  gpointer user_data
)

Description [src]

This signal is particularly useful for handling transitions that have a delay and are removed before starting, where the ClutterTimeline::stopped signal would not be emitted.

Default handler:

The default handler is called after the handlers added via g_signal_connect().

Signal emission will restart instead of recursing
Hooks are disabled for this signal

Parameters

transition

Type: ClutterTransition

A ClutterTransition.

The data is owned by the caller of the function.
is_finished

Type: gboolean

Indicates whether the transition completed its animation naturally (TRUE) or was interrupted/removed before completion (FALSE). This allows handlers to distinguish between a successful animation and one that was cancelled.