Utility/Window: Window now automatically close on quit event
Former-commit-id: 727311111afc6108dc1d2140ea1b4de46158160a [formerly 2d54d14f17deb75d949c63bd1f84b697fd7338ba] [formerly 5567a99268b022010d70c18d28e16d09dde8dd65 [formerly 6db94dce7ebfa5110d0279868ebda4728e20cc95]] Former-commit-id: 864263f18501629c2f5bc50453a41d5a24e8cf2a [formerly f065aa1bebdc2bc3b3eb455f90381b3e990530c2] Former-commit-id: f21791c84c9f024db8e12a6985b22e07d01a0a27
This commit is contained in:
parent
326db9fa30
commit
f16187674c
|
|
@ -52,6 +52,7 @@ namespace Nz
|
||||||
|
|
||||||
void Destroy();
|
void Destroy();
|
||||||
|
|
||||||
|
inline void EnableCloseOnQuit(bool closeOnQuit);
|
||||||
NAZARA_DEPRECATED("Event pooling/waiting is deprecated, please use the EventHandler system") inline void EnableEventPolling(bool enable);
|
NAZARA_DEPRECATED("Event pooling/waiting is deprecated, please use the EventHandler system") inline void EnableEventPolling(bool enable);
|
||||||
void EnableKeyRepeat(bool enable);
|
void EnableKeyRepeat(bool enable);
|
||||||
void EnableSmoothScrolling(bool enable);
|
void EnableSmoothScrolling(bool enable);
|
||||||
|
|
@ -122,6 +123,7 @@ namespace Nz
|
||||||
#endif
|
#endif
|
||||||
EventHandler m_eventHandler;
|
EventHandler m_eventHandler;
|
||||||
bool m_closed;
|
bool m_closed;
|
||||||
|
bool m_closeOnQuit;
|
||||||
bool m_eventPolling;
|
bool m_eventPolling;
|
||||||
bool m_ownsWindow;
|
bool m_ownsWindow;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,7 @@ namespace Nz
|
||||||
#if NAZARA_UTILITY_THREADED_WINDOW
|
#if NAZARA_UTILITY_THREADED_WINDOW
|
||||||
m_waitForEvent(false),
|
m_waitForEvent(false),
|
||||||
#endif
|
#endif
|
||||||
|
m_closeOnQuit(true),
|
||||||
m_eventPolling(false)
|
m_eventPolling(false)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
@ -44,10 +45,11 @@ namespace Nz
|
||||||
m_eventCondition(std::move(window.m_eventCondition)),
|
m_eventCondition(std::move(window.m_eventCondition)),
|
||||||
m_eventMutex(std::move(window.m_eventMutex)),
|
m_eventMutex(std::move(window.m_eventMutex)),
|
||||||
m_eventConditionMutex(std::move(window.m_eventConditionMutex)),
|
m_eventConditionMutex(std::move(window.m_eventConditionMutex)),
|
||||||
m_eventPolling(window.m_eventPolling),
|
|
||||||
m_waitForEvent(window.m_waitForEvent),
|
m_waitForEvent(window.m_waitForEvent),
|
||||||
#endif
|
#endif
|
||||||
m_closed(window.m_closed),
|
m_closed(window.m_closed),
|
||||||
|
m_closeOnQuit(window.m_closeOnQuit),
|
||||||
|
m_eventPolling(window.m_eventPolling),
|
||||||
m_ownsWindow(window.m_ownsWindow)
|
m_ownsWindow(window.m_ownsWindow)
|
||||||
{
|
{
|
||||||
window.m_impl = nullptr;
|
window.m_impl = nullptr;
|
||||||
|
|
@ -63,6 +65,11 @@ namespace Nz
|
||||||
m_closed = true; // The window will be closed at the next non-const IsOpen() call
|
m_closed = true; // The window will be closed at the next non-const IsOpen() call
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline void Window::EnableCloseOnQuit(bool closeOnQuit)
|
||||||
|
{
|
||||||
|
m_closeOnQuit = closeOnQuit;
|
||||||
|
}
|
||||||
|
|
||||||
inline void Window::EnableEventPolling(bool enable)
|
inline void Window::EnableEventPolling(bool enable)
|
||||||
{
|
{
|
||||||
m_eventPolling = enable;
|
m_eventPolling = enable;
|
||||||
|
|
@ -116,6 +123,9 @@ namespace Nz
|
||||||
if (event.type == WindowEventType_Resized)
|
if (event.type == WindowEventType_Resized)
|
||||||
OnWindowResized();
|
OnWindowResized();
|
||||||
|
|
||||||
|
if (event.type == WindowEventType_Quit && m_closeOnQuit)
|
||||||
|
Close();
|
||||||
|
|
||||||
#if NAZARA_UTILITY_THREADED_WINDOW
|
#if NAZARA_UTILITY_THREADED_WINDOW
|
||||||
m_eventMutex.Unlock();
|
m_eventMutex.Unlock();
|
||||||
|
|
||||||
|
|
@ -137,6 +147,7 @@ namespace Nz
|
||||||
Destroy();
|
Destroy();
|
||||||
|
|
||||||
m_closed = window.m_closed;
|
m_closed = window.m_closed;
|
||||||
|
m_closeOnQuit = window.m_closeOnQuit;
|
||||||
m_eventPolling = window.m_eventPolling;
|
m_eventPolling = window.m_eventPolling;
|
||||||
m_impl = window.m_impl;
|
m_impl = window.m_impl;
|
||||||
m_events = std::move(window.m_events);
|
m_events = std::move(window.m_events);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue