efl: add a changed event triggered when something affect the visual aspect of an object.

This commit is contained in:
Cedric BAIL 2015-04-03 16:30:39 +02:00
parent 7ee3f8d952
commit 94418f1cd5
2 changed files with 7 additions and 2 deletions

View File

@ -139,6 +139,10 @@ typedef enum _Efl_Gfx_Fill_Spread
#ifdef EFL_BETA_API_SUPPORT
EAPI extern const Eo_Event_Description _EFL_GFX_CHANGED;
#define EFL_GFX_CHANGED (&(_EFL_GFX_CHANGED))
/* Interfaces */
#include "interfaces/efl_control.eo.h"
#include "interfaces/efl_file.eo.h"
@ -147,8 +151,6 @@ typedef enum _Efl_Gfx_Fill_Spread
#include "interfaces/efl_text.eo.h"
#include "interfaces/efl_text_properties.eo.h"
#include "interfaces/efl_gfx_utils.h"
#include "interfaces/efl_gfx_base.eo.h"
#include "interfaces/efl_gfx_stack.eo.h"
#include "interfaces/efl_gfx_fill.eo.h"

View File

@ -19,3 +19,6 @@
#include "interfaces/efl_gfx_gradient_base.eo.c"
#include "interfaces/efl_gfx_gradient_linear.eo.c"
#include "interfaces/efl_gfx_gradient_radial.eo.c"
EAPI const Eo_Event_Description _EFL_GFX_CHANGED =
EO_EVENT_DESCRIPTION("Graphics changed", "The visual representation of the object changed");