]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/radiobox.mm
Allow wx parents a chance to handle events fired by non-wx children. (i.e. wxActiveX...
[wxWidgets.git] / src / cocoa / radiobox.mm
index 93d5043e4711fcda2822da5c8c85d2cac4fbf5d6..4dc469c0ddae67616198ccebabab5b270fc0df8c 100644 (file)
@@ -4,12 +4,15 @@
 // Author:      David Elliott
 // Modified by:
 // Created:     2003/02/15
 // Author:      David Elliott
 // Modified by:
 // Created:     2003/02/15
-// RCS-ID:      $Id: 
+// RCS-ID:      $Id:
 // Copyright:   (c) 2003 David Elliott
 // Copyright:   (c) 2003 David Elliott
-// Licence:    wxWindows license
+// Licence:     wxWidgets licence
 /////////////////////////////////////////////////////////////////////////////
 
 #include "wx/wxprec.h"
 /////////////////////////////////////////////////////////////////////////////
 
 #include "wx/wxprec.h"
+
+#if wxUSE_RADIOBOX
+
 #ifndef WX_PRECOMP
     #include "wx/app.h"
     #include "wx/radiobox.h"
 #ifndef WX_PRECOMP
     #include "wx/app.h"
     #include "wx/radiobox.h"
@@ -88,23 +91,16 @@ void wxRadioBox::SetString(int n, const wxString& label)
 }
 
     // change the individual radio button state
 }
 
     // change the individual radio button state
-void wxRadioBox::Enable(int n, bool enable)
-{
-}
-
-void wxRadioBox::Show(int n, bool show)
+bool wxRadioBox::Enable(int n, bool enable)
 {
 {
+    // TODO
+    return false;
 }
 
 }
 
-    // layout parameters
-int wxRadioBox::GetColumnCount() const
+bool wxRadioBox::Show(int n, bool show)
 {
 {
-    return 0;
-}
-
-int wxRadioBox::GetRowCount() const
-{
-    return 0;
+    // TODO
+    return false;
 }
 
 wxSize wxRadioBox::DoGetBestSize() const
 }
 
 wxSize wxRadioBox::DoGetBestSize() const
@@ -112,3 +108,5 @@ wxSize wxRadioBox::DoGetBestSize() const
     return wxSize(50,50);
 }
 
     return wxSize(50,50);
 }
 
+#endif
+