2006-03-06 20:50:21 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/wupdlock.h
|
|
|
|
// Purpose: wxWindowUpdateLocker prevents window redrawing
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Created: 2006-03-06
|
2019-04-22 08:12:05 -04:00
|
|
|
// Copyright: (c) 2006 Vadim Zeitlin <vadim@wxwidgets.org>
|
2006-03-06 20:50:21 -05:00
|
|
|
// Licence: wxWindows licence
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_WUPDLOCK_H_
|
|
|
|
#define _WX_WUPDLOCK_H_
|
|
|
|
|
|
|
|
#include "wx/window.h"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxWindowUpdateLocker prevents updates to the window during its lifetime
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxWindowUpdateLocker
|
|
|
|
{
|
|
|
|
public:
|
2020-05-23 20:38:13 -04:00
|
|
|
// Prefer using the ctor below if possible, this ctor is only useful if
|
|
|
|
// Lock() must be called only conditionally.
|
|
|
|
wxWindowUpdateLocker() : m_win(NULL) { }
|
|
|
|
|
2006-03-06 20:50:21 -05:00
|
|
|
// create an object preventing updates of the given window (which must have
|
|
|
|
// a lifetime at least as great as ours)
|
2020-05-23 20:29:05 -04:00
|
|
|
explicit wxWindowUpdateLocker(wxWindow *win) : m_win(win) { win->Freeze(); }
|
2006-03-06 20:50:21 -05:00
|
|
|
|
2020-05-23 20:38:13 -04:00
|
|
|
// May be called only for the object constructed using the default ctor.
|
|
|
|
void Lock(wxWindow *win)
|
|
|
|
{
|
|
|
|
wxASSERT( !m_win );
|
|
|
|
|
|
|
|
m_win = win;
|
|
|
|
win->Freeze();
|
|
|
|
}
|
|
|
|
|
2006-03-06 20:50:21 -05:00
|
|
|
// dtor thaws the window to permit updates again
|
2020-05-23 20:38:13 -04:00
|
|
|
~wxWindowUpdateLocker()
|
|
|
|
{
|
|
|
|
if ( m_win )
|
|
|
|
m_win->Thaw();
|
|
|
|
}
|
2006-03-06 20:50:21 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
wxWindow *m_win;
|
|
|
|
|
2009-02-08 06:45:59 -05:00
|
|
|
wxDECLARE_NO_COPY_CLASS(wxWindowUpdateLocker);
|
2006-03-06 20:50:21 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_WUPDLOCK_H_
|
|
|
|
|