diff --git a/legacy/elementary/src/lib/elm_widget.eo b/legacy/elementary/src/lib/elm_widget.eo index 0bde07e6e5..65d23c23a8 100644 --- a/legacy/elementary/src/lib/elm_widget.eo +++ b/legacy/elementary/src/lib/elm_widget.eo @@ -140,12 +140,15 @@ abstract Elm.Widget (Evas.Object_Smart, Elm_Interface_Atspi_Accessible, Elm_Inte @property focus_custom_chain { set { /*@ No description supplied by the EAPI. */ + values { + objs: list*; + } } get { /*@ No description supplied by the EAPI. */ - } - values { - objs: list * @const_get; + values { + objs: const(list)*; + } } } @property can_focus { diff --git a/legacy/elementary/src/lib/elm_win.eo b/legacy/elementary/src/lib/elm_win.eo index aeacb5fcab..ed3d0e808d 100644 --- a/legacy/elementary/src/lib/elm_win.eo +++ b/legacy/elementary/src/lib/elm_win.eo @@ -294,6 +294,10 @@ class Elm.Win (Elm.Widget, Elm_Interface_Atspi_Window, ingroup Win @since 1.9 */ legacy: elm_win_wm_rotation_available_rotations_set; + values { + rotations: const(int)*; /*@ The array of rotation value. */ + count: uint; /*@ The size of the @param rotations array. */ + } } get { /*@ @@ -306,12 +310,12 @@ class Elm.Win (Elm.Widget, Elm_Interface_Atspi_Window, ingroup Win @since 1.9 */ legacy: elm_win_wm_rotation_available_rotations_get; + values { + rotations: int*; /*@ The array of rotation value. */ + count: uint; /*@ The size of the @param rotations array. */ + } return: bool; } - values { - rotations: int * @const_set; /*@ The array of rotation value. */ - count: uint; /*@ The size of the @param rotations array. */ - } } @property quickpanel_zone { set { @@ -536,6 +540,10 @@ class Elm.Win (Elm.Widget, Elm_Interface_Atspi_Window, @ingroup Win @since 1.8 */ + values { + profiles: const(char)**; /*@ The string array of available profiles */ + count: uint; /*@ The number of members in profiles */ + } } get { /*@ @@ -545,12 +553,12 @@ class Elm.Win (Elm.Widget, Elm_Interface_Atspi_Window, @ingroup Win @since 1.8 */ + values { + profiles: char**; /*@ The string array of available profiles */ + count: uint; /*@ The number of members in profiles */ + } return: bool; } - values { - profiles: char ** @const_set; /*@ The string array of available profiles */ - count: uint; /*@ The number of members in profiles */ - } } @property focus_highlight_enabled { set { @@ -701,6 +709,9 @@ class Elm.Win (Elm.Widget, Elm_Interface_Atspi_Window, @endcode @ingroup Win */ + values { + icon: Evas_Object* @nullable; /*@ The Evas image object to use for an icon */ + } } get { /*@ @@ -712,9 +723,9 @@ class Elm.Win (Elm.Widget, Elm_Interface_Atspi_Window, @return The icon object set @ingroup Win */ - } - values { - icon: Evas_Object * @const_get @nullable; /*@ The Evas image object to use for an icon */ + values { + icon: const(Evas_Object)* @nullable; /*@ The Evas image object to use for an icon */ + } } } @property quickpanel_priority_minor {