adding a peer pointing back to wxWindow
[wxWidgets.git] / src / mac / carbon / statbox.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: statbox.cpp
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 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "statbox.h"
14 #endif
15
16 #include "wx/wxprec.h"
17
18 #if wxUSE_STATBOX
19
20 #include "wx/statbox.h"
21 #include "wx/mac/uma.h"
22
23 #if !USE_SHARED_LIBRARY
24 IMPLEMENT_DYNAMIC_CLASS(wxStaticBox, wxControl)
25 #endif
26
27 /*
28 * Static box
29 */
30
31 bool wxStaticBox::Create(wxWindow *parent, wxWindowID id,
32 const wxString& label,
33 const wxPoint& pos,
34 const wxSize& size,
35 long style,
36 const wxString& name)
37 {
38 m_macIsUserPane = FALSE ;
39
40 if ( !wxControl::Create(parent, id, pos, size,
41 style, wxDefaultValidator, name) )
42 return false;
43
44 m_label = label ;
45
46 Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ;
47
48 m_peer = new wxMacControl(this) ;
49 verify_noerr(CreateGroupBoxControl(MAC_WXHWND(parent->MacGetTopLevelWindowRef()),&bounds, CFSTR("") ,
50 true /*primary*/ , m_peer->GetControlRefAddr() ) ) ;
51
52 MacPostControlCreate(pos,size) ;
53
54 return TRUE;
55 }
56
57 #endif