&& wxUSE_WXHTML_HELP && !defined(__WXUNIVERSAL__)
#include "wx/helpbase.h"
+#include "wx/html/helpfrm.h" // for wxHF_DEFAULT_STYLE
class WXDLLIMPEXP_HTML wxBestHelpController: public wxHelpControllerBase
{
public:
- wxBestHelpController(wxWindow* parentWindow = NULL)
- : wxHelpControllerBase( parentWindow ), m_helpControllerType( wxUseNone ),
- m_helpController( NULL )
+ wxBestHelpController(wxWindow* parentWindow = NULL,
+ int style = wxHF_DEFAULT_STYLE)
+ : wxHelpControllerBase(parentWindow),
+ m_helpControllerType(wxUseNone),
+ m_helpController(NULL),
+ m_style(style)
{
}
HelpControllerType m_helpControllerType;
wxHelpControllerBase* m_helpController;
+ int m_style;
DECLARE_DYNAMIC_CLASS(wxBestHelpController)
DECLARE_NO_COPY_CLASS(wxBestHelpController)