#include <wx/event.h>

An activate event is sent when a window or application is being activated or deactivated.
The following event handler macros redirect the events to member function handlers 'func' with prototypes like:
Event macros:
wxEVT_ACTIVATE event. wxEVT_ACTIVATE_APP event. This event is received by the wxApp-derived instance only. Public Member Functions | |
| wxActivateEvent (wxEventType eventType=wxEVT_NULL, bool active=true, int id=0) | |
| Constructor. | |
| bool | GetActive () const |
| Returns true if the application or window is being activated, false otherwise. | |
| wxActivateEvent::wxActivateEvent | ( | wxEventType | eventType = wxEVT_NULL, |
|
| bool | active = true, |
|||
| int | id = 0 | |||
| ) |
Constructor.
| bool wxActivateEvent::GetActive | ( | ) | const |
Returns true if the application or window is being activated, false otherwise.
|
[ top ] |