git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23648
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#include "wx/msw/private.h"
#include "wx/log.h"
#include "wx/evtloop.h"
#include "wx/msw/private.h"
#include "wx/log.h"
#include "wx/evtloop.h"
+#include "wx/ptr_scpd.h"
#if wxUSE_COMMON_DIALOGS && !defined(__WXMICROWIN__)
#include <commdlg.h>
#if wxUSE_COMMON_DIALOGS && !defined(__WXMICROWIN__)
#include <commdlg.h>
// wxDialogModalData
// ----------------------------------------------------------------------------
// wxDialogModalData
// ----------------------------------------------------------------------------
-// this is simply a container for wxEventLoop and wxWindowDisabler which allows
-// to have a single opaque pointer in wxDialog itself
+// this is simply a container for any data we need to implement modality which
+// allows us to avoid changing wxDialog each time the implementation changes
class wxDialogModalData
{
public:
class wxDialogModalData
{
public:
- wxDialogModalData() { m_windowDisabler = NULL; }
+ wxDialogModalData(wxDialog *dialog) : m_evtLoop(dialog) { }
- void RunLoop(wxDialog *dialog)
- m_windowDisabler = new wxWindowDisabler(dialog);
-
m_evtLoop.Run();
}
void ExitLoop()
{
m_evtLoop.Run();
}
void ExitLoop()
{
- delete m_windowDisabler;
- m_windowDisabler = NULL;
-
- ~wxDialogModalData()
- {
- wxASSERT_MSG( !m_windowDisabler, _T("forgot to call ExitLoop?") );
- }
-
- wxEventLoop m_evtLoop;
- wxWindowDisabler *m_windowDisabler;
+ wxModalEventLoop m_evtLoop;
+wxDEFINE_TIED_SCOPED_PTR_TYPE(wxDialogModalData);
+
// ============================================================================
// implementation
// ============================================================================
// ============================================================================
// implementation
// ============================================================================
hwndOldFocus = GetHwndOf(parent);
}
hwndOldFocus = GetHwndOf(parent);
}
- // before entering the modal loop, reset the "is in OnIdle()" flag (see
- // comment in app.cpp)
- extern bool wxIsInOnIdleFlag;
- bool wasInOnIdle = wxIsInOnIdleFlag;
- wxIsInOnIdleFlag = FALSE;
-
- m_modalData = new wxDialogModalData;
- m_modalData->RunLoop(this);
- delete m_modalData;
- m_modalData = NULL;
-
- wxIsInOnIdleFlag = wasInOnIdle;
+ {
+ wxDialogModalDataTiedPtr modalData(&m_modalData,
+ new wxDialogModalData(this));
+ modalData->RunLoop();
+ }
// and restore focus
// Note that this code MUST NOT access the dialog object's data
// and restore focus
// Note that this code MUST NOT access the dialog object's data