efl/src/lib/elementary/elm_check.eo

36 lines
818 B
Plaintext
Raw Normal View History

class Elm.Check (Elm.Nstate, Elm.Interface_Atspi_Widget_Action)
2014-03-20 01:27:21 -07:00
{
eo_prefix: efl_ui_check;
2015-05-07 09:32:53 -07:00
methods {
@property selected {
2014-03-20 01:27:21 -07:00
set {
[[Set the on/off state of the check object.]]
2014-03-20 01:27:21 -07:00
}
get {
[[Get the state of the check object.]]
2014-03-20 01:27:21 -07:00
}
values {
value: Eina_Bool;
2014-03-20 01:27:21 -07:00
}
}
}
implements {
class.constructor;
Eo.Base.constructor;
Evas.Object_Smart.add;
Elm.Widget.activate;
Elm.Widget.theme_apply;
Elm.Widget.sub_object_del;
Elm.Widget.event;
Elm.Layout.text_aliases.get;
Elm.Nstate.count.set;
Elm.Nstate.value.set;
Elm.Interface_Atspi_Accessible.state_set.get;
Elm.Interface_Atspi_Widget_Action.elm_actions.get;
2014-03-20 01:27:21 -07:00
}
events {
changed;
}
}