add wxShowEvent::IsShown() and wxIconizeEvent::IsIconized() instead of (now deprecated) GetShow() and Iconized() respectively (#978)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54320 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-06-21 16:17:13 +00:00
parent 48e487e37f
commit d317fdebc3
4 changed files with 66 additions and 4 deletions

View File

@@ -1366,7 +1366,13 @@ public:
{ m_show = event.m_show; }
void SetShow(bool show) { m_show = show; }
bool GetShow() const { return m_show; }
// return true if the window was shown, false if hidden
bool IsShown() const { return m_show; }
#ifdef WXWIN_COMPATIBILITY_2_8
wxDEPRECATED( bool GetShow() const { return IsShown(); } )
#endif
virtual wxEvent *Clone() const { return new wxShowEvent(*this); }
@@ -1391,8 +1397,11 @@ public:
: wxEvent(event)
{ m_iconized = event.m_iconized; }
#ifdef WXWIN_COMPATIBILITY_2_8
wxDEPRECATED( bool Iconized() const { return IsIconized(); } )
#endif
// return true if the frame was iconized, false if restored
bool Iconized() const { return m_iconized; }
bool IsIconized() const { return m_iconized; }
virtual wxEvent *Clone() const { return new wxIconizeEvent(*this); }