From a0c6a355b7b53866286ec6263b99f787cfdbe731 Mon Sep 17 00:00:00 2001 From: David Elliott Date: Mon, 18 Aug 2003 18:21:46 +0000 Subject: [PATCH] Implement GetValue() and SetValue() and send an event when clicked git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22995 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/cocoa/checkbox.mm | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/cocoa/checkbox.mm b/src/cocoa/checkbox.mm index 1dfd1f6331..90dd25fba1 100644 --- a/src/cocoa/checkbox.mm +++ b/src/cocoa/checkbox.mm @@ -53,17 +53,27 @@ wxCheckBox::~wxCheckBox() DisassociateNSButton(m_cocoaNSView); } -void wxCheckBox::SetValue(bool) +void wxCheckBox::SetValue(bool value) { + if(value) + [GetNSButton() setState: NSOnState]; + else + [GetNSButton() setState: NSOffState]; } bool wxCheckBox::GetValue() const { - return false; + int state = [GetNSButton() state]; + wxASSERT(state!=NSMixedState); + return state==NSOnState; } void wxCheckBox::Cocoa_wxNSButtonAction(void) { wxLogDebug("Checkbox"); + wxCommandEvent event(wxEVT_COMMAND_CHECKBOX_CLICKED, GetId()); + InitCommandEvent(event); // event.SetEventObject(this); + event.SetInt(GetValue()); + Command(event); } -- 2.45.2