]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/html/helpctrl.h
Fix wxCocoa compilation.
[wxWidgets.git] / include / wx / html / helpctrl.h
index 271bfd759fb5e338bfeb9b9ffee7daf2c8b4e130..826fd20cf44ac48521defc4d74e0561479f4c94f 100644 (file)
@@ -37,6 +37,8 @@
 
 class WXDLLIMPEXP_HTML wxHtmlHelpDialog;
 class WXDLLIMPEXP_HTML wxHtmlHelpWindow;
+class WXDLLIMPEXP_HTML wxHtmlHelpFrame;
+class WXDLLIMPEXP_HTML wxHtmlHelpDialog;
 
 class WXDLLIMPEXP_HTML wxHtmlHelpController : public wxHelpControllerBase // wxEvtHandler
 {
@@ -61,6 +63,9 @@ public:
     wxHtmlHelpWindow* GetHelpWindow() { return m_helpWindow; }
     void SetHelpWindow(wxHtmlHelpWindow* helpWindow);
 
+    wxHtmlHelpFrame* GetFrame() { return m_helpFrame; }
+    wxHtmlHelpDialog* GetDialog() { return m_helpDialog; }
+
     void UseConfig(wxConfigBase *config, const wxString& rootpath = wxEmptyString);
 
     // Assigns config object to the Ctrl. This config is then
@@ -117,7 +122,8 @@ protected:
     wxString            m_ConfigRoot;
     wxString            m_titleFormat;
     int                 m_FrameStyle;
-    // DECLARE_EVENT_TABLE()
+    wxHtmlHelpFrame*    m_helpFrame;
+    wxHtmlHelpDialog*   m_helpDialog;
 
     DECLARE_NO_COPY_CLASS(wxHtmlHelpController)
 };