summaryrefslogtreecommitdiff
path: root/src/lib/efl/interfaces/efl_ui_item.eo
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/efl/interfaces/efl_ui_item.eo')
-rw-r--r--src/lib/efl/interfaces/efl_ui_item.eo54
1 files changed, 0 insertions, 54 deletions
diff --git a/src/lib/efl/interfaces/efl_ui_item.eo b/src/lib/efl/interfaces/efl_ui_item.eo
deleted file mode 100644
index 49ef31b6d5..0000000000
--- a/src/lib/efl/interfaces/efl_ui_item.eo
+++ /dev/null
@@ -1,54 +0,0 @@
-interface Efl.Ui.Item {
- [[Efl UI item interface]]
- legacy_prefix: null;
- methods {
- @property prev {
- get {
- [[Get the item before this one in the widget's list of items.
-
- See also @.next.
- ]]
- }
- values {
- item: Efl.Ui.Item; [[The item before the object in its parent's
- list. If there is no previous item or in case
- of error, $null is returned.]]
- }
- }
- @property next {
- get {
- [[Get the item after this one in the widget's list of items.
-
- See also @.prev.
- ]]
- }
- values {
- item: Efl.Ui.Item; [[The item after the object in its parent's
- list. If there is no next item or in case
- of error, $null is returned.]]
- }
- }
- @property selected {
- [[Indicates whether this item is currently selected.]]
- get {
- [[Get the selected state of this item.]]
- }
- set {
- [[Set the selected state of $item.
-
- This sets the selected state of the given item $it.
- $true for selected, $false for not selected.
-
- If a new item is selected the previously selected will
- be unselected. Previously selected item can be retrieved
- with @Efl.Ui.Menu.selected_item.get.
-
- Selected items will be highlighted.
- ]]
- }
- values {
- selected: bool; [[The selection state.]]
- }
- }
- }
-}