Tizen Native API  7.0
Edje Object Animation

Functions that deal with animations.

Edje has the ability to animate objects. One can start, stop, play, pause, freeze, and thaw edje animations using the functions of this section.

Functions

void edje_frametime_set (double t)
 Sets edje transitions' frame time.
double edje_frametime_get (void)
 Gets edje transitions' frame time.
void edje_freeze (void)
 Freezes Edje objects.
void edje_thaw (void)
 Thaws Edje objects.
void edje_language_set (const char *locale)
 Sets Edje language.
void edje_transition_duration_factor_set (double scale)
 Sets edje transition duration factor.
double edje_transition_duration_factor_get (void)
 Retrieves transitions duration factor.

Typedefs

typedef enum _Edje_Tween_Mode Edje_Tween_Mode
typedef enum _Edje_Action_Type Edje_Action_Type

Typedef Documentation

All actions available in Edje programs.

Available tween mode for edje animations.


Enumeration Type Documentation

Enumerator:
EDJE_ACTION_TYPE_NONE 

None action value

EDJE_ACTION_TYPE_STATE_SET 

State set action value

EDJE_ACTION_TYPE_ACTION_STOP 

Action stop action value

EDJE_ACTION_TYPE_SIGNAL_EMIT 

Signal emit action value

EDJE_ACTION_TYPE_DRAG_VAL_SET 

Drag val set action value

EDJE_ACTION_TYPE_DRAG_VAL_STEP 

Drag val step action value

EDJE_ACTION_TYPE_DRAG_VAL_PAGE 

Drag val page action value

EDJE_ACTION_TYPE_SCRIPT 

Script action value

EDJE_ACTION_TYPE_FOCUS_SET 

Focus set action value

EDJE_ACTION_TYPE_RESERVED00 

Reversed do action value

EDJE_ACTION_TYPE_FOCUS_OBJECT 

Focus object action value

EDJE_ACTION_TYPE_PARAM_COPY 

Param copy action value

EDJE_ACTION_TYPE_PARAM_SET 

Param set action value

EDJE_ACTION_TYPE_SOUND_SAMPLE 

Sound sample action value.

Since (EFL) :
1.1
EDJE_ACTION_TYPE_SOUND_TONE 

Sound tone action value.

Since (EFL) :
1.1
EDJE_ACTION_TYPE_PHYSICS_IMPULSE 

Physics impulse action value.

Since (EFL) :
1.8
EDJE_ACTION_TYPE_PHYSICS_TORQUE_IMPULSE 

Physics torque impulse action value.

Since (EFL) :
1.8
EDJE_ACTION_TYPE_PHYSICS_FORCE 

Physics force action value.

Since (EFL) :
1.8
EDJE_ACTION_TYPE_PHYSICS_TORQUE 

Physics torque action value.

Since (EFL) :
1.8
EDJE_ACTION_TYPE_PHYSICS_FORCES_CLEAR 

Physics forces clear action value.

Since (EFL) :
1.8
EDJE_ACTION_TYPE_PHYSICS_VEL_SET 

Physics velocity set action value.

Since (EFL) :
1.8
EDJE_ACTION_TYPE_PHYSICS_ANG_VEL_SET 

Physics angle velocity set action value.

Since (EFL) :
1.8
EDJE_ACTION_TYPE_PHYSICS_STOP 

Physics stop action value.

Since (EFL) :
1.8
EDJE_ACTION_TYPE_PHYSICS_ROT_SET 

Physics rotation set action value.

Since (EFL) :
1.8
EDJE_ACTION_TYPE_VIBRATION_SAMPLE 

vibration sample action value

Since (EFL) :
1.10
EDJE_ACTION_TYPE_MO 

Mo action value.

Since (EFL) :
1.15
EDJE_ACTION_TYPE_VG_ANIM_PAUSE 

Vector animation stop action value.

Since (EFL) :
1.24
EDJE_ACTION_TYPE_VG_ANIM_RESUME 

Vector animation pause action value.

Since (EFL) :
1.24
EDJE_ACTION_TYPE_VG_ANIM_PLAY 

Vector animation resume action value.

Since (EFL) :
1.24
EDJE_ACTION_TYPE_VG_ANIM_REWIND 

Vector animation play action value.

Since (EFL) :
1.24
EDJE_ACTION_TYPE_VG_ANIM_LOOP 

Vector animation rewind action value.

Since (EFL) :
1.24
EDJE_ACTION_TYPE_LAST 

Vector animation loop value.

Since (EFL) :
1.24 Last action value
Enumerator:
EDJE_TWEEN_MODE_NONE 

None tween mode value

EDJE_TWEEN_MODE_LINEAR 

Linear tween mode value

EDJE_TWEEN_MODE_SINUSOIDAL 

Sinusoidal tween mode value

EDJE_TWEEN_MODE_ACCELERATE 

Accelerate tween mode value

EDJE_TWEEN_MODE_DECELERATE 

Decelerate tween mode value

EDJE_TWEEN_MODE_ACCELERATE_FACTOR 

Accelerate factor tween mode value

EDJE_TWEEN_MODE_DECELERATE_FACTOR 

Decelerate factor tween mode value

EDJE_TWEEN_MODE_SINUSOIDAL_FACTOR 

Sinusoidal factor tween mode value

EDJE_TWEEN_MODE_DIVISOR_INTERP 

Divisor iterp tween mode value

EDJE_TWEEN_MODE_BOUNCE 

Bounce tween mode value

EDJE_TWEEN_MODE_SPRING 

Spring tween mode value

EDJE_TWEEN_MODE_CUBIC_BEZIER 

Cubic Bezier tween mode value

EDJE_TWEEN_MODE_LAST 

Last tween mode value

EDJE_TWEEN_MODE_MASK 

Mask tween mode value

EDJE_TWEEN_MODE_OPT_FROM_CURRENT 

Options from current tween mode value


Function Documentation

double edje_frametime_get ( void  )

Gets edje transitions' frame time.

Returns:
The frame time, in seconds.

This function returns the edje frame time set by edje_frametime_set() or the default value 1/30.

See also:
edje_frametime_set()
Since :
2.3.1
void edje_frametime_set ( double  t)

Sets edje transitions' frame time.

Parameters:
tThe frame time, in seconds. Default value is 1/30.

This function sets the edje built-in animations' frame time (thus, affecting their resolution) by calling ecore_animator_frametime_set(). This frame time can be retrieved with edje_frametime_get().

See also:
edje_frametime_get()
Since :
2.3.1
Examples:
edje-perspective.c.
void edje_freeze ( void  )

Freezes Edje objects.

This function freezes all Edje animations in the current process.

Note:
: for freeze a specific object
See also:
edje_object_freeze().
edje_thaw()
Since :
2.3.1
void edje_language_set ( const char *  locale)

Sets Edje language.

Parameters:
localeThe locale specifier.

This function sets the given language.

Note:
: emits signal edje,language,"locale".
Since (EFL) :
1.15
Since :
3.0
Examples:
edje-text.c.
void edje_thaw ( void  )

Thaws Edje objects.

This function thaws all Edje animations in the current process.

Note:
for thaw a specific object
See also:
edje_object_thaw().
edje_freeze()
Since :
2.3.1

Retrieves transitions duration factor.

Returns:
The edje transition duration factor

This function returns the edje transition duration factor.

See also:
edje_transition_duration_set() for more details
Since (EFL) :
1.15
Since :
3.0
void edje_transition_duration_factor_set ( double  scale)

Sets edje transition duration factor.

Parameters:
scaleThe edje transition's duration factor (the default value is 1.0)

This function sets the edje transition duration factor It will affect the speed of transitions which had the use_duration_factor property set to @1. The default value of use_duration_factor property is zero, but can be changed by "USE_DURATION_FACTOR 1" or "USE_DURATION_FACTOR 0" as parameter of "TRANSITION" property at EDC level. If the parameter is "USE_DURATION_FACTOR 0" or not mentioned about "USE_DURATION_FACTOR", the duration of transition keeps original duration

Warning:
The transition's duration factor cannot be set on each translation. If you use this function, it will affect transitions globally
See also:
edje_transition_duration_factor_get()
Since (EFL) :
1.15
Since :
3.0