docs: elm_list: fill gaps in elm_list eo file documentation

This commit is contained in:
Stefan Schmidt 2016-11-21 09:30:47 +01:00
parent ba0d73cd77
commit 7b599fb5a3
2 changed files with 15 additions and 15 deletions

View File

@ -40,6 +40,7 @@ class Elm.List (Elm.Layout, Elm.Interface_Scrollable,
Elm.Interface.Atspi_Widget_Action, Elm.Interface.Atspi.Selection,
Efl.Ui.Clickable, Efl.Ui.Selectable)
{
[[Elementary list class]]
legacy_prefix: elm_list;
eo_prefix: elm_obj_list;
event_prefix: elm_list;
@ -93,7 +94,7 @@ class Elm.List (Elm.Layout, Elm.Interface_Scrollable,
get {
}
values {
enabled: bool; [[The tree effect status (true = enabled, false = disabled)]]
enabled: bool; [[The tree effect status ($true = enabled, $false = disabled)]]
}
}
@property multi_select {
@ -462,18 +463,17 @@ class Elm.List (Elm.Layout, Elm.Interface_Scrollable,
Elm.Interface.Atspi.Selection.clear;
}
events {
activated;
edge,top;
edge,bottom;
edge,left;
edge,right;
swipe;
highlighted;
unhighlighted;
item,focused;
item,unfocused;
item,reorder,anim,start;
item,reorder,anim,stop;
activated; [[Called when activated]]
edge,top; [[Called when top edge was reached]]
edge,bottom; [[Called when bottom edge was reached]]
edge,left; [[Called when left edge was reached]]
edge,right; [[Called when right edge was reached]]
swipe; [[Called when swipe is detected]]
highlighted; [[Called when highlighted]]
unhighlighted; [[Called when no longer highlighted]]
item,focused; [[Called when item got focus]]
item,unfocused; [[Called when item no longer has focus]]
item,reorder,anim,start; [[Called when item reorder animation started]]
item,reorder,anim,stop; [[Called when item reorder animation stopped]]
}
}

View File

@ -1,5 +1,6 @@
class Elm.List.Item(Elm.Widget.Item)
{
[[Elementary list item class]]
legacy_prefix: elm_list_item;
eo_prefix: elm_obj_list_item;
methods {
@ -121,4 +122,3 @@ class Elm.List.Item(Elm.Widget.Item)
Elm.Interface.Atspi_Accessible.state_set.get;
}
}