]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/radiobox.h
Fixes
[wxWidgets.git] / include / wx / gtk1 / radiobox.h
index cf76a447e56a85b4694df6bcb215adb02102aea4..14fdae0c8b4563351c0813e4dc1782535ade5746 100644 (file)
@@ -87,7 +87,7 @@ public:
     wxString GetString( int n ) const;
     void SetString( int n, const wxString& label );
 
     wxString GetString( int n ) const;
     void SetString( int n, const wxString& label );
 
-    void Show( int item, bool show );
+    virtual bool Show( int item, bool show = true );
     virtual bool Enable( int item, bool enable = true );
 
     virtual wxString GetStringSelection() const;
     virtual bool Enable( int item, bool enable = true );
 
     virtual wxString GetStringSelection() const;
@@ -142,6 +142,10 @@ protected:
     // common part of all ctors
     void Init();
 
     // 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)
 };
 private:
     DECLARE_DYNAMIC_CLASS(wxRadioBox)
 };