implemented IsItemEnabled/Shown()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36312 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-11-30 17:28:18 +00:00
parent c92ad09968
commit 1661354b77
2 changed files with 17 additions and 0 deletions

View File

@@ -92,6 +92,9 @@ public:
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;
// we also override the wxControl methods to avoid virtual function hiding
virtual bool Enable(bool enable = true);
virtual bool Show(bool show = true);