Method

ClutterTimelineadd_marker_at_time

Declaration [src]

void
clutter_timeline_add_marker_at_time (
  ClutterTimeline* timeline,
  const gchar* marker_name,
  guint msecs
)

Description [src]

Adds a named marker that will be hit when the timeline has been running for msecs milliseconds.

Markers are unique string identifiers for a given position on the timeline. Once timeline reaches the given msecs, it will emit a ::marker-reached signal for each marker attached to that position.

A marker can be removed with clutter_timeline_remove_marker(). The timeline can be advanced to a marker using clutter_timeline_advance_to_marker().

See also: clutter_timeline_add_marker()

Available since:0.8

Parameters

marker_name const gchar*
 

The unique name for this marker.

 The data is owned by the caller of the function.
 The value is a NUL terminated UTF-8 string.
msecs guint
 

Position of the marker in milliseconds.