#include <wx/event.h>
An event being sent when the window is shown or hidden.
Currently only wxMSW, wxGTK and wxOS2 generate such events.
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.
![]() |
[ top ] |