efl/src/lib/elementary/efl_ui_list_view.eo

18 lines
656 B
Plaintext
Raw Normal View History

class @beta Efl.Ui.List_View extends Efl.Ui.Collection_View
2017-12-12 16:59:48 -08:00
{
[[A scrollable list of @Efl.Ui.Item objects, typically @Efl.Ui.List_Default_Item objects.
2017-12-12 16:59:48 -08:00
Items are added asynchronously by an @Efl.Ui.Factory from the definition of an @Efl.Model.
2017-12-12 16:59:48 -08:00
The orientation (vertical or horizontal) of the list can be set with
@Efl.Ui.Layout_Orientable.orientation.
2017-12-12 16:59:48 -08:00
Items inside this widget can be selected according to the @Efl.Ui.Multi_Selectable.select_mode
policy, and the selection can be retrieved with @Efl.Ui.Multi_Selectable_Index_Range.selected_ndx_iterator_new.
]]
data: null;
implements {
Efl.Object.constructor;
2017-12-12 16:59:48 -08:00
}
}