]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/statbox.cpp
Common code for the same handling of wxSL_INVERSE.
[wxWidgets.git] / src / mac / carbon / statbox.cpp
CommitLineData
e9576ca5
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: statbox.cpp
3// Purpose: wxStaticBox
a31a5f85 4// Author: Stefan Csomor
e9576ca5 5// Modified by:
a31a5f85 6// Created: 1998-01-01
e9576ca5 7// RCS-ID: $Id$
a31a5f85 8// Copyright: (c) Stefan Csomor
65571936 9// Licence: wxWindows licence
e9576ca5
SC
10/////////////////////////////////////////////////////////////////////////////
11
3d1a4878 12#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
e9576ca5
SC
13#pragma implementation "statbox.h"
14#endif
15
3d1a4878 16#include "wx/wxprec.h"
d8c736e5 17
e9576ca5 18#include "wx/statbox.h"
519cb848 19#include "wx/mac/uma.h"
e9576ca5 20
2f1ae414 21#if !USE_SHARED_LIBRARY
e9576ca5 22IMPLEMENT_DYNAMIC_CLASS(wxStaticBox, wxControl)
2f1ae414 23#endif
e9576ca5
SC
24
25/*
26 * Static box
27 */
28
29bool wxStaticBox::Create(wxWindow *parent, wxWindowID id,
30 const wxString& label,
31 const wxPoint& pos,
32 const wxSize& size,
33 long style,
34 const wxString& name)
35{
facd6764
SC
36 m_macIsUserPane = FALSE ;
37
b45ed7a2
VZ
38 if ( !wxControl::Create(parent, id, pos, size,
39 style, wxDefaultValidator, name) )
40 return false;
41
facd6764
SC
42 m_label = label ;
43
44 Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ;
e40298d5 45
21fd5529 46 m_peer = new wxMacControl() ;
4c37f124 47 verify_noerr(CreateGroupBoxControl(MAC_WXHWND(parent->MacGetTopLevelWindowRef()),&bounds, CFSTR("") ,
5ca0d812 48 true /*primary*/ , m_peer->GetControlRefAddr() ) ) ;
4c37f124 49
facd6764 50 MacPostControlCreate(pos,size) ;
e40298d5
JS
51
52 return TRUE;
e9576ca5 53}