// headers
// ----------------------------------------------------------------------------
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma implementation "radioboxbase.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
// implementation
// ============================================================================
-int wxRadioBoxBase::FindString(const wxString& s) const
+void wxRadioBoxBase::SetMajorDim(unsigned int majorDim, long style)
{
- int count = GetCount();
- for ( int n = 0; n < count; n++ )
+ wxCHECK_RET( majorDim != 0, _T("major radiobox dimension can't be 0") );
+
+ m_majorDim = majorDim;
+
+ int minorDim = (GetCount() + m_majorDim - 1) / m_majorDim;
+
+ if ( style & wxRA_SPECIFY_COLS )
{
- if ( GetString(n) == s )
- return n;
+ m_numCols = majorDim;
+ m_numRows = minorDim;
+ }
+ else // wxRA_SPECIFY_ROWS
+ {
+ m_numCols = minorDim;
+ m_numRows = majorDim;
}
-
- return wxNOT_FOUND;
}
int wxRadioBoxBase::GetNextItem(int item, wxDirection dir, long style) const
#endif // WXWIN_COMPATIBILITY_2_4
-#if WXWIN_COMPATIBILITY_2_2
-
-int wxRadioBoxBase::Number() const
-{
- return GetCount();
-}
-
-wxString wxRadioBoxBase::GetLabel(int n) const
-{
- return GetString(n);
-}
-
-void wxRadioBoxBase::SetLabel(int n, const wxString& label)
-{
- SetString(n, label);
-}
-
-#endif // WXWIN_COMPATIBILITY_2_2
-
#endif // wxUSE_RADIOBOX
-