diff options
author | Xavi Artigas <xavierartigas@yahoo.es> | 2019-03-28 16:12:27 +0000 |
---|---|---|
committer | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2019-03-29 12:35:51 +0100 |
commit | 291ab9a671bf66ab784972e0f85bef3e94546831 (patch) | |
tree | bbbefc21742c52693f9e4555f57dc5a4e5c48622 /src | |
parent | 01fccf6a8731424d2c0148622764e0f976b93fad (diff) | |
download | efl-291ab9a671bf66ab784972e0f85bef3e94546831.tar.gz |
docs: Efl.Ui.Layout_Base update theme docs
If docs are present at property and set/get levels only one is used.
Ref T7717
Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de>
Differential Revision: https://phab.enlightenment.org/D8494
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/elementary/efl_ui_layout_base.eo | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/src/lib/elementary/efl_ui_layout_base.eo b/src/lib/elementary/efl_ui_layout_base.eo index 331a149fa8..6efea7b274 100644 --- a/src/lib/elementary/efl_ui_layout_base.eo +++ b/src/lib/elementary/efl_ui_layout_base.eo @@ -23,22 +23,19 @@ abstract Efl.Ui.Layout_Base extends Efl.Ui.Widget implements Efl.Container, Widgets that inherit from this class will call this function automatically so it should not be called by applications, unless you are dealing directly with a @Efl.Ui.Layout object. + + Note that $style will be the new style of this object, as retrieved by + @Efl.Ui.Widget.style. As a consequence this function can only be + called during construction of the object, before finalize. + + If this returns $false the widget is very likely to become non-functioning. ]] set { - [[Sets the edje group from the elementary theme that will be used - as layout. Note that $style will be the new style of this object, - as in an @Efl.Ui.Widget.style. As a consequence this function can - only be called during construction of the object, before finalize. - - If this returns $false the widget is very likely to become - non-functioning. - ]] return: Eina.Error; [[Whether the style was successfully applied or not, see the values of Efl.Ui.Theme.Apply_Error for more information.]] } get { - [[Get information about the current theme in use.]] } values { klass: string; [[The class of the group, eg. "button".]] |