wxHtmlHelpFrame(wxWindow* parent, int wxWindowID,
const wxString& title = wxEmptyString,
int style = wxHF_DEFAULT_STYLE,
- wxHtmlHelpData* data = NULL);
+ wxHtmlHelpData* data = NULL,
+ wxConfigBase* config = NULL,
+ const wxString& rootpath = wxEmptyString);
/**
You may override this virtual method to add more buttons to the help window's
*/
wxHtmlHelpController* GetController() const;
- /**
- Reads the user's settings for this frame.
-
- @see wxHtmlHelpController::ReadCustomization
- */
- void ReadCustomization(wxConfigBase* cfg,
- const wxString& path = wxEmptyString);
-
/**
Sets the help controller associated with the frame.
*/
@a format must contain exactly one "%s" (it will be replaced by the page title).
*/
void SetTitleFormat(const wxString& format);
-
- /**
- Saves the user's settings for this frame.
-
- @see wxHtmlHelpController::WriteCustomization
- */
- void WriteCustomization(wxConfigBase* cfg,
- const wxString& path = wxEmptyString);
};