#include </home/zeitlin/src/wx/github/interface/wx/event.h>
An event being sent when the window is shown or hidden.
The event is triggered by calls to wxWindow::Show(), and any user action showing a previously hidden window or vice versa (if allowed by the current platform and/or window manager). Notice that the event is not triggered when the application is iconized (minimized) or restored under wxMSW.
The following event handler macros redirect the events to member function handlers 'func' with prototypes like:
Event macros:
wxEVT_SHOW
event. Public Member Functions | |
wxShowEvent (int winid=0, bool show=false) | |
Constructor. | |
void | SetShow (bool show) |
Set whether the windows was shown or hidden. | |
bool | IsShown () const |
Return true if the window has been shown, false if it has been hidden. | |
bool | GetShow () const |
wxShowEvent::wxShowEvent | ( | int | winid = 0 , |
bool | show = false |
||
) |
Constructor.
bool wxShowEvent::GetShow | ( | ) | const |
bool wxShowEvent::IsShown | ( | ) | const |
Return true if the window has been shown, false if it has been hidden.
void wxShowEvent::SetShow | ( | bool | show | ) |
Set whether the windows was shown or hidden.