class Elm.Check (Elm.Nstate, Elm.Interface_Atspi_Widget_Action) { [[Check widget The check widget allows for toggling a value between true and false. Check objects are a lot like radio objects in layout and functionality, except they do not work as a group, but independently, and only toggle the value of a boolean between false and true. ]] eo_prefix: efl_ui_check; methods { @property selected { [[The on/off state of the check object.]] set { } get { } values { value: bool; [[$true if the check object is selected, $false otherwise]] } } } 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; } events { changed; [[This is called whenever the user changes the state of the check objects (event_info is always NULL).]] } }