]>
git.saurik.com Git - wxWidgets.git/blob - src/osx/carbon/statlmac.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/carbon/statlmac.cpp
3 // Purpose: a generic wxStaticLine class
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 1998 Vadim Zeitlin
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 // For compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
28 #include "wx/statline.h"
31 #include "wx/statbox.h"
34 #include "wx/osx/private.h"
36 // ============================================================================
38 // ============================================================================
40 wxWidgetImplType
* wxWidgetImpl::CreateStaticLine( wxWindowMac
* wxpeer
,
42 wxWindowID
WXUNUSED(id
),
46 long WXUNUSED(extraStyle
))
48 Rect bounds
= wxMacGetBoundsForControl( wxpeer
, pos
, size
) ;
49 wxMacControl
* peer
= new wxMacControl(wxpeer
) ;
50 verify_noerr(CreateSeparatorControl(MAC_WXHWND(parent
->MacGetTopLevelWindowRef()),&bounds
, peer
->GetControlRefAddr() ) ) ;
54 #endif //wxUSE_STATLINE