AGW Logo

agw_title 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

hierarchy Inheritance Diagram

Inheritance diagram for: HTMLHelpWindow

Inheritance diagram of HTMLHelpWindow


method_summary Methods Summary

__init__Default class constructor.
BuildToolBarCreates a toolbar for HTMLHelpWindow containing the standard browsing
OnCloseHandles the wx.EVT_CLOSE event for HTMLHelpWindow.
OnHTMLToolbarHandles all the wx.EVT_TOOL events for HTMLHelpWindow.
OnUpdateUIHandles all the wx.EVT_UPDATE_UI events for HTMLHelpWindow.

API Class API

class HTMLHelpWindow(wx.Frame)[source]

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



__init__(parent, htmlFile)[source]

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(toolbar)[source]

Creates a toolbar for HTMLHelpWindow containing the standard browsing buttons like Back, Forward, Home, Refresh and Print.

Parameters:toolbar – an instance of wx.ToolBar.


OnClose(event)[source]

Handles the wx.EVT_CLOSE event for HTMLHelpWindow.

Parameters:event – an instance of wx.CloseEvent.


OnHTMLToolbar(event)[source]

Handles all the wx.EVT_TOOL events for HTMLHelpWindow.

Parameters:event – an instance of wx.CommandEvent.


OnUpdateUI(event)[source]

Handles all the wx.EVT_UPDATE_UI events for HTMLHelpWindow.

Parameters:event – an instance of wx.UpdateUIEvent.
Tree

Table Of Contents

Previous topic

ConflictDialog

Next topic

ListShortcut