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:
parent
ba53bf083e
commit
fd39f7a893
@ -65,7 +65,8 @@ public:
|
|||||||
const wxRect *rect = NULL );
|
const wxRect *rect = NULL );
|
||||||
virtual void Freeze();
|
virtual void Freeze();
|
||||||
virtual void Thaw();
|
virtual void Thaw();
|
||||||
|
virtual bool IsFrozen() const;
|
||||||
|
|
||||||
virtual void Update() ;
|
virtual void Update() ;
|
||||||
virtual void ClearBackground();
|
virtual void ClearBackground();
|
||||||
|
|
||||||
|
@ -2301,6 +2301,11 @@ void wxWindowMac::Thaw()
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool wxWindowMac::IsFrozen() const
|
||||||
|
{
|
||||||
|
return m_frozenness != 0;
|
||||||
|
}
|
||||||
|
|
||||||
wxWindowMac *wxGetActiveWindow()
|
wxWindowMac *wxGetActiveWindow()
|
||||||
{
|
{
|
||||||
// actually this is a windows-only concept
|
// actually this is a windows-only concept
|
||||||
|
Loading…
Reference in New Issue
Block a user