#include <help_controller.h>
Inheritance diagram for help_controller:

Public Methods |
|
| help_controller () | |
| Constructor. |
|
| ~help_controller () | |
| Destructor. |
|
| void | add_book (const wxString &help_fullname) |
| Adds a specified "book" (.htb file) to the help controller. |
|
| void | show_help_topic (const wxString &topic) |
| Shows the specified help topic. |
|
| void | show_help () |
| Shows the help frame, with no topics initially selected. |
|
| void | search_help (wxWindow *parent) |
| Search help for a keyword, and display results. |
|
| void | close () |
| Closes the help (frame), but doesn't delete the help controller. |
|
Static Public Methods |
|
| help_controller * | get (bool create_on_demand=TRUE) |
| Gets the global object or creates one if none exists. |
|
| help_controller * | set (help_controller *desired_help_controller) |
| Sets the global object and returns a pointer to previous one (may be NULL). |
|
|
|
Constructor.
|
|
|
Adds a specified "book" (.htb file) to the help controller. Also error handles if something went wrong.
|
|
|
Closes the help (frame), but doesn't delete the help controller. Deletion of the whole help controller is done via module. The frame is destroyed by the base class wxHelpHelpController |
|
|
Gets the global object or creates one if none exists.
|
|
|
Search help for a keyword, and display results. Prompts for a text to search for via a text entry dialog, then shows help controller selected to the search tab. It starts searching help, and displays the pages containing that phrase in the display window.
|
|
|
Sets the global object and returns a pointer to previous one (may be NULL).
|
|
|
Shows the help frame, with no topics initially selected.
|
|
|
Shows the specified help topic.
|