Version: 2.9.4
Public Member Functions
wxFocusEvent Class Reference

#include </home/zeitlin/src/wx/github/interface/wx/event.h>

Inheritance diagram for wxFocusEvent:

Detailed Description

A focus event is sent when a window's focus changes.

The window losing focus receives a "kill focus" event while the window gaining it gets a "set focus" one.

Notice that the set focus event happens both when the user gives focus to the window (whether using the mouse or keyboard) and when it is done from the program itself using wxWindow::SetFocus.

The focus event handlers should almost invariably call wxEvent::Skip() on their event argument to allow the default handling to take place. Failure to do this may result in incorrect behaviour of the native controls. Also note that wxEVT_KILL_FOCUS handler must not call wxWindow::SetFocus() as this, again, is not supported by all native controls. If you need to do this, consider using the Delayed Action Mechanism described in wxIdleEvent documentation.

Events using this class

The following event handler macros redirect the events to member function handlers 'func' with prototypes like:

void handlerFuncName(wxFocusEvent& event)

Event macros:

Library:  wxCore
Category:  Events
参照:
イベントとイベント処理

Public Member Functions

 wxFocusEvent (wxEventType eventType=wxEVT_NULL, int id=0)
 Constructor.
wxWindowGetWindow () const
 Returns the window associated with this event, that is the window which had the focus before for the wxEVT_SET_FOCUS event and the window which is going to receive focus for the wxEVT_KILL_FOCUS one.
void SetWindow (wxWindow *win)

List of all members.


Constructor & Destructor Documentation

wxFocusEvent::wxFocusEvent ( wxEventType  eventType = wxEVT_NULL,
int  id = 0 
)

Constructor.


Member Function Documentation

wxWindow* wxFocusEvent::GetWindow ( ) const

Returns the window associated with this event, that is the window which had the focus before for the wxEVT_SET_FOCUS event and the window which is going to receive focus for the wxEVT_KILL_FOCUS one.

Warning: the window pointer may be NULL!

void wxFocusEvent::SetWindow ( wxWindow win)
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines