/////////////////////////////////////////////////////////////////////////////
// Name: sizer.cpp
// Purpose: provide new wxSizer class for layout
-// Author: Robert Roebling and Robin Dunn
+// Author: Robert Roebling and Robin Dunn, contributions by
+// Dirk Holtwick, Ron Lee
// Modified by: Ron Lee
// Created:
// RCS-ID: $Id$
-// Copyright: (c) Robin Dunn, Dirk Holtwick and Robert Roebling
-// (c) 2003, Ron Lee
+// Copyright: (c) Robin Dunn, Robert Roebling
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
{
// this has to be done platform by platform as there is no way to
// guess the thickness of a wxStaticBox border
+#ifdef __WXCOCOA__
+ box->GetBordersForSizer(borderTop,borderOther);
+#else // __WXCOCOA__
#ifdef __WXGTK__
if ( box->GetLabel().IsEmpty() )
*borderTop = 5;
*borderTop = box->GetCharHeight();
*borderOther = 5;
+#endif // __WXCOCOA__
}
void wxStaticBoxSizer::RecalcSizes()