efl/src/lib/elementary/elm_color_item.eo

52 lines
1.3 KiB
Plaintext

class Elm.Color.Item(Elm.Widget.Item, Efl.Ui.Focus.Object, Efl.Access.Widget.Action)
{
[[Elementary color item class]]
legacy_prefix: elm_color_item;
eo_prefix: elm_obj_color_item;
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
@since 1.9
]]
}
set {
[[Set the selected state of color palette item
@since 1.9
]]
}
values {
selected: bool; [[$true if selected $false otherwise]]
}
}
}
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; }
Efl.Access.name { get; }
Efl.Access.Widget.Action.elm_actions { get; }
}
}