efl/src/lib/elementary/elm_scroller.eo

79 lines
2.9 KiB
Plaintext
Raw Normal View History

class Elm.Scroller extends Efl.Ui.Layout_Base implements Elm.Interface_Scrollable,
Efl.Access.Widget.Action,
Efl.Ui.Scrollable, Efl.Content, Efl.Ui.Legacy
2014-03-26 01:54:49 -07:00
{
[[Elementary scroller class]]
legacy_prefix: elm_scroller;
2014-03-26 01:54:49 -07:00
eo_prefix: elm_obj_scroller;
event_prefix: elm_scroller;
2015-05-07 09:32:53 -07:00
methods {
@property custom_widget_base_theme {
2014-03-26 01:54:49 -07:00
set {
2015-07-03 07:12:48 -07:00
[[Set custom theme elements for the scroller]]
2014-03-26 01:54:49 -07:00
}
values {
klass: string; [[Klass name]]
group: string; [[Group name]]
2014-03-26 01:54:49 -07:00
}
}
2014-07-22 09:13:52 -07:00
page_scroll_limit_set @const {
2015-07-03 07:12:48 -07:00
[[Set the maximum of the movable page at a flicking.
2014-03-26 01:54:49 -07:00
2015-07-03 07:12:48 -07:00
The value of maximum movable page should be more than 1.
2014-03-26 01:54:49 -07:00
2015-07-03 07:12:48 -07:00
@since 1.8
]]
2014-03-26 01:54:49 -07:00
params {
2015-07-03 07:12:48 -07:00
@in page_limit_h: int; [[The maximum of the movable horizontal page]]
@in page_limit_v: int; [[The maximum of the movable vertical page]]
2014-03-26 01:54:49 -07:00
}
}
2014-07-22 09:13:52 -07:00
page_scroll_limit_get @const {
2015-07-03 07:12:48 -07:00
[[Get the maximum of the movable page at a flicking.
2014-03-26 01:54:49 -07:00
2015-07-03 07:12:48 -07:00
@since 1.8
]]
2014-03-26 01:54:49 -07:00
params {
@in page_limit_h: ptr(int); [[The maximum of the movable horizontal page]]
@in page_limit_v: ptr(int); [[The maximum of the movable vertical page]]
2014-03-26 01:54:49 -07:00
}
}
}
implements {
class.constructor;
Efl.Object.constructor;
Efl.Gfx.Entity.position { set; }
Efl.Gfx.Entity.size { set; }
Efl.Canvas.Group.group_member_add;
Efl.Content.content { get; set; }
Efl.Content.content_unset;
Efl.Ui.Widget.theme_apply;
Efl.Ui.Widget.on_access_activate;
Efl.Ui.Widget.widget_sub_object_del;
Efl.Ui.Widget.widget_input_event_handler;
Elm.Interface_Scrollable.page_size { set; }
Elm.Interface_Scrollable.policy { set; }
Elm.Interface_Scrollable.single_direction { get; set; }
Efl.Access.Widget.Action.elm_actions { get; }
Efl.Part.part_get;
Efl.Ui.Widget.focus_state_apply;
2014-03-26 01:54:49 -07:00
}
events {
scroll,page,changed: void; [[Called when scroll page changed]]
hbar,unpress: void; [[Called when horizontal bar is no longer pressed]]
hbar,press: void; [[Called when horizontal bar is pressed]]
hbar,drag: void; [[Called when horizontal bar is dragged]]
vbar,unpress: void; [[Called when vertical bar is no longer pressed]]
vbar,press: void; [[Called when vertical bar is pressed]]
vbar,drag: void; [[Called when vertical bar is dragged]]
scroll,left: void; [[Called when scrolling to left]]
scroll,right: void; [[Called when scrolling to right]]
scroll,up: void; [[Called scrolled upwards]]
scroll,down: void; [[Called when scrolled downwards]]
edge,left: void; [[Called when hitting the left edge]]
edge,right: void; [[Called when hitting the right edge]]
edge,top: void; [[Called when hitting the top edge]]
edge,bottom: void; [[Called when hitting the bottom edge]]
2014-03-26 01:54:49 -07:00
}
}