evas: make no longer supported object, legacy only.

So I forgot to clean my hard drive from previously generated files,
and obviously everything still worked. This lead to having to roll back
evas_smart_clipped.eo as a public eo object until we merge elementary.

Still I would like someone to take a look at elm_pan.eo and figure out
how to not rely on smart clipped there.
This commit is contained in:
Cedric BAIL 2016-03-21 16:31:26 -07:00
parent 135f6ebeb8
commit fd80e26f06
7 changed files with 21 additions and 65 deletions

View File

@ -42,6 +42,7 @@ evas_eolian_pub_files = \
lib/evas/canvas/efl_canvas_surface_x11.eo \
lib/evas/canvas/efl_canvas_surface_wayland.eo \
lib/evas/canvas/evas_filter.eo \
lib/evas/canvas/evas_smart_clipped.eo \
$(NULL)
evas_eolian_legacy_files = \
@ -49,7 +50,6 @@ evas_eolian_legacy_files = \
lib/evas/canvas/evas_table.eo \
lib/evas/canvas/evas_grid.eo \
lib/evas/canvas/evas_box.eo\
lib/evas/canvas/evas_smart_clipped.eo \
lib/evas/canvas/evas_out.eo \
lib/evas/canvas/evas_text.eo \
lib/evas/canvas/evas_textgrid.eo \
@ -62,7 +62,8 @@ evas_eolian_type_files = \
lib/evas/canvas/evas_types.eot
evas_eolian_priv_c = $(evas_eolian_priv_files:%.eo=%.eo.c)
evas_eolian_priv_h = $(evas_eolian_priv_files:%.eo=%.eo.h)
evas_eolian_priv_h = $(evas_eolian_priv_files:%.eo=%.eo.h) \
$(evas_eolian_legacy_files:%.eo=%.eo.h)
evas_eolian_pub_c = $(evas_eolian_pub_files:%.eo=%.eo.c)
evas_eolian_pub_h = $(evas_eolian_pub_files:%.eo=%.eo.h) \

View File

@ -1,5 +1,7 @@
#include "edje_private.h"
#include "../evas/canvas/evas_box.eo.h"
#include <Eo.h>
typedef struct _Edje_Transition_Animation_Data Edje_Transition_Animation_Data;

View File

@ -2,6 +2,8 @@
#include "edje_private.h"
#include "../evas/canvas/evas_table.eo.h"
static void _edje_part_make_rtl(Edje_Part_Description_Common *desc);
static Edje_Part_Description_Common *_edje_get_description_by_orientation(Edje *ed, Edje_Part_Description_Common *src, Edje_Part_Description_Common **dst, unsigned char type);

View File

@ -1,6 +1,8 @@
#include "edje_private.h"
#define _ELLIP_STR "\xE2\x80\xA6"
#include "../evas/canvas/evas_text.eo.h"
/* returns with and height for this part.
*
* depending on the value of the use_alternate_font_metrics flag, it will

View File

@ -1,5 +1,9 @@
#include "edje_private.h"
#include "../evas/canvas/evas_box.eo.h"
#include "../evas/canvas/evas_line.eo.h"
#include "../evas/canvas/evas_text.eo.h"
typedef struct _Edje_Box_Layout Edje_Box_Layout;
struct _Edje_Box_Layout
{

View File

@ -29,16 +29,6 @@
* @}
*/
/**
* @ingroup Evas_Object_Text
*
* @{
*/
#include "canvas/evas_text.eo.h"
/**
* @}
*/
/**
* @ingroup Evas_Object_Textblock
*
@ -49,26 +39,6 @@
* @}
*/
/**
* @ingroup Evas_Object_Textgrid
*
* @{
*/
#include "canvas/evas_textgrid.eo.h"
/**
* @}
*/
/**
* @ingroup Evas_Object_Line
*
* @{
*/
#include "canvas/evas_line.eo.h"
/**
* @}
*/
/**
* @ingroup Evas_Object_Polygon
*
@ -99,43 +69,10 @@
* @}
*/
/**
* @ingroup Evas_Object_Box
*
* @{
*/
#include "canvas/evas_box.eo.h"
/**
* @}
*/
/**
* @ingroup Evas_Object_Table
*
* @{
*/
#include "canvas/evas_table.eo.h"
/**
* @}
*/
/**
* @ingroup Evas_Object_Grid
*
* @{
*/
#include "canvas/evas_grid.eo.h"
/**
* @}
*/
#include "canvas/evas_common_interface.eo.h"
#include "canvas/evas_object.eo.h"
#include "canvas/evas_out.eo.h"
/**
* @defgroup Evas_3D Evas 3D Extensions
*

View File

@ -42,6 +42,14 @@
# endif
#endif /* ! _WIN32 */
#include "canvas/evas_text.eo.h"
#include "canvas/evas_textgrid.eo.h"
#include "canvas/evas_line.eo.h"
#include "canvas/evas_box.eo.h"
#include "canvas/evas_table.eo.h"
#include "canvas/evas_grid.eo.h"
#include "canvas/evas_out.eo.h"
#define RENDER_METHOD_INVALID 0x00000000
typedef struct _Evas_Layer Evas_Layer;