X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e9576ca53db96b462ed4c0b4bdf47d64c40203e4..5fc01d1326a34223746546326a7f616df8bfa991:/src/mac/carbon/checkbox.cpp diff --git a/src/mac/carbon/checkbox.cpp b/src/mac/carbon/checkbox.cpp index dd2e2abe7a..72993d6081 100644 --- a/src/mac/carbon/checkbox.cpp +++ b/src/mac/carbon/checkbox.cpp @@ -1,18 +1,20 @@ ///////////////////////////////////////////////////////////////////////////// // Name: checkbox.cpp // Purpose: wxCheckBox -// Author: AUTHOR +// Author: Stefan Csomor // Modified by: // Created: 04/01/98 // RCS-ID: $Id$ -// Copyright: (c) AUTHOR -// Licence: wxWindows licence +// Copyright: (c) Stefan Csomor +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifdef __GNUG__ #pragma implementation "checkbox.h" #endif +#include "wx/defs.h" + #include "wx/checkbox.h" #if !USE_SHARED_LIBRARY @@ -20,6 +22,8 @@ IMPLEMENT_DYNAMIC_CLASS(wxCheckBox, wxControl) IMPLEMENT_DYNAMIC_CLASS(wxBitmapCheckBox, wxCheckBox) #endif +#include "wx/mac/uma.h" + // Single check box item bool wxCheckBox::Create(wxWindow *parent, wxWindowID id, const wxString& label, const wxPoint& pos, @@ -27,55 +31,111 @@ bool wxCheckBox::Create(wxWindow *parent, wxWindowID id, const wxString& label, const wxValidator& validator, const wxString& name) { - SetName(name); - SetValidator(validator); - m_windowStyle = style; + m_macIsUserPane = FALSE ; + + if ( !wxCheckBoxBase::Create(parent, id, pos, size, style, validator, name) ) + return false; - if (parent) parent->AddChild(this); + m_label = label ; - if ( id == -1 ) - m_windowId = NewControlId(); - else - m_windowId = id; + SInt16 maxValue = 1 /* kControlCheckboxCheckedValue */; + if (style & wxCHK_3STATE) + { + maxValue = 2 /* kControlCheckboxMixedValue */; + } - // TODO: create checkbox - return FALSE; + Rect bounds = wxMacGetBoundsForControl( this , pos , size ) ; + m_macControl = (WXWidget) ::NewControl( MAC_WXHWND(parent->MacGetTopLevelWindowRef()) , &bounds , "\p" , true , 0 , 0 , maxValue, + kControlCheckBoxProc , (long) this ) ; + + MacPostControlCreate(pos,size) ; + + return TRUE; } -void wxCheckBox::SetLabel(const wxString& label) +void wxCheckBox::SetValue(bool val) { - // TODO + if (val) + { + Set3StateValue(wxCHK_CHECKED); + } + else + { + Set3StateValue(wxCHK_UNCHECKED); + } } -void wxCheckBox::SetSize(int x, int y, int width, int height, int sizeFlags) +bool wxCheckBox::GetValue() const { - // TODO + return (DoGet3StateValue() != 0); } -void wxCheckBox::SetValue(bool val) +void wxCheckBox::Command (wxCommandEvent & event) { - // TODO + 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); } -bool wxCheckBox::GetValue() const +wxCheckBoxState wxCheckBox::DoGet3StateValue() const { - // TODO - return FALSE; + return (wxCheckBoxState) ::GetControl32BitValue( (ControlRef) m_macControl ); } -void wxCheckBox::Command (wxCommandEvent & event) +void wxCheckBox::DoSet3StateValue(wxCheckBoxState val) { - SetValue ((event.GetInt() != 0)); - ProcessCommand (event); + ::SetControl32BitValue( (ControlRef) m_macControl , (int) val) ; + MacRedrawControl() ; +} + +void wxCheckBox::MacHandleControlClick( WXWidget WXUNUSED(control), wxInt16 WXUNUSED(controlpart) , bool WXUNUSED(mouseStillDown) ) +{ + wxCommandEvent event(wxEVT_COMMAND_CHECKBOX_CLICKED, m_windowId ); + 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); } // Bitmap checkbox -bool wxBitmapCheckBox::Create(wxWindow *parent, wxWindowID id, const wxBitmap *label, - const wxPoint& pos, - const wxSize& size, long style, - const wxValidator& validator, - const wxString& name) +bool wxBitmapCheckBox::Create(wxWindow *parent, wxWindowID id, + const wxBitmap *label, + const wxPoint& pos, + const wxSize& size, long style, + const wxValidator& validator, + const wxString& name) { SetName(name); SetValidator(validator); @@ -96,21 +156,24 @@ bool wxBitmapCheckBox::Create(wxWindow *parent, wxWindowID id, const wxBitmap *l void wxBitmapCheckBox::SetLabel(const wxBitmap *bitmap) { // TODO + wxFAIL_MSG(wxT("wxBitmapCheckBox::SetLabel() not yet implemented")); } void wxBitmapCheckBox::SetSize(int x, int y, int width, int height, int sizeFlags) { - // TODO + wxControl::SetSize( x , y , width , height , sizeFlags ) ; } void wxBitmapCheckBox::SetValue(bool val) { // TODO + wxFAIL_MSG(wxT("wxBitmapCheckBox::SetValue() not yet implemented")); } bool wxBitmapCheckBox::GetValue() const { - // TODOD + // TODO + wxFAIL_MSG(wxT("wxBitmapCheckBox::GetValue() not yet implemented")); return FALSE; }