update to eolian complex types (without complex part for now)
authorDaniel Kolesa <d.kolesa@samsung.com>
Tue, 9 Sep 2014 13:50:35 +0000 (14:50 +0100)
committerDaniel Kolesa <d.kolesa@samsung.com>
Tue, 9 Sep 2014 13:53:02 +0000 (14:53 +0100)
25 files changed:
src/lib/elm_app_client.eo
src/lib/elm_app_server.eo
src/lib/elm_box.eo
src/lib/elm_calendar.eo
src/lib/elm_colorselector.eo
src/lib/elm_container.eo
src/lib/elm_ctxpopup.eo
src/lib/elm_dayselector.eo
src/lib/elm_diskselector.eo
src/lib/elm_flipselector.eo
src/lib/elm_gengrid.eo
src/lib/elm_genlist.eo
src/lib/elm_grid.eo
src/lib/elm_hoversel.eo
src/lib/elm_interface_atspi_accessible.eo
src/lib/elm_interface_atspi_action.eo
src/lib/elm_interface_atspi_text.eo
src/lib/elm_interface_fileselector.eo
src/lib/elm_list.eo
src/lib/elm_map.eo
src/lib/elm_menu.eo
src/lib/elm_multibuttonentry.eo
src/lib/elm_naviframe.eo
src/lib/elm_slideshow.eo
src/lib/elm_widget.eo

index bd3ee94..d54264a 100644 (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 {
index 76f2499..bd7748e 100644 (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 {
index 465e8b4..3c08969 100644 (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.
index 1dfcbce..92ec454 100644 (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)*;
          }
       }
    }
index d22a345..f3acf5f 100644 (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 {
index 58d7d03..b306f7e 100644 (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 */
          }
       }
    }
index 46ef40e..8bcad01 100644 (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 {
index e2eacfc..e4f6255 100644 (file)
@@ -125,7 +125,7 @@ class Elm_Dayselector (Elm_Layout)
          @since 1.8
 
          @ingroup Dayselector */
-         return: Eina_List *;
+         return: list *;
       }
       day_selected_set {
          /*@
index 15a590c..7221cff 100644 (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 {
index b1e9c25..e37ee3d 100644 (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 {
index 86e9046..d6782ca 100644 (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 {
index c68ebce..7907626 100644 (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 {
index e3e8f7e..e4bb784 100644 (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 *;
          }
       }
    }
index 00da004..adb3e84 100644 (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)*;
          }
       }
    }
index 1bd61ba..28cf467 100644 (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 {
index 18df5bc..48daf34 100644 (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 */
          }
       }
    }
index 3b1873a..6fc3bd4 100644 (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 {
index 8a5b239..401e33e 100644 (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;
          }
       }
    }
index 011b2a9..238b940 100644 (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 {
index e2713f3..8d90063 100644 (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 {
index 04a2f06..35c41c4 100644 (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 {
index 44e5a04..43e13a9 100644 (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 {
index 231e680..cb2526d 100644 (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 {
index 1a92e40..4ae792f 100644 (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)*;
          }
       }
    }
index f48559b..42aa496 100644 (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;