]>
git.saurik.com Git - wxWidgets.git/blob - src/osx/statbox_osx.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/statbox_osx.cpp
3 // Purpose: wxStaticBox
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
16 #include "wx/statbox.h"
17 #include "wx/osx/private.h"
19 bool wxStaticBox::Create( wxWindow
*parent
,
21 const wxString
& label
,
25 const wxString
& name
)
29 if ( !wxControl::Create( parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
32 m_labelOrig
= m_label
= label
;
34 SetPeer(wxWidgetImpl::CreateGroupBox( this, parent
, id
, label
, pos
, size
, style
, GetExtraStyle() ));
36 MacPostControlCreate( pos
, size
);
41 void wxStaticBox::GetBordersForSizer(int *borderTop
, int *borderOther
) const
43 static int extraTop
= 11;
44 static int other
= 11;
46 *borderTop
= extraTop
;
47 if ( !m_label
.empty() )
52 *borderTop
+= GetCharHeight();
59 bool wxStaticBox::SetFont(const wxFont
& font
)
61 bool retval
= wxWindowBase::SetFont( font
);
63 // dont' update the native control, it has its own small font
68 #endif // wxUSE_STATBOX