wx.lib.agw.shortcuteditor.HTMLHelpWindow¶
A simple wx.Frame container for the basic help provided to ShortcutEditor.
The help page is actually straightly derived from:
http://graphicssoft.about.com/od/gimptutorials/tp/keyboard-shortcut-editor.htm
Class Hierarchy¶
Known Superclasses¶
Methods Summary¶
Default class constructor. |
|
Creates a toolbar for |
|
Handles the |
|
Handles all the |
|
Handles all the |
Class API¶
- class HTMLHelpWindow(wx.Frame)¶
A simple
wx.Framecontainer for the basic help provided toShortcutEditor. The help page is actually straightly derived from:http://graphicssoft.about.com/od/gimptutorials/tp/keyboard-shortcut-editor.htm
Methods¶
- __init__(self, parent, htmlFile)¶
Default class constructor.
- Parameters:
parent – an instance of
ShortcutEditor;htmlFile (string) – a valid HTML file containing either the default help or your particular definition of help.
- BuildToolBar(self, toolbar)¶
Creates a toolbar for
HTMLHelpWindowcontaining the standard browsing buttons like Back, Forward, Home,Refreshand Print.- Parameters:
toolbar – an instance of
ToolBar.
- OnClose(self, event)¶
Handles the
wx.EVT_CLOSEevent forHTMLHelpWindow.- Parameters:
event – an instance of
CloseEvent.
- OnHTMLToolbar(self, event)¶
Handles all the
wx.EVT_TOOLevents forHTMLHelpWindow.- Parameters:
event – an instance of
CommandEvent.
- OnUpdateUI(self, event)¶
Handles all the
wx.EVT_UPDATE_UIevents forHTMLHelpWindow.- Parameters:
event – an instance of
UpdateUIEvent.