summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_focus_user.eo
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/elementary/efl_ui_focus_user.eo')
-rw-r--r--src/lib/elementary/efl_ui_focus_user.eo32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/lib/elementary/efl_ui_focus_user.eo b/src/lib/elementary/efl_ui_focus_user.eo
deleted file mode 100644
index 11de8e9547..0000000000
--- a/src/lib/elementary/efl_ui_focus_user.eo
+++ /dev/null
@@ -1,32 +0,0 @@
-interface Efl.Ui.Focus.User {
- [[Interface which is used to handle the manager of a user.
-
- @since 1.20
- ]]
- methods {
- @property focus_manager {
- [[Describes which manager is used to register.
-
- If an instance of this interface is the root of a manager, this instance should not have a manager where as root of this property. The other manager in this instance will be set as focused in the corresponding manager.
- This instance should be registered with its own manager as redirect.
- ]]
- get {}
- values {
- manager : Efl.Ui.Focus.Manager; [[The manager object]]
- }
- }
- @property focus_parent {
- [[Describes which logical parent is used by this object.]]
- get {}
- values {
- logical_parent : Efl.Ui.Focus.Object; [[The focus parent.]]
- }
- }
- }
- events {
- manager,changed: Efl.Ui.Focus.Manager; [[Emitted when a new manager is
- the parent for this object.]]
- logical,changed: Efl.Ui.Focus.Object; [[Emitted when a new logical
- parent should be used.]]
- }
-}