Add a ctor that is compatible with the documented wxHelpController API
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71131 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
e5f9b4ae2d
commit
895c1bc001
@ -46,6 +46,8 @@ class WXDLLIMPEXP_HTML wxHtmlHelpController : public wxHelpControllerBase // wxE
|
||||
|
||||
public:
|
||||
wxHtmlHelpController(int style = wxHF_DEFAULT_STYLE, wxWindow* parentWindow = NULL);
|
||||
wxHtmlHelpController(wxWindow* parentWindow, int style = wxHF_DEFAULT_STYLE);
|
||||
|
||||
virtual ~wxHtmlHelpController();
|
||||
|
||||
void SetShouldPreventAppExit(bool enable);
|
||||
@ -115,6 +117,8 @@ public:
|
||||
wxWindow* FindTopLevelWindow();
|
||||
|
||||
protected:
|
||||
void Init(int style);
|
||||
|
||||
virtual wxWindow* CreateHelpWindow();
|
||||
virtual wxHtmlHelpFrame* CreateHelpFrame(wxHtmlHelpData *data);
|
||||
virtual wxHtmlHelpDialog* CreateHelpDialog(wxHtmlHelpData *data);
|
||||
|
@ -79,6 +79,8 @@ public:
|
||||
*/
|
||||
wxHtmlHelpController(int style = wxHF_DEFAULT_STYLE,
|
||||
wxWindow* parentWindow = NULL);
|
||||
wxHtmlHelpController(wxWindow* parentWindow, int style = wxHF_DEFAULT_STYLE);
|
||||
|
||||
|
||||
/**
|
||||
Adds a book (i.e. a @ref overview_html_helpformats ".hhp file"; an HTML Help
|
||||
|
@ -42,6 +42,17 @@ IMPLEMENT_DYNAMIC_CLASS(wxHtmlHelpController, wxHelpControllerBase)
|
||||
|
||||
wxHtmlHelpController::wxHtmlHelpController(int style, wxWindow* parentWindow):
|
||||
wxHelpControllerBase(parentWindow)
|
||||
{
|
||||
Init(style);
|
||||
}
|
||||
|
||||
wxHtmlHelpController::wxHtmlHelpController(wxWindow* parentWindow, int style):
|
||||
wxHelpControllerBase(parentWindow)
|
||||
{
|
||||
Init(style);
|
||||
}
|
||||
|
||||
void wxHtmlHelpController::Init(int style)
|
||||
{
|
||||
m_helpWindow = NULL;
|
||||
m_helpFrame = NULL;
|
||||
@ -55,6 +66,7 @@ wxHtmlHelpController::wxHtmlHelpController(int style, wxWindow* parentWindow):
|
||||
m_shouldPreventAppExit = false;
|
||||
}
|
||||
|
||||
|
||||
wxHtmlHelpController::~wxHtmlHelpController()
|
||||
{
|
||||
#if wxUSE_CONFIG
|
||||
|
Loading…
Reference in New Issue
Block a user