summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_color_item.eo
blob: a979f76534dfca9d6c6fc275c92584f0b60dc867 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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; }
   }
}