efl/src/lib/elementary/efl_ui_check.eo

35 lines
1019 B
Plaintext

class Efl.Ui.Check (Efl.Ui.Nstate, Efl.Access.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.
]]
legacy_prefix: elm_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 {
Efl.Object.constructor;
Efl.Ui.Widget.on_access_activate;
Efl.Ui.Widget.theme_apply;
Efl.Ui.Widget.widget_sub_object_del;
Efl.Ui.Widget.widget_event;
Efl.Ui.Nstate.count { set; }
Efl.Ui.Nstate.value { set; }
Efl.Access.state_set { get; }
Efl.Access.Widget.Action.elm_actions { get; }
}
}