#include <wx/cshelp.h>
wxSimpleHelpProvider is an implementation of wxHelpProvider which supports only plain text help strings, and shows the string associated with the control (if any) in a tooltip.
Additional Inherited Members | |
Public Member Functions inherited from wxHelpProvider | |
virtual | ~wxHelpProvider () |
Virtual destructor for any base class. More... | |
virtual void | AddHelp (wxWindowBase *window, const wxString &text) |
Associates the text with the given window. More... | |
virtual void | AddHelp (wxWindowID id, const wxString &text) |
Associates the text with the given ID. More... | |
virtual wxString | GetHelp (const wxWindowBase *window)=0 |
This version associates the given text with all windows with this id. More... | |
virtual void | RemoveHelp (wxWindowBase *window) |
Removes the association between the window pointer and the help text. More... | |
virtual bool | ShowHelp (wxWindowBase *window) |
Shows help for the given window. More... | |
virtual bool | ShowHelpAtPoint (wxWindowBase *window, const wxPoint &point, wxHelpEvent::Origin origin) |
This function may be overridden to show help for the window when it should depend on the position inside the window, By default this method forwards to ShowHelp(), so it is enough to only implement the latter if the help doesn't depend on the position. More... | |
Static Public Member Functions inherited from wxHelpProvider | |
static wxHelpProvider * | Get () |
Returns pointer to help provider instance. More... | |
static wxHelpProvider * | Set (wxHelpProvider *helpProvider) |
Set the current, application-wide help provider. More... | |