diff options
Diffstat (limited to 'src/Window.hh')
-rw-r--r-- | src/Window.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Window.hh b/src/Window.hh index 4e5956f..4923ca6 100644 --- a/src/Window.hh +++ b/src/Window.hh | |||
@@ -342,6 +342,8 @@ public: | |||
342 | inline bool isShaded() const { return shaded; } | 342 | inline bool isShaded() const { return shaded; } |
343 | inline bool isFullscreen() const { return fullscreen; } | 343 | inline bool isFullscreen() const { return fullscreen; } |
344 | inline bool isMaximized() const { return maximized == MAX_FULL; } | 344 | inline bool isMaximized() const { return maximized == MAX_FULL; } |
345 | inline bool isMaximizedVert() const { return (bool)(maximized & MAX_VERT); } | ||
346 | inline bool isMaximizedHorz() const { return (bool)(maximized & MAX_HORZ); } | ||
345 | inline bool isIconifiable() const { return functions.iconify; } | 347 | inline bool isIconifiable() const { return functions.iconify; } |
346 | inline bool isMaximizable() const { return functions.maximize; } | 348 | inline bool isMaximizable() const { return functions.maximize; } |
347 | inline bool isResizable() const { return functions.resize; } | 349 | inline bool isResizable() const { return functions.resize; } |