// Author: David Elliott
// Modified by:
// Created: 2003/02/15
-// RCS-ID: $Id:
+// RCS-ID: $Id:
// Copyright: (c) 2003 David Elliott
-// Licence: wxWindows license
+// Licence: wxWidgets licence
/////////////////////////////////////////////////////////////////////////////
#include "wx/wxprec.h"
+
+#if wxUSE_RADIOBOX
+
#ifndef WX_PRECOMP
#include "wx/app.h"
#include "wx/radiobox.h"
}
// change the individual radio button state
-void wxRadioBox::Enable(int n, bool enable)
+bool wxRadioBox::Enable(int n, bool enable)
{
+ // TODO
+ return false;
}
-void wxRadioBox::Show(int n, bool show)
+bool wxRadioBox::Show(int n, bool show)
{
+ // TODO
+ return false;
}
// layout parameters
return 0;
}
+wxSize wxRadioBox::DoGetBestSize() const
+{
+ return wxSize(50,50);
+}
+
+#endif
+