]> git.saurik.com Git - wxWidgets.git/commitdiff
Implement wxRadioButton Get/SetLabel methods.
authorDavid Elliott <dfe@tgwbd.org>
Tue, 7 Aug 2007 22:26:08 +0000 (22:26 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Tue, 7 Aug 2007 22:26:08 +0000 (22:26 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47941 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/cocoa/radiobut.h
src/cocoa/radiobut.mm

index 2975bcaffbcf7dd2ca59d932c71dcc1b67ed5199..29892fab0517446c4f91394a8501224339b87019 100644 (file)
@@ -64,6 +64,8 @@ private:
 public:
     virtual void SetValue(bool);
     virtual bool GetValue() const;
+    virtual void SetLabel(const wxString& label);
+    virtual wxString GetLabel() const;
 protected:
     wxRadioButtonList m_radioSlaves;
     wxRadioButton *m_radioMaster;
index 3edd79a16d2cdab10b698af7977fb20c555d61b7..f46e4e72a1258dda1866a433e37f3c314dc3d831 100644 (file)
@@ -145,6 +145,17 @@ bool wxRadioButton::GetValue() const
     return state==NSOnState;
 }
 
+void wxRadioButton::SetLabel(const wxString& label)
+{
+    wxAutoNSAutoreleasePool pool;
+    CocoaSetLabelForObject(label, GetNSButton());
+}
+
+wxString wxRadioButton::GetLabel() const 
+{    
+    return wxStringWithNSString([GetNSButton() title]);
+}
+
 /**
  * If this radio button is part of a group, this method turns off every other
  * button in the group.  If this radio button is not part of a group, this