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

48 lines
1.0 KiB
Plaintext
Raw Normal View History

2014-03-16 04:32:53 -07:00
class Elm_Container (Elm_Widget)
{
legacy_prefix: null;
2014-03-16 04:32:53 -07:00
eo_prefix: elm_obj_container;
data: null;
properties {
content_swallow_list {
get {
/*@ No description supplied by the EAPI. */
}
values {
Eina_List *ret; /*@ Eina_List */
}
}
}
methods {
content_set {
/*@ No description supplied by the EAPI. */
params {
@in const(char)* name;
2014-03-16 04:32:53 -07:00
@in Evas_Object *content;
}
return: bool;
2014-03-16 04:32:53 -07:00
}
content_get {
/*@ No description supplied by the EAPI. */
params {
@in const(char)* name;
2014-03-16 04:32:53 -07:00
}
return: Evas_Object *;
2014-03-16 04:32:53 -07:00
}
content_unset {
/*@ No description supplied by the EAPI. */
params {
@in const(char)* name;
2014-03-16 04:32:53 -07:00
}
return: Evas_Object *;
2014-03-16 04:32:53 -07:00
}
}
implements {
virtual.content_set;
virtual.content_unset;
virtual.content_get;
virtual.content_swallow_list.get;
2014-03-16 04:32:53 -07:00
}
}