]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/button.cpp
adding the notion of cyclic group of radiobutton
[wxWidgets.git] / src / mac / carbon / button.cpp
index 1f42bad606869632051b4df422b638c9a2b87504..c2fad066737765aa9bc4fca095c13e22cbb0ad15 100644 (file)
@@ -66,6 +66,22 @@ void wxButton::SetDefault()
   }
 }
 
+wxSize wxButton::DoGetBestSize()
+{
+    int wBtn = m_label.Length() * 8 + 12 + 2 * m_macHorizontalBorder;
+       int hBtn = 13 + 2 * m_macVerticalBorder;
+
+    return wxSize(wBtn, hBtn);
+}
+
+wxSize wxButton::GetDefaultSize()
+{
+    int wBtn = 15 * 8 + 12 + 2 * 2;
+       int hBtn = 13 + 2 * 2;
+
+    return wxSize(wBtn, hBtn);
+}
+
 void wxButton::Command (wxCommandEvent & event)
 {
     ProcessCommand (event);