 
       wx.html.HtmlHelpDialog¶
  wx.html.HtmlHelpDialog¶This class is used by wx.html.HtmlHelpController to display help.
It is an internal class and should not be used directly - except for the case when you’re writing your own HTML help controller.
 Methods Summary¶
 Methods Summary¶| __init__ | |
| AddToolbarButtons | You may override this virtual method to add more buttons to the help window’s toolbar. | 
| Create | Creates the dialog. | 
| GetController | Returns the help controller associated with the dialog. | 
| SetController | Sets the help controller associated with the dialog. | 
| SetTitleFormat | Sets the dialog’s title format. | 
 Class API¶
 Class API¶wx.html.HtmlHelpDialog(Dialog)¶Possible constructors:
HtmlHelpDialog(data=None)
HtmlHelpDialog(parent, id=ID_ANY, title="", style=HF_DEFAULT_STYLE,
               data=None)
This class is used by HtmlHelpController to display help.
__init__(self, *args, **kw)¶__init__ (self, data=None)
| Parameters: | data (wx.html.HtmlHelpData) – | 
|---|
__init__ (self, parent, id=ID_ANY, title=””, style=HF_DEFAULT_STYLE, data=None)
Constructor.
For the possible values of style, please see wx.html.HtmlHelpController.
| Parameters: | 
 | 
|---|
AddToolbarButtons(self, toolBar, style)¶You may override this virtual method to add more buttons to the help window’s toolbar.
toolBar  is a pointer to the toolbar and style  is the style flag as passed to the Create   method.
wx.ToolBar.Realize   is called immediately after returning from this function.
| Parameters: | 
 | 
|---|
Create(self, parent, id=ID_ANY, title="", style=HF_DEFAULT_STYLE)¶Creates the dialog.
See the constructor for a description of the parameters.
| Parameters: | 
 | 
|---|---|
| Return type: | bool | 
GetController(self)¶Returns the help controller associated with the dialog.
| Return type: | wx.html.HtmlHelpController | 
|---|
SetController(self, controller)¶Sets the help controller associated with the dialog.
| Parameters: | controller (wx.html.HtmlHelpController) – | 
|---|
SetTitleFormat(self, format)¶Sets the dialog’s title format.
format must contain exactly one “%s” (it will be replaced by the page title).
| Parameters: | format (string) – | 
|---|
Controller¶See GetController and SetController