efl/legacy/elementary/src/lib/elm_hoversel_item.eo

43 lines
1.3 KiB
Plaintext

class Elm.Hoversel_Item(Elm.Widget_Item)
{
eo_prefix: elm_obj_hoversel_item;
methods {
@property icon {
get {
/*@
@brief This sets the icon for the given hoversel item.
The icon can be loaded from the standard set, from an image file, or from
an edje file.
@see elm_hoversel_item_add()
@ingroup Hoversel
*/
}
set {
/*@
@brief Get the icon object of the hoversel item.
@see elm_hoversel_item_add()
@ingroup Hoversel
*/
}
values {
const (char) *icon_file @nullable; /*@ An image file path on disk to use for the icon or standard icon name */
const (char) *icon_group @nullable; /*@ The edje group to use if @p icon_file is an edje file. Set this to NULL if the icon is not an edje file */
Elm_Icon_Type icon_type; /*@ The icon type */
}
}
}
implements {
Eo.Base.constructor;
Eo.Base.destructor;
Elm.Widget_Item.signal_emit;
Elm.Widget_Item.part_text.get;
Elm.Widget_Item.style.get;
Elm.Widget_Item.style.set;
}
}