wxString GetString( int n ) const;
void SetString( int n, const wxString& label );
- void Show( int item, bool show );
- void Enable( int item, bool enable );
+ virtual bool Show( int item, bool show = true );
+ virtual bool Enable( int item, bool enable = true );
virtual wxString GetStringSelection() const;
virtual bool SetStringSelection( const wxString& s );
// common part of all ctors
void Init();
+ // check that the index is valid
+ // FIXME: remove once GTK will derive from wxRadioBoxBase
+ inline bool IsValid(int n) const { return n >= 0 && n < GetCount(); }
+
private:
DECLARE_DYNAMIC_CLASS(wxRadioBox)
};