#pragma interface
#endif
-#include "wx/defs.h"
-
-#if wxUSE_RADIOBOX
-
-#include "wx/object.h"
-#include "wx/list.h"
-#include "wx/control.h"
#include "wx/bitmap.h"
-//-----------------------------------------------------------------------------
-// classes
-//-----------------------------------------------------------------------------
-
-class wxRadioBox;
-
-//-----------------------------------------------------------------------------
-// global data
-//-----------------------------------------------------------------------------
-
-extern const char *wxRadioBoxNameStr;
-
//-----------------------------------------------------------------------------
// wxRadioBox
//-----------------------------------------------------------------------------
virtual wxString GetStringSelection() const;
virtual bool SetStringSelection( const wxString& s );
- virtual int Number() const;
+ int Number() const;
+ int GetCount() const { return Number(); }
int GetNumberOfRowsOrCols() const;
void SetNumberOfRowsOrCols( int n );
DECLARE_DYNAMIC_CLASS(wxRadioBox)
};
-#endif
-
#endif // __GTKRADIOBOXH__