]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/scrolwin.h
applied patch fixing problems with X server crash when using wxGLCanvas with nVidia...
[wxWidgets.git] / include / wx / generic / scrolwin.h
index 88ef181e6b03a201acfedef9c89191bc2f2b37c2..91c76bbbf3a407b01167b2a0f737ade4e709f966 100644 (file)
@@ -23,7 +23,7 @@
 #include "wx/window.h"
 #include "wx/panel.h"
 
-WXDLLEXPORT_DATA(extern const wxChar*) wxPanelNameStr;
+extern WXDLLEXPORT_DATA(const wxChar*) wxPanelNameStr;
 
 // default scrolled window style
 #ifndef wxScrolledWindowStyle
@@ -71,8 +71,16 @@ public:
 
     virtual void DoSetVirtualSize(int x, int y);
 
+    // wxWindow's GetBestVirtualSize returns the actual window size,
+    // whereas we want to return the virtual size
+    virtual wxSize GetBestVirtualSize() const;
+
+    // Return the size best suited for the current window
+    // (this isn't a virtual size, this is a sensible size for the window)
+    virtual wxSize DoGetBestSize() const;
+
 #ifdef __WXMAC__
-       virtual bool MacClipChildren() const { return true ; }
+    virtual bool MacClipChildren() const { return true ; }
 #endif
 protected:
     // this is needed for wxEVT_PAINT processing hack described in