X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c87f263ea51962916f0a4e392b448497d9c94dbf..c5cc7fbd27fb53c36beb0ade36153ae48d9e961e:/interface/wx/html/helpfrm.h diff --git a/interface/wx/html/helpfrm.h b/interface/wx/html/helpfrm.h index e469d1a393..0f298b0d7f 100644 --- a/interface/wx/html/helpfrm.h +++ b/interface/wx/html/helpfrm.h @@ -29,7 +29,9 @@ public: 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 @@ -45,22 +47,15 @@ public: for a description of the parameters. */ bool Create(wxWindow* parent, wxWindowID id, - const wxString& title = wxEmptyString, - int style = wxHF_DEFAULT_STYLE); + const wxString& title = wxEmptyString, int style = wxHF_DEFAULT_STYLE, + wxConfigBase* config = NULL, + const wxString& rootpath = wxEmptyString); /** Returns the help controller associated with the frame. */ 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. */ @@ -72,13 +67,5 @@ public: @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); };