]>
git.saurik.com Git - wxWidgets.git/blob - src/mac/carbon/statbox.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxStaticBox
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "statbox.h"
16 #include "wx/wxprec.h"
20 #include "wx/statbox.h"
21 #include "wx/mac/uma.h"
23 #if !USE_SHARED_LIBRARY
24 IMPLEMENT_DYNAMIC_CLASS(wxStaticBox
, wxControl
)
31 bool wxStaticBox::Create(wxWindow
*parent
, wxWindowID id
,
32 const wxString
& label
,
38 m_macIsUserPane
= FALSE
;
40 if ( !wxControl::Create(parent
, id
, pos
, size
,
41 style
, wxDefaultValidator
, name
) )
46 Rect bounds
= wxMacGetBoundsForControl( this , pos
, size
) ;
48 m_peer
= new wxMacControl(this) ;
49 verify_noerr(CreateGroupBoxControl(MAC_WXHWND(parent
->MacGetTopLevelWindowRef()),&bounds
, CFSTR("") ,
50 true /*primary*/ , m_peer
->GetControlRefAddr() ) ) ;
52 MacPostControlCreate(pos
,size
) ;
57 void wxStaticBox::GetBordersForSizer(int *borderTop
, int *borderOther
) const
59 static int extraTop
= -1; // Uninitted
64 // The minimal border used for the top. Later on the staticbox'
65 // font height is added to this.
68 if ( UMAGetSystemVersion() >= 0x1030 /*Panther*/ )
70 // As indicated by the HIG, Panther needs an extra border of 11
71 // pixels (otherwise overlapping occurs at the top). The "other"
72 // border has to be 11.
79 *borderTop
= extraTop
+ GetCharHeight();
83 #endif // wxUSE_STATBOX