.. wxPython Phoenix documentation This file was generated by Phoenix's sphinx generator and associated tools, do not edit by hand. Copyright: (c) 2011-2020 by Total Control Software License: wxWindows License .. include:: headings.inc .. _wx.ChildFocusEvent: ========================================================================================================================================== |phoenix_title| **wx.ChildFocusEvent** ========================================================================================================================================== A child focus event is sent to a (parent-)window when one of its child windows gains focus, so that the window could restore the focus back to its corresponding child if it loses it now and regains later. Notice that child window is the direct child of the window receiving event. Use :meth:`wx.Window.FindFocus` to retrieve the window which is actually getting focus. ^^ .. _ChildFocusEvent-events: |events| Events Emitted by this Class ===================================== Handlers bound for the following event types will receive a :ref:`wx.ChildFocusEvent` parameter. - EVT_CHILD_FOCUS: Process a ``wxEVT_CHILD_FOCUS`` event. ^^ .. seealso:: :ref:`Events and Event Handling ` | |class_hierarchy| Class Hierarchy ================================= .. raw:: html
Inheritance diagram for class ChildFocusEvent:
| |method_summary| Methods Summary ================================ ================================================================================ ================================================================================ :meth:`~wx.ChildFocusEvent.__init__` Constructor. :meth:`~wx.ChildFocusEvent.GetWindow` Returns the direct child which receives the focus, or a (grand-)parent of the control receiving the focus. ================================================================================ ================================================================================ | |property_summary| Properties Summary ===================================== ================================================================================ ================================================================================ :attr:`~wx.ChildFocusEvent.Window` See :meth:`~wx.ChildFocusEvent.GetWindow` ================================================================================ ================================================================================ | |api| Class API =============== .. class:: wx.ChildFocusEvent(CommandEvent) **Possible constructors**:: ChildFocusEvent(win=None) A child focus event is sent to a (parent-)window when one of its child windows gains focus, so that the window could restore the focus back to its corresponding child if it loses it now and regains later. .. method:: __init__(self, win=None) Constructor. :param `win`: The direct child which is (or which contains the window which is) receiving the focus. :type `win`: wx.Window .. method:: GetWindow(self) Returns the direct child which receives the focus, or a (grand-)parent of the control receiving the focus. To get the actually focused control use :meth:`wx.Window.FindFocus` . :rtype: :ref:`wx.Window` .. attribute:: Window See :meth:`~wx.ChildFocusEvent.GetWindow`