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

59 lines
1.6 KiB
Plaintext
Raw Normal View History

class Elm.Ctxpopup_Item(Elm.Widget_Item)
2014-09-27 22:14:47 -07:00
{
eo_prefix: elm_obj_ctxpopup_item;
2015-05-07 09:32:53 -07:00
methods {
@property prev {
2014-09-27 22:14:47 -07:00
get {
/*@
Get the item before @p it in a ctxpopup widget's internal list of
items.
@see elm_ctxpopup_item_next_get()
@since 1.11
@ingroup Ctxpopup
*/
}
values {
item: Elm_Object_Item *; /*@ The item before the object in its parent's list. If there is no
2014-09-27 22:14:47 -07:00
previous item for @p it or there's an error, @c NULL is returned. */
}
}
2015-05-07 09:32:53 -07:00
@property next {
2014-09-27 22:14:47 -07:00
get {
/*@
Get the item after @p it in a ctxpopup widget's
internal list of items.
@see elm_ctxpopup_item_prev_get()
@since 1.11
@ingroup Ctxpopup
*/
}
values {
item: Elm_Object_Item *; /*@ The item after the object in its parent's list. If there is no
2014-09-27 22:14:47 -07:00
previous item for @p it or there's an error, @c NULL is returned. */
}
}
init {
params {
func: Evas_Smart_Cb @nullable;
data: const(void) * @optional;
2014-09-27 22:14:47 -07:00
}
}
}
implements {
Eo.Base.constructor;
Eo.Base.destructor;
Elm.Widget_Item.disable;
Elm.Widget_Item.signal_emit;
Elm.Widget_Item.part_text.get;
Elm.Widget_Item.part_text.set;
Elm.Widget_Item.part_content.get;
Elm.Widget_Item.part_content.set;
Elm.Widget_Item.focus.set;
Elm.Widget_Item.focus.get;
2014-09-27 22:14:47 -07:00
}
}