]>
Commit | Line | Data |
---|---|---|
489468fe | 1 | ///////////////////////////////////////////////////////////////////////////// |
524c47aa | 2 | // Name: src/osx/carbon/statbox.cpp |
489468fe SC |
3 | // Purpose: wxStaticBox |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: 1998-01-01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Stefan Csomor | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #if wxUSE_STATBOX | |
15 | ||
16 | #include "wx/statbox.h" | |
524c47aa SC |
17 | #include "wx/osx/private.h" |
18 | ||
19 | wxWidgetImplType* wxWidgetImpl::CreateGroupBox( wxWindowMac* wxpeer, | |
20 | wxWindowMac* parent, | |
a4fec5b4 SC |
21 | wxWindowID WXUNUSED(id), |
22 | const wxString& WXUNUSED(label), | |
524c47aa SC |
23 | const wxPoint& pos, |
24 | const wxSize& size, | |
a4fec5b4 SC |
25 | long WXUNUSED(style), |
26 | long WXUNUSED(extraStyle)) | |
489468fe | 27 | { |
524c47aa | 28 | Rect bounds = wxMacGetBoundsForControl( wxpeer, pos, size ); |
489468fe | 29 | |
524c47aa | 30 | wxMacControl* peer = new wxMacControl( wxpeer ); |
489468fe SC |
31 | OSStatus err = CreateGroupBoxControl( |
32 | MAC_WXHWND(parent->MacGetTopLevelWindowRef()), &bounds, CFSTR(""), | |
524c47aa | 33 | true /*primary*/, peer->GetControlRefAddr() ); |
489468fe | 34 | verify_noerr( err ); |
524c47aa | 35 | return peer; |
489468fe | 36 | } |
489468fe SC |
37 | #endif // wxUSE_STATBOX |
38 |