// Name: html/helpdlg.h
// Purpose: interface of wxHtmlHelpDialog
// Author: wxWidgets team
-// RCS-ID: $Id$
-// Licence: wxWindows license
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
/**
@library{wxhtml}
@category{help,html}
*/
-class wxHtmlHelpDialog : public wxFrame
+class wxHtmlHelpDialog : public wxDialog
{
public:
wxHtmlHelpDialog(wxHtmlHelpData* data = NULL);
For the possible values of @a style, please see wxHtmlHelpController.
*/
- wxHtmlHelpDialog(wxWindow* parent, int wxWindowID,
+ wxHtmlHelpDialog(wxWindow* parent, wxWindowID id,
const wxString& title = wxEmptyString,
int style = wxHF_DEFAULT_STYLE,
wxHtmlHelpData* data = NULL);
*/
wxHtmlHelpController* GetController() const;
- /**
- Reads the user's settings for this dialog
-
- @see wxHtmlHelpController::ReadCustomization
- */
- void ReadCustomization(wxConfigBase* cfg,
- const wxString& path = wxEmptyString);
-
/**
Sets the help controller associated with the dialog.
*/
- void SetController(wxHtmlHelpController* contoller);
+ void SetController(wxHtmlHelpController* controller);
/**
Sets the dialog's title format.
@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 dialog
-
- @see wxHtmlHelpController::WriteCustomization
- */
- void WriteCustomization(wxConfigBase* cfg,
- const wxString& path = wxEmptyString);
};