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 wx.Window.FindFocus to retrieve the window which is actually getting focus.

^^

events Events Emitted by this Class

Handlers bound for the following event types will receive a wx.ChildFocusEvent parameter.

  • EVT_CHILD_FOCUS: Process a wxEVT_CHILD_FOCUS event. ^^


class_hierarchy Class Hierarchy

Inheritance diagram for class ChildFocusEvent:

method_summary Methods Summary

__init__

Constructor.

GetWindow

Returns the direct child which receives the focus, or a (grand-)parent of the control receiving the focus.


property_summary Properties Summary

Window

See 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.


Methods

__init__(self, win=None)

Constructor.

Parameters

win (wx.Window) – The direct child which is (or which contains the window which is) receiving the focus.



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 wx.Window.FindFocus .

Return type

wx.Window


Properties

Window

See GetWindow