]> git.saurik.com Git - wxWidgets.git/commitdiff
Implement wxWindow::DoGetBorderSize() in wxUniv.
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 22 Sep 2009 00:22:52 +0000 (00:22 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 22 Sep 2009 00:22:52 +0000 (00:22 +0000)
As some wxUniv classes implement DoGetBestClientSize(), the new code in
wxWindow::DoGetBestSize() implementation calls DoGetBorderSize() which asserts
because it's not implemented, making it impossible to even start the minimal
sample -- fix this.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62002 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/univ/window.h
include/wx/window.h
src/univ/winuniv.cpp

index 1dc43df0243dd8f21eae57e4b5b377d44b04cc4c..d5aa30e4ba67277e1892f0ebb04603a9032bcc0c 100644 (file)
@@ -243,6 +243,9 @@ protected:
     virtual wxSize DoGetBestClientSize() const;
     virtual wxSize DoGetBestSize() const;
 
+    // override the base class method to return the size of the window borders
+    virtual wxSize DoGetBorderSize() const;
+
     // adjust the size of the window to take into account its borders
     wxSize AdjustSize(const wxSize& size) const;
 
index 9d863ee5167908b59cc72fcfa6bca167bee28328..d85c077433d0db2842cd4e48535f3ebbdab7daf4 100644 (file)
@@ -1661,8 +1661,8 @@ protected:
     // of the left and the right border in the x component of the returned size
     // and the sum of the heights of the top and bottom borders in the y one
     //
-    // NB: this is new/temporary API only implemented by wxMSW so far and
-    //     subject to change, don't use
+    // NB: this is new/temporary API only implemented by wxMSW and wxUniv so
+    //     far and subject to change, don't use
     virtual wxSize DoGetBorderSize() const
     {
         wxFAIL_MSG( "must be overridden if called" );
index ce34052eb89b80824814e8c965078bab872eed72..1f86e4861ce503d0fa991c8bdbcfd93722add980 100644 (file)
@@ -728,6 +728,11 @@ wxSize wxWindow::DoGetBestClientSize() const
     return wxWindowNative::DoGetBestSize();
 }
 
+wxSize wxWindow::DoGetBorderSize() const
+{
+    return AdjustSize(wxSize(0, 0));
+}
+
 wxSize wxWindow::AdjustSize(const wxSize& size) const
 {
     wxSize sz = size;