docs: elm: fill gaps in config, efl_ui_win and actionslider eo file documentation

This commit is contained in:
Stefan Schmidt 2016-11-24 15:10:46 +01:00
parent 98e50b0751
commit f9272570c5
3 changed files with 8 additions and 8 deletions

View File

@ -25,7 +25,7 @@ class Efl.Config.Global (Efl.Object, Efl.Config)
params { params {
profile: string @optional; [[The profile name.]] profile: string @optional; [[The profile name.]]
} }
return: bool; return: bool; [[$true on success, $false otherwise]]
} }
@property profile { @property profile {
[[The profile for the running application. [[The profile for the running application.
@ -41,7 +41,7 @@ class Efl.Config.Global (Efl.Object, Efl.Config)
Elementary applications. Elementary applications.
]] ]]
values { values {
profile: string; profile: string; [[Profile name]]
} }
} }
profile_iterate { profile_iterate {
@ -50,23 +50,23 @@ class Efl.Config.Global (Efl.Object, Efl.Config)
hidden: bool @optional; [[If $true, gets the full list of profiles, hidden: bool @optional; [[If $true, gets the full list of profiles,
including those stored in hidden files.]] including those stored in hidden files.]]
} }
return: free(own(iterator<string>), eina_iterator_free); return: free(own(iterator<string>), eina_iterator_free); [[Iterator to profiles]]
} }
profile_exists { profile_exists {
[[Returns whether a profile exists or not.]] [[Returns whether a profile exists or not.]]
params { params {
profile: string; profile: string; [[Profile name]]
} }
return: bool; return: bool; [[$true if profile exists, $false otherwise]]
} }
profile_dir_get { profile_dir_get {
[[Returns the directory where a profile is stored.]] [[Returns the directory where a profile is stored.]]
params { params {
profile: string; profile: string; [[Profile name]]
is_user: bool; [[$true to lookup for a user profile or $false for is_user: bool; [[$true to lookup for a user profile or $false for
a system one.]] a system one.]]
} }
return: own(stringshare); return: own(stringshare); [[Directory of the profile]]
} }
profile_derived_add @protected { profile_derived_add @protected {
[[Add a new profile of the given name to be derived from the current [[Add a new profile of the given name to be derived from the current

View File

@ -1,5 +1,6 @@
class Efl.Ui.Win.Internal.Part (Efl.Object, Efl.Container, Efl.Gfx, Efl.File) class Efl.Ui.Win.Internal.Part (Efl.Object, Efl.Container, Efl.Gfx, Efl.File)
{ {
[[Efl UI window interal part class]]
data: Elm_Part_Data; data: Elm_Part_Data;
implements { implements {
Efl.Object.destructor; Efl.Object.destructor;

View File

@ -83,5 +83,4 @@ class Elm.Actionslider (Elm.Layout, Efl.Ui.Selectable)
events { events {
pos_changed; [[The position of the actionslider has changed]] pos_changed; [[The position of the actionslider has changed]]
} }
} }