Changeset View
Changeset View
Standalone View
Standalone View
src/lib/elementary/elm_colorselector.eo
1 | enum Elm.Colorselector.Mode | 1 | enum Elm.Colorselector.Mode | ||
---|---|---|---|---|---|
2 | { | 2 | { | ||
3 | [[Different modes supported by Colorselector | 3 | [[Different modes supported by Colorselector | ||
4 | 4 | | |||
5 | See also @Elm.Colorselector.mode.set, @Elm.Colorselector.mode.get. | 5 | See also @Elm.Colorselector.mode.set, @Elm.Colorselector.mode.get. | ||
6 | ]] | 6 | ]] | ||
7 | legacy: elm_colorselector; | 7 | legacy: elm_colorselector; | ||
8 | palette = 0, [[Only color palette is displayed.]] | 8 | palette = 0, [[Only color palette is displayed.]] | ||
9 | components, [[Only color selector is displayed.]] | 9 | components, [[Only color selector is displayed.]] | ||
10 | both, [[Both Palette and selector is displayed, default.]] | 10 | both, [[Both Palette and selector is displayed, default.]] | ||
11 | picker, [[Only color picker is displayed.]] | 11 | picker, [[Only color picker is displayed.]] | ||
12 | all [[All possible color selector is displayed.]] | 12 | all [[All possible color selector is displayed.]] | ||
13 | } | 13 | } | ||
14 | 14 | | |||
15 | class Elm.Colorselector (Efl.Ui.Layout, Efl.Ui.Focus.Composition, | 15 | class Elm.Colorselector (Efl.Ui.Layout, Efl.Ui.Focus.Composition, | ||
16 | Efl.Access.Widget.Action, Efl.Ui.Clickable, Efl.Ui.Legacy) | 16 | Efl.Access.Widget_Action, Efl.Ui.Clickable, Efl.Ui.Legacy) | ||
17 | { | 17 | { | ||
18 | [[Elementary colorselector class]] | 18 | [[Elementary colorselector class]] | ||
19 | legacy_prefix: elm_colorselector; | 19 | legacy_prefix: elm_colorselector; | ||
20 | eo_prefix: elm_obj_colorselector; | 20 | eo_prefix: elm_obj_colorselector; | ||
21 | event_prefix: elm_colorselector; | 21 | event_prefix: elm_colorselector; | ||
22 | methods { | 22 | methods { | ||
23 | @property picked_color { | 23 | @property picked_color { | ||
24 | set { | 24 | set { | ||
▲ Show 20 Lines • Show All 84 Lines • ▼ Show 20 Line(s) | |||||
109 | } | 109 | } | ||
110 | implements { | 110 | implements { | ||
111 | class.constructor; | 111 | class.constructor; | ||
112 | Efl.Object.constructor; | 112 | Efl.Object.constructor; | ||
113 | Efl.Ui.Widget.theme_apply; | 113 | Efl.Ui.Widget.theme_apply; | ||
114 | Efl.Ui.Widget.focus_highlight_geometry { get; } | 114 | Efl.Ui.Widget.focus_highlight_geometry { get; } | ||
115 | Efl.Ui.Widget.on_access_update; | 115 | Efl.Ui.Widget.on_access_update; | ||
116 | Efl.Ui.Widget.widget_event; | 116 | Efl.Ui.Widget.widget_event; | ||
117 | Efl.Access.Widget.Action.elm_actions { get; } | 117 | Efl.Access.Widget_Action.elm_actions { get; } | ||
118 | Efl.Access.Object.access_children { get; } | 118 | Efl.Access.Object.access_children { get; } | ||
119 | } | 119 | } | ||
120 | events { | 120 | events { | ||
121 | color,item,selected: Efl.Object; [[Called when color item was selected]] | 121 | color,item,selected: Efl.Object; [[Called when color item was selected]] | ||
122 | color,item,longpressed: Efl.Object; [[Called when color item got a long press]] | 122 | color,item,longpressed: Efl.Object; [[Called when color item got a long press]] | ||
123 | changed: void; [[Called when colorselector changed]] | 123 | changed: void; [[Called when colorselector changed]] | ||
124 | changed,user: void; [[Called when the object changed due to user interaction]] | 124 | changed,user: void; [[Called when the object changed due to user interaction]] | ||
125 | } | 125 | } | ||
126 | } | 126 | } |