efl/src/lib/elementary/efl_ui_list_empty_item.eo

22 lines
751 B
Plaintext

class @beta Efl.Ui.List_Empty_Item extends Efl.Ui.List_Item implements Efl.Content
{
[[List Empty Item class. This item have only one swallow space,
thus user can decorate item by filling the swallow with
any kind of container.]]
data: null;
parts {
content: Efl.Ui.Item_Part_Content; [[the content part for list empty item.
the content part is empty slot for user customizing.
fill the place with container widget such as layout, box, table.]]
}
implements {
//Efl.Object
Efl.Object.finalize;
Efl.Object.destructor;
Efl.Content.content { get; set; }
Efl.Content.content_unset;
Efl.Part.part_get;
}
}