docs: elm_scroller: fill gaps in elm_scroller eo file documentation

This commit is contained in:
Stefan Schmidt 2016-11-23 13:23:26 +01:00
parent d172e16e3d
commit 34385d1393
2 changed files with 19 additions and 18 deletions

View File

@ -2,6 +2,7 @@ class Elm.Scroller (Elm.Layout, Elm.Interface_Scrollable,
Elm.Interface.Atspi_Widget_Action, Elm.Interface.Atspi_Widget_Action,
Efl.Ui.Scrollable) Efl.Ui.Scrollable)
{ {
[[Elementary scroller class]]
legacy_prefix: elm_scroller; legacy_prefix: elm_scroller;
eo_prefix: elm_obj_scroller; eo_prefix: elm_obj_scroller;
event_prefix: elm_scroller; event_prefix: elm_scroller;
@ -30,8 +31,8 @@ class Elm.Scroller (Elm.Layout, Elm.Interface_Scrollable,
[[Set custom theme elements for the scroller]] [[Set custom theme elements for the scroller]]
} }
values { values {
klass: string; klass: string; [[Klass name]]
group: string; group: string; [[Group name]]
} }
} }
page_scroll_limit_set @const { page_scroll_limit_set @const {
@ -80,21 +81,20 @@ class Elm.Scroller (Elm.Layout, Elm.Interface_Scrollable,
Efl.Part.part; Efl.Part.part;
} }
events { events {
scroll,page,changed; scroll,page,changed; [[Called when scroll page changed]]
hbar,unpress; hbar,unpress; [[Called when horizontal bar is no longer pressed]]
hbar,press; hbar,press; [[Called when horizontal bar is pressed]]
hbar,drag; hbar,drag; [[Called when horizontal bar is dragged]]
vbar,unpress; vbar,unpress; [[Called when vertical bar is no longer pressed]]
vbar,press; vbar,press; [[Called when vertical bar is pressed]]
vbar,drag; vbar,drag; [[Called when vertical bar is dragged]]
scroll,left; scroll,left; [[Called when scrolling to left]]
scroll,right; scroll,right; [[Called when scrolling to right]]
scroll,up; scroll,up; [[Called scrolled upwards]]
scroll,down; scroll,down; [[Called when scrolled downwards]]
edge,left; edge,left; [[Called when hitting the left edge]]
edge,right; edge,right; [[Called when hitting the right edge]]
edge,top; edge,top; [[Called when hitting the top edge]]
edge,bottom; edge,bottom; [[Called when hitting the bottom edge]]
} }
} }

View File

@ -1,5 +1,6 @@
class Elm.Scroller.Internal.Part (Elm.Layout.Internal.Part) class Elm.Scroller.Internal.Part (Elm.Layout.Internal.Part)
{ {
[[Elementary scroller internal part class]]
data: null; data: null;
implements { implements {
Efl.Container.content.set; Efl.Container.content.set;