#include <Ecore.h>
 
static Eina_Bool _advance_frame(
void *data, 
double pos);
 
static Eina_Bool _advance_frame2(
void *data, 
double pos);
 
static Eina_Bool _advance_frame3(
void *data);
 
static Eina_Bool _start_second_anim(
void *data);
 
static Eina_Bool _freeze_third_anim(
void *data);
 
static Eina_Bool _thaw_third_anim(
void *data);
 
 
int
main(void)
{
   Evas_Object *rect, *bg, *rect2;
   Ecore_Evas *ee;
   Evas *evas;
 
 
 
 
 
 
 
 
 
 
   return 0;
}
 
_advance_frame(void *data, double pos)
{
   double frame = pos;
 
}
 
_start_second_anim(void *data)
{
}
 
_advance_frame2(void *data, double pos)
{
   double frame = pos;
 
}
 
_advance_frame3(void *data)
{
   static int x = 0;
 
   if (x >= 250)
     x = 0;
 
}
 
_freeze_third_anim(void *data)
{
}
 
_thaw_third_anim(void *data)
{
}
 
Ecore_Animator * ecore_animator_add(Ecore_Task_Cb func, const void *data)
Adds an animator to call func at every animation tick during main loop execution.
Definition ecore_anim.c:537
 
void ecore_animator_thaw(Ecore_Animator *animator)
Restores execution of the specified animator.
Definition ecore_anim.c:910
 
void ecore_animator_frametime_set(double frametime)
Sets the animator call interval in seconds.
Definition ecore_anim.c:874
 
double ecore_animator_pos_map(double pos, Ecore_Pos_Map map, double v1, double v2)
Maps an input position from 0.0 to 1.0 along a timeline to a position in a different curve.
Definition ecore_anim.c:833
 
void * ecore_animator_del(Ecore_Animator *animator)
Deletes the specified animator from the animator list.
Definition ecore_anim.c:846
 
Ecore_Animator * ecore_animator_timeline_add(double runtime, Ecore_Timeline_Cb func, const void *data)
Adds an animator that runs for a limited time.
Definition ecore_anim.c:544
 
void ecore_animator_freeze(Ecore_Animator *animator)
Suspends the specified animator.
Definition ecore_anim.c:892
 
@ ECORE_POS_MAP_BOUNCE
Start at 0.0 then "drop" like a ball bouncing to the ground at 1.0, and bounce v2 times,...
Definition Ecore_Common.h:2792
 
@ ECORE_POS_MAP_SPRING
Start at 0.0 then "wobble" like a spring rest position 1.0, and wobble v2 times, with decay factor of...
Definition Ecore_Common.h:2795
 
EAPI int ecore_evas_init(void)
Inits the Ecore_Evas system.
Definition ecore_evas.c:608
 
EAPI void ecore_evas_show(Ecore_Evas *ee)
Shows an Ecore_Evas' window.
Definition ecore_evas.c:1494
 
EAPI Evas * ecore_evas_get(const Ecore_Evas *ee)
Gets an Ecore_Evas's Evas.
Definition ecore_evas.c:1314
 
EAPI Ecore_Evas * ecore_evas_new(const char *engine_name, int x, int y, int w, int h, const char *extra_options)
Creates a new Ecore_Evas based on engine name and common parameters.
Definition ecore_evas.c:1053
 
EAPI int ecore_evas_shutdown(void)
Shuts down the Ecore_Evas system.
Definition ecore_evas.c:672
 
EAPI void ecore_evas_free(Ecore_Evas *ee)
Frees an Ecore_Evas.
Definition ecore_evas.c:1097
 
#define ECORE_CALLBACK_RENEW
Return value to keep a callback.
Definition Ecore_Common.h:153
 
#define ECORE_CALLBACK_CANCEL
Return value to remove a callback.
Definition Ecore_Common.h:152
 
void ecore_main_loop_begin(void)
Runs the application main loop.
Definition ecore_main.c:1311
 
Ecore_Timer * ecore_timer_add(double in, Ecore_Task_Cb func, const void *data)
Creates a timer to call the given function in the given period of time.
Definition ecore_timer.c:189
 
unsigned char Eina_Bool
Type to mimic a boolean.
Definition eina_types.h:527
 
EVAS_API void evas_object_show(Evas_Object *eo_obj)
Makes the given Evas object visible.
Definition evas_object_main.c:1814
 
EVAS_API void evas_object_del(Evas_Object *obj)
Marks the given Evas object for deletion (when Evas will free its memory).
Definition evas_object_main.c:928
 
EVAS_API void evas_object_color_set(Evas_Object *obj, int r, int g, int b, int a)
Sets the general/main color of the given Evas object to the given one.
Definition evas_object_main.c:2024
 
EVAS_API void evas_object_move(Evas_Object *obj, Evas_Coord x, Evas_Coord y)
Move the given Evas object to the given location inside its canvas' viewport.
Definition evas_object_main.c:1171
 
EVAS_API void evas_object_resize(Evas_Object *obj, Evas_Coord w, Evas_Coord h)
Changes the size of the given Evas object.
Definition evas_object_main.c:1236
 
EVAS_API Evas_Object * evas_object_rectangle_add(Evas *e)
Adds a rectangle to the given evas.
Definition evas_object_rectangle.c:78
 
Opaque handle to manage Ecore Animator objects.