]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/html/htmlwin.h
Added CanRead()
[wxWidgets.git] / include / wx / html / htmlwin.h
index 553f49112ed3d5e553931fbe839398f906e3145c..ea266a31b07e80749658146c3cea630d977ffd0a 100644 (file)
@@ -18,6 +18,7 @@
 #if wxUSE_HTML
 
 #include <wx/window.h>
+#include <wx/scrolwin.h>
 #include <wx/config.h>
 #include <wx/treectrl.h>
 #include <wx/html/htmlwinparser.h>
@@ -93,10 +94,7 @@ class WXDLLEXPORT wxHtmlWindow : public wxScrolledWindow
                 // borders (free space between text and window borders)
                 // defaults to 10 pixels.
 
-        bool m_Scrollable;
-                // TRUE if you can scroll the window.
-                // If it is FALSE you can't scroll the window even if it's contents is larger
-                // than window.
+        int m_Style;
 
 
     private:
@@ -122,7 +120,8 @@ class WXDLLEXPORT wxHtmlWindow : public wxScrolledWindow
         wxHtmlWindow() : wxScrolledWindow() {};
         wxHtmlWindow(wxWindow *parent, wxWindowID id = -1, 
                      const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
-                     const wxString& name = "htmlWindow", bool scrollable = TRUE);
+                    long style = wxHW_SCROLLBAR_AUTO,
+                     const wxString& name = "htmlWindow");
         ~wxHtmlWindow();
 
         bool SetPage(const wxString& source);