X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..c6e2af4570ee868c93fc504b02f321efe5d5acee:/src/msw/statline.cpp?ds=inline diff --git a/src/msw/statline.cpp b/src/msw/statline.cpp index 605153f40d..29ee6373e1 100644 --- a/src/msw/statline.cpp +++ b/src/msw/statline.cpp @@ -52,43 +52,31 @@ IMPLEMENT_DYNAMIC_CLASS(wxStaticLine, wxControl) // wxStaticLine // ---------------------------------------------------------------------------- -bool wxStaticLine::Create( wxWindow *parent, - wxWindowID id, - const wxPoint &pos, - const wxSize &size, - long style, - const wxString &name) +bool wxStaticLine::Create(wxWindow *parent, + wxWindowID id, + const wxPoint& pos, + const wxSize& sizeOrig, + long style, + const wxString &name) { - if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) ) - return FALSE; - - parent->AddChild(this); + wxSize size = AdjustSize(sizeOrig); - wxSize sizeReal = AdjustSize(size); - - m_hWnd = (WXHWND)::CreateWindow - ( - wxT("STATIC"), - wxT(""), - WS_VISIBLE | WS_CHILD /* | WS_CLIPSIBLINGS */ | - SS_GRAYRECT | SS_SUNKEN | SS_NOTIFY, - pos.x, pos.y, sizeReal.x, sizeReal.y, - GetWinHwnd(parent), - (HMENU)m_windowId, - wxGetInstance(), - NULL - ); + if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) ) + return FALSE; - if ( !m_hWnd ) - { - wxLogDebug(wxT("Failed to create static control")); + return MSWCreateControl(_T("STATIC"), _T(""), pos, size); +} - return FALSE; - } +WXDWORD wxStaticLine::MSWGetStyle(long style, WXDWORD *exstyle) const +{ + // we never have border + style &= ~wxBORDER_MASK; + style |= wxBORDER_NONE; - SubclassWin(m_hWnd); + WXDWORD msStyle = wxControl::MSWGetStyle(style, exstyle); - return TRUE; + // add our default styles + return msStyle | SS_GRAYRECT | SS_SUNKEN | SS_NOTIFY | WS_CLIPSIBLINGS; } #endif // wxUSE_STATLINE