+#if wxUSE_TOOLTIPS
+ virtual void DoSetItemToolTip(unsigned int n, wxToolTip * tooltip);
+#endif
+
+ virtual int GetItemFromPoint(const wxPoint& pt) const;
+
+#if wxUSE_HELP
+ // override virtual function with a platform-independent implementation
+ virtual wxString GetHelpTextAtPoint(const wxPoint & pt, wxHelpEvent::Origin origin) const
+ {
+ return wxRadioBoxBase::DoGetHelpTextAtPoint( this, pt, origin );
+ }
+#endif // wxUSE_HELP
+
+#ifndef __WXWINCE__
+ virtual WXHRGN MSWGetRegionWithoutChildren();
+#endif // __WXWINCE__
+
+
+ // the buttons we contain
+ wxSubwindows *m_radioButtons;
+
+ // array of widths and heights of the buttons, may be wxDefaultCoord if the
+ // corresponding quantity should be computed
+ int *m_radioWidth;
+ int *m_radioHeight;
+
+ // currently selected button or wxNOT_FOUND if none
+ int m_selectedButton;
+