docs: elm: fill gaps in separator, view_form and view_list eo file documentation

This commit is contained in:
Stefan Schmidt 2016-11-24 15:13:04 +01:00
parent a7b2b6fdc0
commit 0d930b3c7d
3 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,6 @@
class Elm.Separator (Elm.Layout, Efl.Orientation) class Elm.Separator (Elm.Layout, Efl.Orientation)
{ {
[[Elementary separator class]]
legacy_prefix: elm_separator; legacy_prefix: elm_separator;
eo_prefix: elm_obj_separator; eo_prefix: elm_obj_separator;
implements { implements {
@ -12,5 +13,4 @@ class Elm.Separator (Elm.Layout, Efl.Orientation)
Efl.Orientation.orientation; Efl.Orientation.orientation;
Elm.Layout.sizing_eval; Elm.Layout.sizing_eval;
} }
} }

View File

@ -1,5 +1,6 @@
class Elm.View.Form (Efl.Object) class Elm.View.Form (Efl.Object)
{ {
[[Elementary view form class]]
methods { methods {
model_set { model_set {
[[Set model [[Set model

View File

@ -2,6 +2,7 @@ import elm_genlist_item;
class Elm.View.List (Efl.Object) class Elm.View.List (Efl.Object)
{ {
[[Elementary view list class]]
methods { methods {
genlist_set { genlist_set {
[[Constructor wrapper [[Constructor wrapper
@ -60,9 +61,8 @@ class Elm.View.List (Efl.Object)
} }
/* For some reason the following comment after the event doesn't work: Event dispatch when a model is selected */ /* For some reason the following comment after the event doesn't work: Event dispatch when a model is selected */
events { events {
model,selected; model,selected; [[Called when model was selected]]
} }
implements { implements {
Efl.Object.destructor; Efl.Object.destructor;
} }