update to eolian complex types (without complex part for now)

This commit is contained in:
Daniel Kolesa 2014-09-09 14:50:35 +01:00
parent 3d85a89b2c
commit 05382aed68
25 changed files with 44 additions and 44 deletions

View File

@ -8,7 +8,7 @@ class Elm_App_Client (Eo.Base)
/*@ Return a iterator with all views of application. */
}
values {
Eina_Iterator *ret; /*@ the iterator with all views, must be freed after use */
iterator *ret; /*@ the iterator with all views, must be freed after use */
}
}
package {

View File

@ -17,7 +17,7 @@ class Elm_App_Server (Eo.Base)
/*@ Return a iterator with all views of application */
}
values {
Eina_Iterator *ret; /*@ Iterator with all views of application, you must free iterator after use */
iterator *ret; /*@ Iterator with all views of application, you must free iterator after use */
}
}
path {

View File

@ -143,7 +143,7 @@ class Elm_Box (Elm_Widget)
/*@
Retrieve a list of the objects packed into the box
Returns a new @c Eina_List with a pointer to @c Evas_Object in its nodes.
Returns a new @c list with a pointer to @c Evas_Object in its nodes.
The order of the list corresponds to the packing order the box uses.
You must free this list with eina_list_free() once you are done with it.

View File

@ -238,14 +238,14 @@ class Elm_Calendar (Elm_Layout, Elm_Interface_Atspi_Widget_Action)
/*@
Get a list of all the calendar marks.
@return An @c Eina_List of calendar marks objects, or @c NULL on failure.
@return A @c list of calendar marks objects, or @c NULL on failure.
@see elm_calendar_mark_add()
@see elm_calendar_mark_del()
@see elm_calendar_marks_clear()
@ingroup Calendar */
return: const(Eina_List)*;
return: const(list)*;
}
}
}

View File

@ -82,7 +82,7 @@ class Elm_Colorselector (Elm_Layout, Elm_Interface_Atspi_Widget_Action)
@since 1.9
@ingroup Colorselector */
return: const(Eina_List)*;
return: const(list)*;
}
}
palette_selected_item {

View File

@ -9,7 +9,7 @@ class Elm_Container (Elm_Widget)
/*@ No description supplied by the EAPI. */
}
values {
Eina_List *ret; /*@ Eina_List */
list *ret; /*@ list */
}
}
}

View File

@ -144,7 +144,7 @@ class Elm_Ctxpopup (Elm_Layout, Elm_Interface_Atspi_Widget_Action)
call to this function when changes happen.
@ingroup Ctxpopup */
return: const(Eina_List)*;
return: const(list)*;
}
}
first_item {

View File

@ -125,7 +125,7 @@ class Elm_Dayselector (Elm_Layout)
@since 1.8
@ingroup Dayselector */
return: Eina_List *;
return: list *;
}
day_selected_set {
/*@

View File

@ -122,7 +122,7 @@ class Elm_Diskselector (Elm_Widget, Elm_Interface_Scrollable,
/*@
Get a list of all the diskselector items.
@return An @c Eina_List of diskselector items, #Elm_Object_Item,
@return A @c list of diskselector items, #Elm_Object_Item,
or @c NULL on failure.
@see elm_diskselector_item_append()
@ -130,7 +130,7 @@ class Elm_Diskselector (Elm_Widget, Elm_Interface_Scrollable,
@see elm_diskselector_clear()
@ingroup Diskselector */
return: const(Eina_List)*;
return: const(list)*;
}
}
last_item {

View File

@ -63,7 +63,7 @@ class Elm_Flipselector (Elm_Layout, Elm_Interface_Atspi_Widget_Action)
call to this function when changes happen.
@ingroup Flipselector */
return: const(Eina_List)*;
return: const(list)*;
}
}
first_item {

View File

@ -372,7 +372,7 @@ class Elm_Gengrid (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interfac
@see elm_gengrid_realized_items_update()
@ingroup Gengrid */
return: Eina_List *;
return: list *;
}
}
first_item {
@ -409,7 +409,7 @@ class Elm_Gengrid (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interfac
@see elm_gengrid_selected_item_get()
@ingroup Gengrid */
return: const(Eina_List)*;
return: const(list)*;
}
}
last_item {

View File

@ -440,7 +440,7 @@ class Elm_Genlist (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interfac
@see elm_genlist_realized_items_update()
@ingroup Genlist */
return: Eina_List *;
return: list *;
}
}
selected_items {
@ -464,7 +464,7 @@ class Elm_Genlist (Elm_Layout, Elm_Interface_Scrollable, Evas.Clickable_Interfac
@see elm_genlist_selected_item_get()
@ingroup Genlist */
return: const(Eina_List)*;
return: const(list)*;
}
}
last_item {

View File

@ -32,7 +32,7 @@ class Elm_Grid (Elm_Widget)
list, but these removals won't be reflected on it.
@ingroup Grid */
return: Eina_List *;
return: list *;
}
}
}

View File

@ -77,7 +77,7 @@ class Elm_Hoversel (Elm_Button, Evas.Selectable_Interface,
@see elm_hoversel_item_add()
@ingroup Hoversel */
return: const(Eina_List)*;
return: const(list)*;
}
}
}

View File

@ -28,7 +28,7 @@ mixin Elm_Interface_Atspi_Accessible ()
elements Should be free by a user. */
}
values {
Eina_List *relations;
list *relations;
}
}
role @protected {
@ -46,7 +46,7 @@ mixin Elm_Interface_Atspi_Accessible ()
/*@ Gets widget's accessible children. */
}
values {
Eina_List *children;
list *children;
}
}
role_name @protected {
@ -64,7 +64,7 @@ mixin Elm_Interface_Atspi_Accessible ()
attributes. Must be free by a user. */
}
values {
Eina_List *attributes;
list *attributes;
}
}
index_in_parent @protected {

View File

@ -46,7 +46,7 @@ mixin Elm_Interface_Atspi_Action ()
/*@ Get list of available widget actions */
}
values {
Eina_List *actions; /*@ contains statically allocated strings */
list *actions; /*@ contains statically allocated strings */
}
}
}

View File

@ -85,14 +85,14 @@ interface Elm_Interface_Atspi_Text ()
int *end_offset;
}
values {
own(Eina_List*) attributes;
own(list*) attributes;
}
}
default_attributes @protected {
get {
}
values {
own(Eina_List*) attributes;
own(list*) attributes;
}
}
character_extents @protected {
@ -136,7 +136,7 @@ interface Elm_Interface_Atspi_Text ()
Elm_Atspi_Text_Clip_Type yclip;
}
values {
Eina_List *ranges;
list *ranges;
}
}
range_extents @protected {

View File

@ -120,7 +120,7 @@ interface Elm_Interface_Fileselector ()
/*@ Get a list of selected paths in the fileselector. */
}
values {
const(Eina_List)* ret;
const(list)* ret;
}
}
}

View File

@ -222,7 +222,7 @@ class Elm_List (Elm_Layout, Elm_Interface_Scrollable,
/*@
Get a list of all the list items.
@return An @c Eina_List of list items, #Elm_Object_Item,
@return A @c list of list items, #Elm_Object_Item,
or @c NULL on failure.
@see elm_list_item_append()
@ -230,7 +230,7 @@ class Elm_List (Elm_Layout, Elm_Interface_Scrollable,
@see elm_list_clear()
@ingroup List */
return: const(Eina_List)*;
return: const(list)*;
}
}
first_item {
@ -251,7 +251,7 @@ class Elm_List (Elm_Layout, Elm_Interface_Scrollable,
/*@
Return a list of the currently selected list items.
@return An @c Eina_List of list items, #Elm_Object_Item,
@return An @c list of list items, #Elm_Object_Item,
or @c NULL on failure.
Multiple items can be selected if multi select is enabled. It can be
@ -261,7 +261,7 @@ class Elm_List (Elm_Layout, Elm_Interface_Scrollable,
@see elm_list_multi_select_set()
@ingroup List */
return: const(Eina_List)*;
return: const(list)*;
}
}
last_item {

View File

@ -278,7 +278,7 @@ class Elm_Map (Elm_Widget, Elm_Interface_Scrollable,
@since 1.7
@ingroup Map */
return: Eina_List *;
return: list *;
}
}
tile_load_status {

View File

@ -21,10 +21,10 @@ class Elm_Menu (Elm_Widget, Evas.Clickable_Interface)
/*@
@brief Returns a list of @p item's items.
@return An Eina_List* of @p item's items
@return An list* of @p item's items
@ingroup Menu */
return: const(Eina_List)*;
return: const(list)*;
}
}
first_item {

View File

@ -77,7 +77,7 @@ class Elm_Multibuttonentry (Elm_Layout)
@return The list of items, or NULL if none
@ingroup Multibuttonentry */
return: const(Eina_List)*;
return: const(list)*;
}
}
first_item {

View File

@ -89,12 +89,12 @@ class Elm_Naviframe (Elm_Layout, Elm_Interface_Atspi_Widget_Action)
/*@
@brief Get a list of all the naviframe items.
@return An Eina_List of naviframe items, #Elm_Object_Item,
@return A list of naviframe items, #Elm_Object_Item,
or @c NULL on failure.
@note The returned list MUST be freed.
@ingroup Naviframe */
return: Eina_List * @warn_unused;
return: list * @warn_unused;
}
}
top_item {

View File

@ -201,7 +201,7 @@ class Elm_Slideshow (Elm_Layout, Elm_Interface_Atspi_Widget_Action)
call to this function when changes happen.
@ingroup Slideshow */
return: const(Eina_List)*;
return: const(list)*;
}
}
transitions {
@ -243,7 +243,7 @@ class Elm_Slideshow (Elm_Layout, Elm_Interface_Atspi_Widget_Action)
@see elm_slideshow_transition_set()
@ingroup Slideshow */
return: const(Eina_List)*;
return: const(list)*;
}
}
count {
@ -303,7 +303,7 @@ class Elm_Slideshow (Elm_Layout, Elm_Interface_Atspi_Widget_Action)
@see elm_slideshow_layout_set()
@ingroup Slideshow */
return: const(Eina_List)*;
return: const(list)*;
}
}
}

View File

@ -146,7 +146,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget)
objs: const;
}
values {
Eina_List *objs;
list *objs;
}
}
can_focus {
@ -302,7 +302,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget)
/*@
Function to operate on a given widget's scrollabe children when necessary.
@warning free the returned list with eina_list_free(). */
return: Eina_List *;
return: list *;
}
}
scroll_hold {
@ -373,7 +373,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget)
can_focus_child_list {
get {
/*@ No description supplied by the EAPI. */
return: Eina_List *;
return: list *;
}
}
focused_item {
@ -618,7 +618,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget)
return: bool;
params {
@in const(Evas_Object)* base;
@in const(Eina_List)* items;
@in const(list)* items;
@in list_data_get_func_type list_data_get;
@in double degree;
@out Evas_Object *direction;
@ -723,7 +723,7 @@ abstract Elm_Widget (Evas.Object_Smart, Elm_Interface_Atspi_Widget)
/*@ No description supplied by the EAPI. */
return: bool;
params {
@in const(Eina_List)* items;
@in const(list)* items;
@in list_data_get_func_type list_data_get;
@in Elm_Focus_Direction dir;
@out Evas_Object *next;