X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e9576ca53db96b462ed4c0b4bdf47d64c40203e4..79f585d90388128f9d245f7c92d3013b98b9ed14:/src/mac/statbox.cpp diff --git a/src/mac/statbox.cpp b/src/mac/statbox.cpp index b239dc738c..ea7ca9dfbb 100644 --- a/src/mac/statbox.cpp +++ b/src/mac/statbox.cpp @@ -14,15 +14,14 @@ #endif #include "wx/statbox.h" +#include "wx/mac/uma.h" -#if !USE_SHARED_LIBRARY IMPLEMENT_DYNAMIC_CLASS(wxStaticBox, wxControl) BEGIN_EVENT_TABLE(wxStaticBox, wxControl) EVT_ERASE_BACKGROUND(wxStaticBox::OnEraseBackground) END_EVENT_TABLE() -#endif /* * Static box @@ -35,28 +34,15 @@ bool wxStaticBox::Create(wxWindow *parent, wxWindowID id, long style, const wxString& name) { - SetName(name); - - if (parent) parent->AddChild(this); - - if ( id == -1 ) - m_windowId = (int)NewControlId(); - else - m_windowId = id; - - m_windowStyle = style; - - // TODO: create static box - return FALSE; -} + Rect bounds ; + Str255 title ; + + MacPreControlCreate( parent , id , label , pos , size ,style, *((wxValidator*)NULL) , name , &bounds , title ) ; -void wxStaticBox::SetLabel(const wxString& label) -{ - // TODO -} + m_macControl = UMANewControl( parent->GetMacRootWindow() , &bounds , title , true , 0 , 0 , 1, + kControlGroupBoxTextTitleProc , (long) this ) ; + + MacPostControlCreate() ; -void wxStaticBox::SetSize(int x, int y, int width, int height, int sizeFlags) -{ - // TODO + return TRUE; } -