wx.HelpControllerHelpProvider is an implementation of wx.HelpProvider which supports both context identifiers and plain text help strings.
If the help text is an integer, it is passed to wx.HelpController.DisplayContextPopup
. Otherwise, it shows the string in a tooltip as per wx.SimpleHelpProvider. If you use this with a CHMHelpController instance on windows, it will use the native style of tip window instead of wx.TipWindow.
You can use the convenience function ContextId() to convert an integer context id to a string for passing to wx.Window.SetHelpText
.
See also
wx.HelpProvider, wx.SimpleHelpProvider, wx.ContextHelp, wx.Window.SetHelpText
, wx.Window.GetHelpTextAtPoint
Note that the instance doesn’t own the help controller. |
|
Returns the help controller associated with this help provider. |
|
Sets the help controller associated with this help provider. |
See |
wx.
HelpControllerHelpProvider
(SimpleHelpProvider)¶Possible constructors:
HelpControllerHelpProvider(hc: Optional[HelpControllerBase]=None) ->
None
HelpControllerHelpProvider is an implementation of HelpProvider which supports both context identifiers and plain text help strings.
__init__
(self, hc: Optional[HelpControllerBase]=None)¶Note that the instance doesn’t own the help controller.
The help controller should be deleted separately.
hc (wx.HelpControllerBase) –
None
GetHelpController
(self)¶Returns the help controller associated with this help provider.
SetHelpController
(self, hc : HelpControllerBase)¶Sets the help controller associated with this help provider.
hc (wx.HelpControllerBase) –
None
HelpController
¶See GetHelpController
and SetHelpController