From 232103d09e55309ccb77cf2e481df46a9ae6fe83 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Wed, 23 May 2018 23:17:19 +0300 Subject: [PATCH] Add FullScreen bit to WindowStateState FullScreen in this context means a top-level window that is both full-screen from the desktop environment's perspective (which depending on the desktop environment might simply mean that it is as large as possible to fill its screen, leaving any system menus etc visible), *and* is in LibreOffice's full-screen mode (with no toolbars or other UI elements except the document contents visible). Not yet used, will be used in follow-up commits. Change-Id: Ia6f86e0d2a7c5a621c6f19d897d3b17ba6bfb8b4 Reviewed-on: https://gerrit.libreoffice.org/54733 Tested-by: Jenkins Reviewed-by: Tor Lillqvist --- include/vcl/syswin.hxx | 1 + 1 file changed, 1 insertion(+) diff --git a/include/vcl/syswin.hxx b/include/vcl/syswin.hxx index 4a2088114fc6..f9453f106a30 100644 --- a/include/vcl/syswin.hxx +++ b/include/vcl/syswin.hxx @@ -70,6 +70,7 @@ enum class WindowStateState { Rollup = 0x0008, MaximizedHorz = 0x0010, MaximizedVert = 0x0020, + FullScreen = 0x0040, SystemMask = 0xffff }; namespace o3tl