]> git.saurik.com Git - wxWidgets.git/commitdiff
take border into account in best size calculations
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 29 Jul 2005 23:25:08 +0000 (23:25 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 29 Jul 2005 23:25:08 +0000 (23:25 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35006 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/changes.txt
src/msw/stattext.cpp

index 645b134a33a6ceacd0d464e935a844f80929699f..e7bdd4241514b17464107565c41c2f068bca8326 100644 (file)
@@ -33,6 +33,7 @@ wxMSW:
 - Handle absence of wxListCtrl column image better (Zbigniew Zagórski)
 - Fixed asynchronous playback of large sound files in wxSound
 - Added wxDynamicLibrary::GetSymbolAorW()
+- Fixed default size of wxStaticText controls with border being too small
 
 wxWinCE:
 
index cc4b995d2d3469654b5d54d026e62d7d2306f68a..7eaa18b562f7638180c40fcb94065205469913c9 100644 (file)
@@ -132,7 +132,7 @@ wxSize wxStaticText::DoGetBestSize() const
     wxFont font(GetFont());
     if (!font.Ok())
         font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
-    
+
     dc.SetFont(font);
 
     wxCoord widthTextMax, heightTextTotal;
@@ -143,6 +143,37 @@ wxSize wxStaticText::DoGetBestSize() const
         widthTextMax += 2;
 #endif // __WXWINCE__
 
+    // border takes extra space
+    //
+    // TODO: this is probably not wxStaticText-specific and should be moved
+    wxCoord border;
+    switch ( GetBorder() )
+    {
+        case wxBORDER_STATIC:
+        case wxBORDER_SIMPLE:
+            border = 1;
+            break;
+
+        case wxBORDER_SUNKEN:
+            border = 2;
+            break;
+
+        case wxBORDER_RAISED:
+        case wxBORDER_DOUBLE:
+            border = 3;
+            break;
+
+        default:
+            wxFAIL_MSG( _T("unknown border style") );
+            // fall through
+
+        case wxBORDER_NONE:
+            border = 0;
+    }
+
+    widthTextMax += 2*border;
+    heightTextTotal += 2*border;
+
     wxSize best(widthTextMax, heightTextTotal);
     CacheBestSize(best);
     return best;