summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@osg.samsung.com>2016-11-24 15:10:46 +0100
committerStefan Schmidt <stefan@osg.samsung.com>2016-11-24 15:33:10 +0100
commitf9272570c588ebdcd8179efc12f6dc67bb990d73 (patch)
tree6d11cace0192d96f416ef22ed0277c85af9f90ef
parent98e50b0751dd0b426253b76af6b22ccc97e21061 (diff)
downloadefl-f9272570c588ebdcd8179efc12f6dc67bb990d73.tar.gz
docs: elm: fill gaps in config, efl_ui_win and actionslider eo file documentation
-rw-r--r--src/lib/elementary/efl_config_global.eo14
-rw-r--r--src/lib/elementary/efl_ui_win_internal_part.eo1
-rw-r--r--src/lib/elementary/elm_actionslider.eo1
3 files changed, 8 insertions, 8 deletions
diff --git a/src/lib/elementary/efl_config_global.eo b/src/lib/elementary/efl_config_global.eo
index c2b833c1cf..621cc70cd6 100644
--- a/src/lib/elementary/efl_config_global.eo
+++ b/src/lib/elementary/efl_config_global.eo
@@ -25,7 +25,7 @@ class Efl.Config.Global (Efl.Object, Efl.Config)
params {
profile: string @optional; [[The profile name.]]
}
- return: bool;
+ return: bool; [[$true on success, $false otherwise]]
}
@property profile {
[[The profile for the running application.
@@ -41,7 +41,7 @@ class Efl.Config.Global (Efl.Object, Efl.Config)
Elementary applications.
]]
values {
- profile: string;
+ profile: string; [[Profile name]]
}
}
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,
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 {
[[Returns whether a profile exists or not.]]
params {
- profile: string;
+ profile: string; [[Profile name]]
}
- return: bool;
+ return: bool; [[$true if profile exists, $false otherwise]]
}
profile_dir_get {
[[Returns the directory where a profile is stored.]]
params {
- profile: string;
+ profile: string; [[Profile name]]
is_user: bool; [[$true to lookup for a user profile or $false for
a system one.]]
}
- return: own(stringshare);
+ return: own(stringshare); [[Directory of the profile]]
}
profile_derived_add @protected {
[[Add a new profile of the given name to be derived from the current
diff --git a/src/lib/elementary/efl_ui_win_internal_part.eo b/src/lib/elementary/efl_ui_win_internal_part.eo
index 725a991039..4490c5ef8e 100644
--- a/src/lib/elementary/efl_ui_win_internal_part.eo
+++ b/src/lib/elementary/efl_ui_win_internal_part.eo
@@ -1,5 +1,6 @@
class Efl.Ui.Win.Internal.Part (Efl.Object, Efl.Container, Efl.Gfx, Efl.File)
{
+ [[Efl UI window interal part class]]
data: Elm_Part_Data;
implements {
Efl.Object.destructor;
diff --git a/src/lib/elementary/elm_actionslider.eo b/src/lib/elementary/elm_actionslider.eo
index 85f5e1f3af..5c424bfc5a 100644
--- a/src/lib/elementary/elm_actionslider.eo
+++ b/src/lib/elementary/elm_actionslider.eo
@@ -83,5 +83,4 @@ class Elm.Actionslider (Elm.Layout, Efl.Ui.Selectable)
events {
pos_changed; [[The position of the actionslider has changed]]
}
-
}