diff options
author | Mike Blumenkrantz <zmike@samsung.com> | 2019-03-05 17:00:37 -0500 |
---|---|---|
committer | Cedric BAIL <cedric.bail@free.fr> | 2019-03-07 14:15:16 -0800 |
commit | bb3e70352395192ff86e9ee0953dd3c0e291009e (patch) | |
tree | 622b2522fffdcadcabf3a84c95001ad0d41523d9 /src/lib/elementary/elm_flipselector_item.eo | |
parent | a156cc22898b504fce84964bc90137675d03d61b (diff) | |
download | efl-bb3e70352395192ff86e9ee0953dd3c0e291009e.tar.gz |
elm_flipselector*: remove all legacy usage from eo files
this takes the current generated output from eolian for legacy code in
efl and adds it to the tree, then removes legacy references from the
corresponding eo files. in the case where the entire eo file was for
a legacy object, that eo file has been removed from the tree
ref T7724
Reviewed-by: Cedric BAIL <cedric.bail@free.fr>
Differential Revision: https://phab.enlightenment.org/D8168
Diffstat (limited to 'src/lib/elementary/elm_flipselector_item.eo')
-rw-r--r-- | src/lib/elementary/elm_flipselector_item.eo | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/src/lib/elementary/elm_flipselector_item.eo b/src/lib/elementary/elm_flipselector_item.eo deleted file mode 100644 index 9710ebe354..0000000000 --- a/src/lib/elementary/elm_flipselector_item.eo +++ /dev/null @@ -1,55 +0,0 @@ -class Elm.Flipselector.Item extends Elm.Widget.Item -{ - [[Elementary flipselector item class]] - legacy_prefix: elm_flipselector_item; - eo_prefix: elm_obj_flipselector_item; - methods { - @property selected { - get { - [[Get whether a given flip selector widget's item is the currently - selected one. - - See also @.selected.set. - ]] - } - set { - [[Set whether a given flip selector widget's item should be the - currently selected one. - - This sets whether $item is or not the selected (thus, under - display) one. If $item is different than the one under display, - the latter will be unselected. If the $item is set to be - unselected, on the other hand, the first item in the widget's - internal members list will be the new selected one. - - See also @.selected.get. - ]] - } - values { - selected: bool; [[$true if selected, $false otherwise.]] - } - } - prev_get @const { - [[Get the item before $item in a flip selector widget's internal list of - items. - - See also @.next_get. - ]] - return: Elm.Widget.Item; [[The item before the $item, in its parent's list. If there is no previous item for $item or there's an error, $null is returned.]] - } - next_get @const { - [[Get the item after $item in a flip selector widget's - internal list of items. - - See also @.prev_get. - ]] - return: Elm.Widget.Item; [[The item after the $item, in its parent's list. If there is no next item for $item or there's an error, $null is returned.]] - } - } - implements { - Efl.Object.constructor; - Efl.Object.destructor; - Elm.Widget.Item.signal_emit; - Elm.Widget.Item.part_text { get; set; } - } -} |