#include </home/work/projects/wx/2.9/wx/interface/wx/event.h>

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:
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 ] |