git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55115
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#ifndef __GTKDIALOGH__
#define __GTKDIALOGH__
#ifndef __GTKDIALOGH__
#define __GTKDIALOGH__
+class WXDLLIMPEXP_FWD_CORE wxGUIEventLoop;
+
//-----------------------------------------------------------------------------
// wxDialog
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// wxDialog
//-----------------------------------------------------------------------------
private:
// common part of all ctors
void Init();
private:
// common part of all ctors
void Init();
+ wxGUIEventLoop *m_modalLoop;
DECLARE_DYNAMIC_CLASS(wxDialog)
};
DECLARE_DYNAMIC_CLASS(wxDialog)
};
+#include "wx/ptr_scpd.h"
+
#include <gtk/gtk.h>
// this is defined in src/gtk/toplevel.cpp
extern int wxOpenModalDialogsCount;
#include <gtk/gtk.h>
// this is defined in src/gtk/toplevel.cpp
extern int wxOpenModalDialogsCount;
+wxDEFINE_TIED_SCOPED_PTR_TYPE(wxGUIEventLoop);
+
+
//-----------------------------------------------------------------------------
// wxDialog
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// wxDialog
//-----------------------------------------------------------------------------
m_returnCode = 0;
m_modalShowing = false;
m_themeEnabled = true;
m_returnCode = 0;
m_modalShowing = false;
m_themeEnabled = true;
// NOTE: gtk_window_set_modal internally calls gtk_grab_add() !
gtk_window_set_modal(GTK_WINDOW(m_widget), TRUE);
// NOTE: gtk_window_set_modal internally calls gtk_grab_add() !
gtk_window_set_modal(GTK_WINDOW(m_widget), TRUE);
- wxGUIEventLoop().Run();
+ // Run modal dialog event loop.
+ {
+ wxGUIEventLoopTiedPtr modal(&m_modalLoop, new wxGUIEventLoop());
+ m_modalLoop->Run();
+ }
gtk_window_set_modal(GTK_WINDOW(m_widget), FALSE);
gtk_window_set_modal(GTK_WINDOW(m_widget), FALSE);
+ // Ensure Exit() is only called once. The dialog's event loop may be terminated
+ // externally due to an uncaught exception.
+ if (m_modalLoop && m_modalLoop->IsRunning())
+ m_modalLoop->Exit();