Utility/Window: Improve visibility of deprecated methods

Former-commit-id: f0f794407f33b485962dacf1f1ac39ea5beac7de [formerly b40cb93e11aa6bc2242c745607ee748567192f7c] [formerly 41f4a381d9742dd586673e0685be31541edf5864 [formerly 4190ba3ddbd098f79909b244b0dea90cbb924771]]
Former-commit-id: 887f75b329b705181f5c1a5d00297b2377e0b626 [formerly c199d56deb1d59d95b19c5684c0f3529f6d62e58]
Former-commit-id: 960ff4eab6b9886095c1ae079753161d4b5c6be1
This commit is contained in:
Lynix 2016-08-28 01:20:31 +02:00
parent 134063a87d
commit cda509da6f
1 changed files with 8 additions and 3 deletions

View File

@ -53,7 +53,10 @@ namespace Nz
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 EnableSmoothScrolling(bool enable);
@ -74,7 +77,8 @@ namespace Nz
inline bool IsValid() const;
bool IsVisible() const;
NAZARA_DEPRECATED("Event pooling/waiting is deprecated, please use the EventHandler system") bool PollEvent(WindowEvent* event);
NAZARA_DEPRECATED("Event pooling/waiting is deprecated, please use the EventHandler system")
bool PollEvent(WindowEvent* event);
void ProcessEvents(bool block = false);
@ -95,7 +99,8 @@ namespace Nz
void SetTitle(const String& title);
void SetVisible(bool visible);
NAZARA_DEPRECATED("Event pooling/waiting is deprecated, please use the EventHandler system")bool WaitEvent(WindowEvent* event);
NAZARA_DEPRECATED("Event pooling/waiting is deprecated, please use the EventHandler system")
bool WaitEvent(WindowEvent* event);
Window& operator=(const Window&) = delete;
inline Window& operator=(Window&& window);