X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b45ed7a273799b1b360482496a706a211eca6435..5fc01d1326a34223746546326a7f616df8bfa991:/src/mac/carbon/radiobut.cpp diff --git a/src/mac/carbon/radiobut.cpp b/src/mac/carbon/radiobut.cpp index 991c8be68f..c7101f60ad 100644 --- a/src/mac/carbon/radiobut.cpp +++ b/src/mac/carbon/radiobut.cpp @@ -30,18 +30,19 @@ bool wxRadioButton::Create(wxWindow *parent, wxWindowID id, const wxValidator& validator, const wxString& name) { + m_macIsUserPane = FALSE ; + if ( !wxControl::Create(parent, id, pos, size, style, validator, name) ) return false; - - Rect bounds ; - Str255 title ; - MacPreControlCreate( parent , id , label , pos , size ,style, validator , name , &bounds , title ) ; + m_label = label ; + + Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ; - m_macControl = ::NewControl( MAC_WXHWND(parent->MacGetRootWindow()) , &bounds , title , false , 0 , 0 , 1, + m_macControl = (WXWidget) ::NewControl( MAC_WXHWND(parent->MacGetTopLevelWindowRef()) , &bounds , "\p" , true , 0 , 0 , 1, kControlRadioButtonProc , (long) this ) ; - MacPostControlCreate() ; + MacPostControlCreate(pos,size) ; m_cycle = this ; @@ -72,10 +73,10 @@ bool wxRadioButton::Create(wxWindow *parent, wxWindowID id, void wxRadioButton::SetValue(bool val) { wxRadioButton *cycle; - if ( GetControl32BitValue( (ControlHandle) m_macControl ) == val ) + if ( GetControl32BitValue( (ControlRef) m_macControl ) == val ) return ; - ::SetControl32BitValue( (ControlHandle) m_macControl , val ) ; + ::SetControl32BitValue( (ControlRef) m_macControl , val ) ; if (val) { cycle=this->NextInCycle(); @@ -91,7 +92,7 @@ void wxRadioButton::SetValue(bool val) bool wxRadioButton::GetValue() const { - return ::GetControl32BitValue( (ControlHandle) m_macControl ) ; + return ::GetControl32BitValue( (ControlRef) m_macControl ) ; } void wxRadioButton::Command (wxCommandEvent & event)