]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/html/helpfrm.h
mention wxSystemSettings::GetColour() in wxWindow::SetBackgroundColour() docs
[wxWidgets.git] / interface / wx / html / helpfrm.h
index a53c0ef7f6540de8c47429724bde3c46c7d8364d..3c679ae5918573c0ad7589466826b7fadaaa63db 100644 (file)
@@ -3,7 +3,7 @@
 // Purpose:     interface of wxHtmlHelpFrame
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /**
@@ -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
@@ -54,14 +56,6 @@ public:
     */
     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.
     */
@@ -73,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);
 };