efl/src/lib/elementary/efl_ui_focus_manager_sub.eo

22 lines
920 B
Plaintext
Raw Normal View History

class Efl.Ui.Focus.Manager.Sub (Efl.Ui.Focus.Manager, Efl.Object)
{
[[A abstract class to have a sub manager
This submanager will register its border elements on the parent manager. The parent manager is found with the Efl.Ui.Focus.User interface of the eo parent.
Each submanager also has to be a focus object, the object itself will be registered into the parent manager. It will be used as logical parent while registering the border elements.
You can filter the border elements by overriding the border_elements property of the manager.
This class is only working as composite object to a Efl.Ui.Focus.User and Efl.Ui.Focus.Object.
The object itself does redirect the managers events to the object where this object is attached
]]
methods {
}
implements {
Efl.Object.constructor;
Efl.Object.destructor;
2017-01-02 02:42:35 -08:00
Efl.Object.parent { set; }
}
}