]>
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
6 // Copyright: (c) 1998 Vadim Zeitlin
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 // ============================================================================
12 // ============================================================================
14 // ----------------------------------------------------------------------------
16 // ----------------------------------------------------------------------------
18 // For compilers that support precompilation, includes "wx.h".
19 #include "wx/wxprec.h"
27 #include "wx/statline.h"
30 #include "wx/statbox.h"
33 #include "wx/osx/private.h"
35 // ============================================================================
37 // ============================================================================
39 wxWidgetImplType
* wxWidgetImpl::CreateStaticLine( wxWindowMac
* wxpeer
,
41 wxWindowID
WXUNUSED(id
),
45 long WXUNUSED(extraStyle
))
47 Rect bounds
= wxMacGetBoundsForControl( wxpeer
, pos
, size
) ;
48 wxMacControl
* peer
= new wxMacControl(wxpeer
) ;
49 verify_noerr(CreateSeparatorControl(MAC_WXHWND(parent
->MacGetTopLevelWindowRef()),&bounds
, peer
->GetControlRefAddr() ) ) ;
53 #endif //wxUSE_STATLINE