]> git.saurik.com Git - wxWidgets.git/commitdiff
Implement GetValue() and SetValue() and send an event when clicked
authorDavid Elliott <dfe@tgwbd.org>
Mon, 18 Aug 2003 18:21:46 +0000 (18:21 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Mon, 18 Aug 2003 18:21:46 +0000 (18:21 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22995 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/cocoa/checkbox.mm

index 1dfd1f63314935f20636309167bec24a80af1fec..90dd25fba123634750ad1ebfe00d8fd9dd8045e4 100644 (file)
@@ -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);
 }