Class

BisTimedAnimation

Description [src]

final class Bis.TimedAnimation : Bis.Animation {
  /* No available fields */
}

A time-based BisAnimation.

BisTimedAnimation implements a simple animation interpolating the given value from BisTimedAnimation:value-from to BisTimedAnimation:value-to over BisTimedAnimation:duration milliseconds using the curve described by BisTimedAnimation:easing.

If BisTimedAnimation:reverse is set to TRUE, BisTimedAnimation will instead animate from BisTimedAnimation:value-to to BisTimedAnimation:value-from, and the easing curve will be inverted.

The animation can repeat a certain amount of times, or endlessly, depending on the BisTimedAnimation:repeat-count value. If BisTimedAnimation:alternate is set to TRUE, it will also change the direction every other iteration.

Available since:1.0

Ancestors

Constructors

bis_timed_animation_new

Creates a new BisTimedAnimation on widget to animate target from from to to.

Available since: 1.0

Instance methods

bis_timed_animation_get_alternate

Gets whether self changes direction on every iteration.

Available since: 1.0

bis_timed_animation_get_duration

Gets the duration of self.

Available since: 1.0

bis_timed_animation_get_easing

Gets the easing function self uses.

Available since: 1.0

bis_timed_animation_get_repeat_count

Gets the number of times self will play.

Available since: 1.0

bis_timed_animation_get_reverse

Gets whether self plays backwards.

Available since: 1.0

bis_timed_animation_get_value_from

Gets the value self will animate from.

Available since: 1.0

bis_timed_animation_get_value_to

Gets the value self will animate to.

Available since: 1.0

bis_timed_animation_set_alternate

Sets whether self changes direction on every iteration.

Available since: 1.0

bis_timed_animation_set_duration

Sets the duration of self.

Available since: 1.0

bis_timed_animation_set_easing

Sets the easing function self will use.

Available since: 1.0

bis_timed_animation_set_repeat_count

Sets the number of times self will play.

Available since: 1.0

bis_timed_animation_set_reverse

Sets whether self plays backwards.

Available since: 1.0

bis_timed_animation_set_value_from

Sets the value self will animate from.

Available since: 1.0

bis_timed_animation_set_value_to

Sets the value self will animate to.

Available since: 1.0

Methods inherited from BisAnimation (10)
bis_animation_get_state

Gets the current value of self.

Available since: 1.0

bis_animation_get_target

Gets the target self animates.

Available since: 1.0

bis_animation_get_value

Gets the current value of self.

Available since: 1.0

bis_animation_get_widget

Gets the widget self was created for.

Available since: 1.0

bis_animation_pause

Pauses a playing animation for self.

Available since: 1.0

bis_animation_play

Starts the animation for self.

Available since: 1.0

bis_animation_reset

Resets the animation for self.

Available since: 1.0

bis_animation_resume

Resumes a paused animation for self.

Available since: 1.0

bis_animation_set_target

Sets the target self animates to target.

Available since: 1.0

bis_animation_skip

Skips the animation for self.

Available since: 1.0

Methods inherited from GObject (43)

Please see GObject for a full list of methods.

Properties

Bis.TimedAnimation:alternate

Whether the animation changes direction on every iteration.

Available since: 1.0

Bis.TimedAnimation:duration

Duration of the animation, in milliseconds.

Available since: 1.0

Bis.TimedAnimation:easing

Easing function used in the animation.

Available since: 1.0

Bis.TimedAnimation:repeat-count

Number of times the animation will play.

Available since: 1.0

Bis.TimedAnimation:reverse

Whether the animation plays backwards.

Available since: 1.0

Bis.TimedAnimation:value-from

The value to animate from.

Available since: 1.0

Bis.TimedAnimation:value-to

The value to animate to.

Available since: 1.0

Properties inherited from BisAnimation (4)
Bis.Animation:state

The animation state.

Available since: 1.0

Bis.Animation:target

The target to animate.

Available since: 1.0

Bis.Animation:value

The current value of the animation.

Available since: 1.0

Bis.Animation:widget

The animation widget.

Available since: 1.0

Signals

Signals inherited from BisAnimation (1)
Bis.Animation::done

This signal is emitted when the animation has been completed, either on its own or via calling bis_animation_skip().

Available since: 1.0

Signals inherited from GObject (1)
GObject.Object::notify

The notify signal is emitted on an object when one of its properties has its value set through g_object_set_property(), g_object_set(), et al.

Class structure

struct BisTimedAnimationClass {
  /* no available fields */
}