Add impl for IsFrozen

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42084 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2006-10-17 19:50:03 +00:00
parent ba53bf083e
commit fd39f7a893
2 changed files with 7 additions and 1 deletions

View File

@ -65,7 +65,8 @@ public:
const wxRect *rect = NULL );
virtual void Freeze();
virtual void Thaw();
virtual bool IsFrozen() const;
virtual void Update() ;
virtual void ClearBackground();

View File

@ -2301,6 +2301,11 @@ void wxWindowMac::Thaw()
#endif
}
bool wxWindowMac::IsFrozen() const
{
return m_frozenness != 0;
}
wxWindowMac *wxGetActiveWindow()
{
// actually this is a windows-only concept