#include <wx/event.h>

A help event is sent to the window that the user clicked on, and is propagated up the window hierarchy until the event is processed or there are no more event handlers.
The application should call wxEvent::GetId to check the identity of the clicked-on window, and then either show some suitable help or call wxEvent::Skip() if the identifier is unrecognised.
Calling Skip is important because it allows wxWidgets to generate further events for ancestors of the clicked-on window. Otherwise it would be impossible to show help for container windows, since processing would stop after the first window found.
Events:
The following event handler macros redirect the events to member function handlers 'func' with prototypes like:
Public Member Functions | |
| wxHelpEvent (wxEventType type=wxEVT_NULL, wxWindowID winid=0, const wxPoint &pt=wxDefaultPosition, wxHelpEventOrigin origin=wxHE_ORIGIN_UNKNOWN) | |
| wxHelpEventOrigin | GetOrigin () const |
| const wxPoint & | GetPosition () const |
| void | SetOrigin (wxHelpEventOrigin) |
| void | SetPosition (const wxPoint &pt) |
| wxHelpEvent::wxHelpEvent | ( | wxEventType | type = wxEVT_NULL, |
|
| wxWindowID | winid = 0, |
|||
| const wxPoint & | pt = wxDefaultPosition, |
|||
| wxHelpEventOrigin | origin = wxHE_ORIGIN_UNKNOWN | |||
| ) |
Constructor.
| wxHelpEventOrigin wxHelpEvent::GetOrigin | ( | ) | const |
Returns the origin of the help event which is one of the wxHelpEventOrigin values.
The application may handle events generated using the keyboard or mouse differently, e.g. by using wxGetMousePosition() for the mouse events.
| const wxPoint& wxHelpEvent::GetPosition | ( | ) | const |
Returns the left-click position of the mouse, in screen coordinates. This allows the application to position the help appropriately.
| void wxHelpEvent::SetOrigin | ( | wxHelpEventOrigin | ) |
| void wxHelpEvent::SetPosition | ( | const wxPoint & | pt | ) |
Sets the left-click position of the mouse, in screen coordinates.
|
[ top ] |