Elm widget: Fix some Eolian warnings.

This commit is contained in:
Tom Hacohen 2015-06-01 15:01:57 +01:00
parent 689ef74dd6
commit d495b6874e
1 changed files with 52 additions and 52 deletions

View File

@ -141,13 +141,13 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
set { set {
/*@ No description supplied by the EAPI. */ /*@ No description supplied by the EAPI. */
values { values {
objs: list<Evas_Object*>*; objs: list<Evas.Object*>*;
} }
} }
get { get {
/*@ No description supplied by the EAPI. */ /*@ No description supplied by the EAPI. */
values { values {
objs: const(list<Evas_Object*>)*; objs: const(list<Evas.Object*>)*;
} }
} }
} }
@ -181,7 +181,7 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
/*@ No description supplied by the EAPI. */ /*@ No description supplied by the EAPI. */
} }
values { values {
parent: Evas_Object * @nullable; parent: Evas.Object * @nullable;
} }
} }
@property access_info { @property access_info {
@ -231,7 +231,7 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
return: bool; return: bool;
} }
values { values {
edj: Evas_Object *; edj: Evas.Object *;
wname: const(char)*; wname: const(char)*;
welement: const(char)*; welement: const(char)*;
wstyle: const(char)*; wstyle: const(char)*;
@ -242,7 +242,7 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
/*@ No description supplied by the EAPI. */ /*@ No description supplied by the EAPI. */
} }
values { values {
sobj: Evas_Object * @nullable; sobj: Evas.Object * @nullable;
} }
} }
@property display_mode { @property display_mode {
@ -285,7 +285,7 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
/*@ No description supplied by the EAPI. */ /*@ No description supplied by the EAPI. */
} }
values { values {
sobj: Evas_Object * @nullable; sobj: Evas.Object * @nullable;
sub_obj: bool; sub_obj: bool;
} }
} }
@ -304,7 +304,7 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
/*@ /*@
Function to operate on a given widget's scrollabe children when necessary. Function to operate on a given widget's scrollabe children when necessary.
@warning free the returned list with eina_list_free(). */ @warning free the returned list with eina_list_free(). */
return: free(own(list<Evas_Object *> *), eina_list_free) @warn_unused; return: free(own(list<Evas.Object *> *), eina_list_free) @warn_unused;
} }
} }
@property scroll_hold { @property scroll_hold {
@ -348,16 +348,16 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
return: bool; return: bool;
} }
values { values {
x: Evas_Coord; x: Evas.Coord;
y: Evas_Coord; y: Evas.Coord;
w: Evas_Coord; w: Evas.Coord;
h: Evas_Coord; h: Evas.Coord;
} }
} }
@property top { @property top {
get { get {
/*@ No description supplied by the EAPI. */ /*@ No description supplied by the EAPI. */
return: Evas_Object *; return: Evas.Object *;
} }
} }
@property focus_order { @property focus_order {
@ -375,7 +375,7 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
@property can_focus_child_list { @property can_focus_child_list {
get { get {
/*@ No description supplied by the EAPI. */ /*@ No description supplied by the EAPI. */
return: free(own(list<Evas_Object *> *), eina_list_free) @warn_unused; return: free(own(list<Evas.Object *> *), eina_list_free) @warn_unused;
} }
} }
@property focused_item { @property focused_item {
@ -396,7 +396,7 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
@property parent_widget { @property parent_widget {
get { get {
/*@ No description supplied by the EAPI. */ /*@ No description supplied by the EAPI. */
return: Evas_Object *; return: Evas.Object *;
legacy: null; legacy: null;
} }
} }
@ -409,7 +409,7 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
@property focused_object { @property focused_object {
get { get {
/*@ No description supplied by the EAPI. */ /*@ No description supplied by the EAPI. */
return: Evas_Object *; return: Evas.Object *;
} }
} }
@property parent2 { @property parent2 {
@ -420,7 +420,7 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
/*@ No description supplied by the EAPI. */ /*@ No description supplied by the EAPI. */
} }
values { values {
parent: Evas_Object * @nullable; parent: Evas.Object * @nullable;
} }
} }
@property part_text { @property part_text {
@ -439,7 +439,7 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
} }
newest_focus_order_get @const { newest_focus_order_get @const {
/*@ No description supplied by the EAPI. */ /*@ No description supplied by the EAPI. */
return: Evas_Object *; return: Evas.Object *;
params { params {
@out newest_focus_order: uint; @out newest_focus_order: uint;
@in can_focus_only: bool; @in can_focus_only: bool;
@ -457,13 +457,13 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
focus_next_object_set { focus_next_object_set {
/*@ No description supplied by the EAPI. */ /*@ No description supplied by the EAPI. */
params { params {
@in next: Evas_Object * @nullable; @in next: Evas.Object * @nullable;
@in dir: Elm_Focus_Direction; @in dir: Elm_Focus_Direction;
} }
} }
focus_next_object_get @const { focus_next_object_get @const {
/*@ No description supplied by the EAPI. */ /*@ No description supplied by the EAPI. */
return: Evas_Object *; return: Evas.Object *;
params { params {
@in dir: Elm_Focus_Direction; @in dir: Elm_Focus_Direction;
} }
@ -474,8 +474,8 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
focus_custom_chain_prepend { focus_custom_chain_prepend {
/*@ No description supplied by the EAPI. */ /*@ No description supplied by the EAPI. */
params { params {
@in child: Evas_Object *; @in child: Evas.Object *;
@in relative_child: Evas_Object * @optional; @in relative_child: Evas.Object * @optional;
} }
} }
part_text_translate { part_text_translate {
@ -489,10 +489,10 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
focus_highlight_geometry_get @const { focus_highlight_geometry_get @const {
/*@ Get the focus highlight geometry of widget. */ /*@ Get the focus highlight geometry of widget. */
params { params {
@in x: Evas_Coord *; @in x: Evas.Coord *;
@in y: Evas_Coord *; @in y: Evas.Coord *;
@in w: Evas_Coord *; @in w: Evas.Coord *;
@in h: Evas_Coord *; @in h: Evas.Coord *;
} }
} }
activate { activate {
@ -507,7 +507,7 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
/*@ 'Virtual' function handling sub objects being added. */ /*@ 'Virtual' function handling sub objects being added. */
return: bool; return: bool;
params { params {
@in sobj: Evas_Object *; @in sobj: Evas.Object *;
} }
} }
focus_direction_manager_is { focus_direction_manager_is {
@ -518,7 +518,7 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
event { event {
/*@ 'Virtual' function handling input events on the widget. */ /*@ 'Virtual' function handling input events on the widget. */
params { params {
@in source: Evas_Object *; @in source: Evas.Object *;
@in type: Evas_Callback_Type; @in type: Evas_Callback_Type;
@in event_info: void *; @in event_info: void *;
} }
@ -560,10 +560,10 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
on_focus_region { on_focus_region {
/*@ 'Virtual' function returning an inner area of a widget that should be brought into the visible area of a broader viewport, may this context arise. */ /*@ 'Virtual' function returning an inner area of a widget that should be brought into the visible area of a broader viewport, may this context arise. */
params { params {
@out x: Evas_Coord; @out x: Evas.Coord;
@out y: Evas_Coord; @out y: Evas.Coord;
@out w: Evas_Coord; @out w: Evas.Coord;
@out h: Evas_Coord; @out h: Evas.Coord;
} }
return: bool; return: bool;
} }
@ -576,9 +576,9 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
focus_direction { focus_direction {
/*@ 'Virtual' function handling passing focus to sub-objects given a direction, in degrees. */ /*@ 'Virtual' function handling passing focus to sub-objects given a direction, in degrees. */
params { params {
@in base: const(Evas_Object)*; @in base: const(Evas.Object)*;
@in degree: double; @in degree: double;
@out direction: Evas_Object *; @out direction: Evas.Object *;
@out weight: double; @out weight: double;
} }
return: bool; return: bool;
@ -607,7 +607,7 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
} }
name_find @const { name_find @const {
/*@ No description supplied by the EAPI. */ /*@ No description supplied by the EAPI. */
return: Evas_Object *; return: Evas.Object *;
params { params {
@in name: const(char)*; @in name: const(char)*;
@in recurse: int; @in recurse: int;
@ -617,11 +617,11 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
/*@ No description supplied by the EAPI. */ /*@ No description supplied by the EAPI. */
return: bool; return: bool;
params { params {
@in base: const(Evas_Object)*; @in base: const(Evas.Object)*;
@in items: const(list<Eo.Base*>)*; @in items: const(list<Eo.Base*>)*;
@in list_data_get: list_data_get_func_type; @in list_data_get: list_data_get_func_type;
@in degree: double; @in degree: double;
@out direction: Evas_Object *; @out direction: Evas.Object *;
@out weight: double; @out weight: double;
} }
} }
@ -638,20 +638,20 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
show_region_set { show_region_set {
/*@ No description supplied by the EAPI. */ /*@ No description supplied by the EAPI. */
params { params {
@in x: Evas_Coord; @in x: Evas.Coord;
@in y: Evas_Coord; @in y: Evas.Coord;
@in w: Evas_Coord; @in w: Evas.Coord;
@in h: Evas_Coord; @in h: Evas.Coord;
@in forceshow: bool; @in forceshow: bool;
} }
} }
show_region_get @const { show_region_get @const {
/*@ No description supplied by the EAPI. */ /*@ No description supplied by the EAPI. */
params { params {
@out x: Evas_Coord @optional; @out x: Evas.Coord @optional;
@out y: Evas_Coord @optional; @out y: Evas.Coord @optional;
@out w: Evas_Coord @optional; @out w: Evas.Coord @optional;
@out h: Evas_Coord @optional; @out h: Evas.Coord @optional;
} }
} }
scroll_freeze_pop { scroll_freeze_pop {
@ -668,7 +668,7 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
return: bool; return: bool;
params { params {
@in dir: Elm_Focus_Direction; @in dir: Elm_Focus_Direction;
@out next: Evas_Object *; @out next: Evas.Object *;
} }
} }
translatable_part_text_get @const { translatable_part_text_get @const {
@ -715,7 +715,7 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
/*@ 'Virtual' function handling passing focus to sub-objects. */ /*@ 'Virtual' function handling passing focus to sub-objects. */
params { params {
@in dir: Elm_Focus_Direction; @in dir: Elm_Focus_Direction;
@out next: Evas_Object *; @out next: Evas.Object *;
} }
return: bool; return: bool;
} }
@ -726,7 +726,7 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
@in items: const(list<Eo.Base*>)*; @in items: const(list<Eo.Base*>)*;
@in list_data_get: list_data_get_func_type; @in list_data_get: list_data_get_func_type;
@in dir: Elm_Focus_Direction; @in dir: Elm_Focus_Direction;
@out next: Evas_Object *; @out next: Evas.Object *;
} }
} }
focus_mouse_up_handle { focus_mouse_up_handle {
@ -741,9 +741,9 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
/*@ No description supplied by the EAPI. */ /*@ No description supplied by the EAPI. */
return: bool; return: bool;
params { params {
@in base: const(Evas_Object)*; @in base: const(Evas.Object)*;
@in degree: double; @in degree: double;
@out direction: Evas_Object *; @out direction: Evas.Object *;
@out weight: double; @out weight: double;
} }
} }
@ -771,7 +771,7 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
/*@ 'Virtual' function handling sub objects being removed. */ /*@ 'Virtual' function handling sub objects being removed. */
return: bool; return: bool;
params { params {
@in sobj: Evas_Object *; @in sobj: Evas.Object *;
} }
} }
tooltip_add { tooltip_add {
@ -789,8 +789,8 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte
focus_custom_chain_append { focus_custom_chain_append {
/*@ No description supplied by the EAPI. */ /*@ No description supplied by the EAPI. */
params { params {
@in child: Evas_Object *; @in child: Evas.Object *;
@in relative_child: Evas_Object * @optional; @in relative_child: Evas.Object * @optional;
} }
} }
} }