summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_focus_layer.eo
diff options
context:
space:
mode:
authorAndy Williams <andy@andywilliams.me>2018-01-04 12:16:23 +0000
committerAndy Williams <andy@andywilliams.me>2018-01-04 12:29:11 +0000
commit345c59ad3bcc17b551d9b055cbd219b61f6d339e (patch)
tree4d84b62f6f40875a695a698f6e5250f6343fde38 /src/lib/elementary/efl_ui_focus_layer.eo
parentdeef737067e0b1ccffb2313177c297c2118b89fd (diff)
downloadefl-345c59ad3bcc17b551d9b055cbd219b61f6d339e.tar.gz
docs: Update elementary eo files for grammar and readability
Author: Nate Drake
Diffstat (limited to 'src/lib/elementary/efl_ui_focus_layer.eo')
-rw-r--r--src/lib/elementary/efl_ui_focus_layer.eo6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/elementary/efl_ui_focus_layer.eo b/src/lib/elementary/efl_ui_focus_layer.eo
index 7063c13c96..426ca89ee8 100644
--- a/src/lib/elementary/efl_ui_focus_layer.eo
+++ b/src/lib/elementary/efl_ui_focus_layer.eo
@@ -1,9 +1,9 @@
mixin Efl.Ui.Focus.Layer (Efl.Interface, Elm.Widget, Efl.Gfx, Efl.Ui.Focus.Manager) {
[[This defines the inheriting widget as focus layer
- A focus layer is a layer that will, for the time of existance or visibility, be the upper most layer that gets input, and handles all focus related events, its NOT possible to escape this layer with focus movement.
+ A focus layer is the uppermost one which received input and handles all focus related events for as long as it exists and is visible. It's NOT possible to escape this layer with focus movement.
- Once the object is hidden or destructed the focus will go back to the mainwindow, where it has been before.
+ Once the object is hidden or destroyed the focus will go back to the mainwindow, where it was before.
]]
methods {
@property enable @protected {
@@ -15,7 +15,7 @@ mixin Efl.Ui.Focus.Layer (Efl.Interface, Elm.Widget, Efl.Gfx, Efl.Ui.Focus.Manag
@property behaviour @protected {
[[Constructor for setting the behaviour of the layer]]
values {
- enable_on_visible : bool; [[$true means layer will set itself once the inheriting widget gets visible, $false means the layer does not get enabled automatically]]
+ enable_on_visible : bool; [[$true means layer will set itself once the inheriting widget becomes visible, $false means the layer isn't enabled automatically]]
cycle : bool; [[If $true the focus will cycle in the layer, if $false]]
}
}