efl/src/lib/elementary/elm_color_item.eo

52 lines
1.4 KiB
Plaintext
Raw Normal View History

class Elm.Color.Item(Elm.Widget.Item, Efl.Ui.Focus.Object, Efl.Access.Widget.Action)
2014-09-27 22:13:38 -07:00
{
[[Elementary color item class]]
legacy_prefix: elm_color_item;
2014-09-27 22:13:38 -07:00
eo_prefix: elm_obj_color_item;
2015-05-07 09:32:53 -07:00
methods {
@property color {
get {
[[Get Palette item's color.]]
}
set {
[[Set Palette item's color.]]
}
values {
r: int; [[Red-value of color]]
g: int; [[Green-value of color]]
b: int; [[Blue-value of color]]
a: int; [[Alpha-value of color]]
}
}
@property selected {
get {
[[Get the selected state of color palette item
2014-09-27 22:13:38 -07:00
@since 1.9
]]
}
set {
[[Set the selected state of color palette item
2014-09-27 22:13:38 -07:00
@since 1.9
]]
}
values {
selected: bool; [[$true if selected $false otherwise]]
}
}
2014-09-27 22:13:38 -07:00
}
implements {
Efl.Object.constructor;
Efl.Object.destructor;
Elm.Widget.Item.access_register;
Elm.Widget.Item.signal_emit;
Elm.Widget.Item.focus { get; set; }
Efl.Ui.Focus.Object.focus { set; }
Efl.Ui.Focus.Object.focus_geometry { get; }
Efl.Access.state_set { get; }
2018-02-14 18:14:52 -08:00
Efl.Access.i18n_name { get; }
Efl.Access.Widget.Action.elm_actions { get; }
2014-09-27 22:13:38 -07:00
}
}