X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e40298d54ecd5b109222a7c60aa2ef084a304d69..fdd74b41b0a94b214aab4b7b03e75b60e877bd4e:/src/mac/carbon/checkbox.cpp?ds=inline diff --git a/src/mac/carbon/checkbox.cpp b/src/mac/carbon/checkbox.cpp index f1bc26ccc6..11ed5fc74f 100644 --- a/src/mac/carbon/checkbox.cpp +++ b/src/mac/carbon/checkbox.cpp @@ -31,43 +31,103 @@ bool wxCheckBox::Create(wxWindow *parent, wxWindowID id, const wxString& label, const wxValidator& validator, const wxString& name) { - Rect bounds ; - Str255 title ; + m_macIsUserPane = FALSE ; - MacPreControlCreate( parent , id , label , pos , size ,style, validator , name , &bounds , title ) ; + if ( !wxCheckBoxBase::Create(parent, id, pos, size, style, validator, name) ) + return false; - m_macControl = ::NewControl( MAC_WXHWND(parent->MacGetRootWindow()) , &bounds , title , false , 0 , 0 , 1, - kControlCheckBoxProc , (long) this ) ; + m_label = label ; + + SInt32 maxValue = 1 /* kControlCheckboxCheckedValue */; + if (style & wxCHK_3STATE) + maxValue = 2 /* kControlCheckboxMixedValue */; + + Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ; + m_peer = new wxMacControl() ; + verify_noerr( CreateCheckBoxControl(MAC_WXHWND(parent->MacGetTopLevelWindowRef()), &bounds , + CFSTR("") , 0 , false , *m_peer ) ); - MacPostControlCreate() ; + m_peer->SetMaximum( maxValue ) ; + + MacPostControlCreate(pos,size) ; return TRUE; } void wxCheckBox::SetValue(bool val) { - ::SetControl32BitValue( (ControlHandle) m_macControl , val ) ; - MacRedrawControl() ; + if (val) + { + Set3StateValue(wxCHK_CHECKED); + } + else + { + Set3StateValue(wxCHK_UNCHECKED); + } } bool wxCheckBox::GetValue() const { - return ::GetControl32BitValue( (ControlHandle) m_macControl ) ; + return (DoGet3StateValue() != 0); } void wxCheckBox::Command (wxCommandEvent & event) { - SetValue ((event.GetInt() != 0)); - ProcessCommand (event); + int state = event.GetInt(); + + wxCHECK_RET( (state == wxCHK_UNCHECKED) || (state == wxCHK_CHECKED) + || (state == wxCHK_UNDETERMINED), + wxT("event.GetInt() returned an invalid checkbox state") ); + + Set3StateValue((wxCheckBoxState) state); + + ProcessCommand(event); } -void wxCheckBox::MacHandleControlClick( WXWidget WXUNUSED(control), wxInt16 WXUNUSED(controlpart) ) +wxCheckBoxState wxCheckBox::DoGet3StateValue() const +{ + return (wxCheckBoxState) m_peer->GetValue() ; +} + +void wxCheckBox::DoSet3StateValue(wxCheckBoxState val) +{ + m_peer->SetValue( val ) ; +} + +wxInt32 wxCheckBox::MacControlHit(WXEVENTHANDLERREF WXUNUSED(handler) , WXEVENTREF WXUNUSED(event) ) { - SetValue( !GetValue() ) ; wxCommandEvent event(wxEVT_COMMAND_CHECKBOX_CLICKED, m_windowId ); - event.SetInt(GetValue()); + wxCheckBoxState state = Get3StateValue(); + + if (state == wxCHK_UNCHECKED) + { + state = wxCHK_CHECKED; + } + else if (state == wxCHK_CHECKED) + { + // If the style flag to allow the user setting the undetermined state + // is set, then set the state to undetermined. Otherwise set state to + // unchecked. + if ( Is3rdStateAllowedForUser() ) + { + state = wxCHK_UNDETERMINED; + } + else + { + state = wxCHK_UNCHECKED; + } + } + else if (state == wxCHK_UNDETERMINED) + { + state = wxCHK_UNCHECKED; + } + Set3StateValue(state); + + event.SetInt(state); event.SetEventObject(this); ProcessCommand(event); + + return noErr ; } // Bitmap checkbox