added wxRadioBox::IsItemEnabled/Shown() (for MSW only for now, other platforms to come); corrected Enable/Show() return values

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36288 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-11-29 19:26:38 +00:00
parent 2f1834d9f2
commit 3bfa7be977
6 changed files with 127 additions and 16 deletions

View File

@@ -90,6 +90,8 @@ public:
virtual void SetString(int n, const wxString& label);
virtual bool Enable(int n, bool enable = true);
virtual bool Show(int n, bool show = true);
virtual bool IsItemEnabled(int n) const;
virtual bool IsItemShown(int n) const;
virtual int GetColumnCount() const { return GetNumHor(); }
virtual int GetRowCount() const { return GetNumVer(); }