diff options
Diffstat (limited to 'source/Irrlicht/CIrrDeviceLinux.h')
-rw-r--r-- | source/Irrlicht/CIrrDeviceLinux.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/Irrlicht/CIrrDeviceLinux.h b/source/Irrlicht/CIrrDeviceLinux.h index fe1ede0..c456a1a 100644 --- a/source/Irrlicht/CIrrDeviceLinux.h +++ b/source/Irrlicht/CIrrDeviceLinux.h @@ -64,6 +64,9 @@ namespace irr //! returns if window is minimized.
bool isWindowMinimized() const override;
+ //! returns last state from maximizeWindow() and restoreWindow()
+ bool isWindowMaximized() const override;
+
//! returns color format of the window.
video::ECOLOR_FORMAT getColorFormat() const override;
@@ -415,6 +418,7 @@ namespace irr u32 Width, Height;
bool WindowHasFocus;
bool WindowMinimized;
+ bool WindowMaximized;
bool ExternalWindow;
int AutorepeatSupport;
|