docs: elm: fill gaps in button, color, combobox and conformant eo file documentation

This commit is contained in:
Stefan Schmidt 2016-11-24 15:12:20 +01:00
parent f9272570c5
commit a7b2b6fdc0
4 changed files with 19 additions and 16 deletions

View File

@ -1,5 +1,6 @@
class Elm.Button.Internal.Part (Elm.Layout.Internal.Part)
{
[[Elementary button internal part class]]
data: null;
implements {
Efl.Container.content.set;

View File

@ -1,5 +1,6 @@
class Elm.Color.Item(Elm.Widget.Item)
{
[[Elementary color item class]]
legacy_prefix: elm_color_item;
eo_prefix: elm_obj_color_item;
methods {
@ -11,10 +12,10 @@ class Elm.Color.Item(Elm.Widget.Item)
[[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]]
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 {

View File

@ -2,6 +2,7 @@ class Elm.Combobox (Elm.Button, Efl.Ui.Selectable,
Elm.Interface.Atspi_Widget_Action,
Elm.Entry, Elm.Genlist, Elm.Hover)
{
[[Elementary combobox class]]
legacy_prefix: elm_combobox;
eo_prefix: elm_obj_combobox;
event_prefix: elm_combobox;
@ -15,7 +16,7 @@ class Elm.Combobox (Elm.Button, Efl.Ui.Selectable,
@since 1.17
]]
return: bool;
return: bool; [[$true if combobox is expenaded, $false otherwise]]
}
}
hover_begin {
@ -50,11 +51,11 @@ class Elm.Combobox (Elm.Button, Efl.Ui.Selectable,
Elm.Interface.Atspi_Widget_Action.elm_actions.get;
}
events {
dismissed;
expanded;
clicked;
item,selected;
item,pressed;
filter,done;
dismissed; [[Called when combobox was dismissed]]
expanded; [[Called when combobox was expanded]]
clicked; [[Called when combobox was clicked]]
item,selected; [[Called when combobox item was selected]]
item,pressed; [[Called when combobox item was pressed]]
filter,done; [[Called when combobox filter was done]]
}
}

View File

@ -1,5 +1,6 @@
class Elm.Conformant (Elm.Layout)
{
[[Elementary conformant class]]
legacy_prefix: elm_conformant;
eo_prefix: elm_obj_conformant;
event_prefix: elm_conformant;
@ -13,10 +14,9 @@ class Elm.Conformant (Elm.Layout)
Elm.Layout.content_aliases.get;
}
events {
virtualkeypad,state,on;
virtualkeypad,state,off;
clipboard,state,on;
clipboard,state,off;
virtualkeypad,state,on; [[Called when virtualkeypad was enabled]]
virtualkeypad,state,off; [[Called when virtualkeypad was disabled]]
clipboard,state,on; [[Called when clipboard was enabled]]
clipboard,state,off; [[Called when clipboard was disabled]]
}
}