X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ee6b1d97e741fda8d579fa21cbc89f0c91615cef..b16de7461ac6d97b0b04a5ce4e73447925e93416:/src/mac/carbon/statlmac.cpp diff --git a/src/mac/carbon/statlmac.cpp b/src/mac/carbon/statlmac.cpp index 52f3d40733..359893d527 100644 --- a/src/mac/carbon/statlmac.cpp +++ b/src/mac/carbon/statlmac.cpp @@ -16,13 +16,11 @@ // headers // ---------------------------------------------------------------------------- -#ifdef __GNUG__ - #pragma implementation "statline.h" -#endif - // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" +#if wxUSE_STATLINE + #ifdef __BORLANDC__ #pragma hdrstop #endif @@ -30,6 +28,8 @@ #include "wx/statline.h" #include "wx/statbox.h" +#include "wx/mac/uma.h" + // ============================================================================ // implementation // ============================================================================ @@ -47,15 +47,19 @@ bool wxStaticLine::Create( wxWindow *parent, long style, const wxString &name) { - if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) ) - return FALSE; - - // ok, this is ugly but it's better than nothing: use a thin static box to - // emulate static line + m_macIsUserPane = FALSE ; + + if ( !wxStaticLineBase::Create(parent, id, pos, size, + style, wxDefaultValidator, name) ) + return false; - wxSize sizeReal = AdjustSize(size); + Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ; + m_peer = new wxMacControl(this) ; + verify_noerr(CreateSeparatorControl(MAC_WXHWND(parent->MacGetTopLevelWindowRef()),&bounds, m_peer->GetControlRefAddr() ) ) ; -// m_statbox = new wxStaticBox(parent, id, wxT(""), pos, sizeReal, style, name); + MacPostControlCreate(pos,size) ; return TRUE; } + +#endif //wxUSE_STATLINE