Evas map: Move opaque type definition to .eo.

This commit is contained in:
Tom Hacohen 2015-05-29 15:00:10 +01:00
parent 98497f8406
commit 8a6e542fef
3 changed files with 9 additions and 14 deletions

View File

@ -273,19 +273,6 @@ typedef struct _Evas_Smart_Interface Evas_Smart_Interface;
*/
typedef struct _Evas_Smart_Cb_Description Evas_Smart_Cb_Description;
/**
* @typedef Evas_Map
*
* An opaque handle to map points
*
* @see evas_map_new()
* @see evas_map_free()
* @see evas_map_dup()
*
* @ingroup Evas_Object_Group_Map
*/
typedef struct _Evas_Map Evas_Map;
/**
* @typedef Evas
*

View File

@ -310,7 +310,7 @@ abstract Evas.Object (Eo.Base, Evas.Common_Interface, Efl.Gfx.Base, Efl.Gfx.Stac
@see evas_object_map_set() */
}
values {
map: const(Evas_Map)*; /*@ new map to use */
map: const(Evas.Map)*; /*@ new map to use */
}
}
@property size_hint_aspect {

View File

@ -7,3 +7,11 @@ enum Evas.Aspect_Control {
vertical = 3, /**< Use all vertical container space to place an object, using the given aspect */
both = 4 /**< Use all horizontal @b and vertical container spaces to place an object (never growing it out of those bounds), using the given aspect */
}
struct Evas.Map; /*@ An opaque handle to map points
*
* @see evas_map_new()
* @see evas_map_free()
* @see evas_map_dup()
*
* @ingroup Evas_Object_Group_Map
*/