q66 pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=5ffc1dc3d336ccff99145dea0a3c4b7e0c70bb8c
commit 5ffc1dc3d336ccff99145dea0a3c4b7e0c70bb8c Author: Daniel Kolesa <d.kol...@samsung.com> Date: Tue Sep 9 14:50:35 2014 +0100 update to eolian complex types (without complex part for now) --- src/lib/elm_app_client.eo | 2 +- src/lib/elm_app_server.eo | 2 +- src/lib/elm_box.eo | 2 +- src/lib/elm_calendar.eo | 4 ++-- src/lib/elm_colorselector.eo | 2 +- src/lib/elm_container.eo | 2 +- src/lib/elm_ctxpopup.eo | 2 +- src/lib/elm_dayselector.eo | 2 +- src/lib/elm_diskselector.eo | 4 ++-- src/lib/elm_flipselector.eo | 2 +- src/lib/elm_gengrid.eo | 4 ++-- src/lib/elm_genlist.eo | 4 ++-- src/lib/elm_grid.eo | 2 +- src/lib/elm_hoversel.eo | 2 +- src/lib/elm_interface_atspi_accessible.eo | 6 +++--- src/lib/elm_interface_atspi_action.eo | 2 +- src/lib/elm_interface_atspi_text.eo | 6 +++--- src/lib/elm_interface_fileselector.eo | 2 +- src/lib/elm_list.eo | 8 ++++---- src/lib/elm_map.eo | 2 +- src/lib/elm_menu.eo | 4 ++-- src/lib/elm_multibuttonentry.eo | 2 +- src/lib/elm_naviframe.eo | 4 ++-- src/lib/elm_slideshow.eo | 6 +++--- src/lib/elm_widget.eo | 10 +++++----- 25 files changed, 44 insertions(+), 44 deletions(-) diff --git a/src/lib/elm_app_client.eo b/src/lib/elm_app_client.eo index bd3ee94..d54264a 100644 --- a/src/lib/elm_app_client.eo +++ b/src/lib/elm_app_client.eo @@ -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 { diff --git a/src/lib/elm_app_server.eo b/src/lib/elm_app_server.eo index 76f2499..bd7748e 100644 --- a/src/lib/elm_app_server.eo +++ b/src/lib/elm_app_server.eo @@ -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 { diff --git a/src/lib/elm_box.eo b/src/lib/elm_box.eo index 465e8b4..3c08969 100644 --- a/src/lib/elm_box.eo +++ b/src/lib/elm_box.eo @@ -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. diff --git a/src/lib/elm_calendar.eo b/src/lib/elm_calendar.eo index 1dfcbce..92ec454 100644 --- a/src/lib/elm_calendar.eo +++ b/src/lib/elm_calendar.eo @@ -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)*; } } } diff --git a/src/lib/elm_colorselector.eo b/src/lib/elm_colorselector.eo index d22a345..f3acf5f 100644 --- a/src/lib/elm_colorselector.eo +++ b/src/lib/elm_colorselector.eo @@ -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 { diff --git a/src/lib/elm_container.eo b/src/lib/elm_container.eo index 58d7d03..b306f7e 100644 --- a/src/lib/elm_container.eo +++ b/src/lib/elm_container.eo @@ -9,7 +9,7 @@ class Elm_Container (Elm_Widget) /*@ No description supplied by the EAPI. */ } values { - Eina_List *ret; /*@ Eina_List */ + list *ret; /*@ list */ } } } diff --git a/src/lib/elm_ctxpopup.eo b/src/lib/elm_ctxpopup.eo index 46ef40e..8bcad01 100644 --- a/src/lib/elm_ctxpopup.eo +++ b/src/lib/elm_ctxpopup.eo @@ -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 { diff --git a/src/lib/elm_dayselector.eo b/src/lib/elm_dayselector.eo index e2eacfc..e4f6255 100644 --- a/src/lib/elm_dayselector.eo +++ b/src/lib/elm_dayselector.eo @@ -125,7 +125,7 @@ class Elm_Dayselector (Elm_Layout) @since 1.8 @ingroup Dayselector */ - return: Eina_List *; + return: list *; } day_selected_set { /*@ diff --git a/src/lib/elm_diskselector.eo b/src/lib/elm_diskselector.eo index 15a590c..7221cff 100644 --- a/src/lib/elm_diskselector.eo +++ b/src/lib/elm_diskselector.eo @@ -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 { diff --git a/src/lib/elm_flipselector.eo b/src/lib/elm_flipselector.eo index b1e9c25..e37ee3d 100644 --- a/src/lib/elm_flipselector.eo +++ b/src/lib/elm_flipselector.eo @@ -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 { diff --git a/src/lib/elm_gengrid.eo b/src/lib/elm_gengrid.eo index 86e9046..d6782ca 100644 --- a/src/lib/elm_gengrid.eo +++ b/src/lib/elm_gengrid.eo @@ -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 { diff --git a/src/lib/elm_genlist.eo b/src/lib/elm_genlist.eo index c68ebce..7907626 100644 --- a/src/lib/elm_genlist.eo +++ b/src/lib/elm_genlist.eo @@ -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 { diff --git a/src/lib/elm_grid.eo b/src/lib/elm_grid.eo index e3e8f7e..e4bb784 100644 --- a/src/lib/elm_grid.eo +++ b/src/lib/elm_grid.eo @@ -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 *; } } } diff --git a/src/lib/elm_hoversel.eo b/src/lib/elm_hoversel.eo index 00da004..adb3e84 100644 --- a/src/lib/elm_hoversel.eo +++ b/src/lib/elm_hoversel.eo @@ -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)*; } } } diff --git a/src/lib/elm_interface_atspi_accessible.eo b/src/lib/elm_interface_atspi_accessible.eo index 1bd61ba..28cf467 100644 --- a/src/lib/elm_interface_atspi_accessible.eo +++ b/src/lib/elm_interface_atspi_accessible.eo @@ -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 { diff --git a/src/lib/elm_interface_atspi_action.eo b/src/lib/elm_interface_atspi_action.eo index 18df5bc..48daf34 100644 --- a/src/lib/elm_interface_atspi_action.eo +++ b/src/lib/elm_interface_atspi_action.eo @@ -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 */ } } } diff --git a/src/lib/elm_interface_atspi_text.eo b/src/lib/elm_interface_atspi_text.eo index 3b1873a..6fc3bd4 100644 --- a/src/lib/elm_interface_atspi_text.eo +++ b/src/lib/elm_interface_atspi_text.eo @@ -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 { diff --git a/src/lib/elm_interface_fileselector.eo b/src/lib/elm_interface_fileselector.eo index 8a5b239..401e33e 100644 --- a/src/lib/elm_interface_fileselector.eo +++ b/src/lib/elm_interface_fileselector.eo @@ -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; } } } diff --git a/src/lib/elm_list.eo b/src/lib/elm_list.eo index 011b2a9..238b940 100644 --- a/src/lib/elm_list.eo +++ b/src/lib/elm_list.eo @@ -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 { diff --git a/src/lib/elm_map.eo b/src/lib/elm_map.eo index e2713f3..8d90063 100644 --- a/src/lib/elm_map.eo +++ b/src/lib/elm_map.eo @@ -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 { diff --git a/src/lib/elm_menu.eo b/src/lib/elm_menu.eo index 04a2f06..35c41c4 100644 --- a/src/lib/elm_menu.eo +++ b/src/lib/elm_menu.eo @@ -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 { diff --git a/src/lib/elm_multibuttonentry.eo b/src/lib/elm_multibuttonentry.eo index 44e5a04..43e13a9 100644 --- a/src/lib/elm_multibuttonentry.eo +++ b/src/lib/elm_multibuttonentry.eo @@ -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 { diff --git a/src/lib/elm_naviframe.eo b/src/lib/elm_naviframe.eo index 231e680..cb2526d 100644 --- a/src/lib/elm_naviframe.eo +++ b/src/lib/elm_naviframe.eo @@ -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 { diff --git a/src/lib/elm_slideshow.eo b/src/lib/elm_slideshow.eo index 1a92e40..4ae792f 100644 --- a/src/lib/elm_slideshow.eo +++ b/src/lib/elm_slideshow.eo @@ -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)*; } } } diff --git a/src/lib/elm_widget.eo b/src/lib/elm_widget.eo index f48559b..42aa496 100644 --- a/src/lib/elm_widget.eo +++ b/src/lib/elm_widget.eo @@ -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; --