[Libreoffice-commits] core.git: include/vcl
Tor Lillqvist
tml at collabora.com
Thu May 24 06:12:19 UTC 2018
include/vcl/syswin.hxx | 1 +
1 file changed, 1 insertion(+)
New commits:
commit 232103d09e55309ccb77cf2e481df46a9ae6fe83
Author: Tor Lillqvist <tml at collabora.com>
Date: Wed May 23 23:17:19 2018 +0300
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 <ci at libreoffice.org>
Reviewed-by: Tor Lillqvist <tml at collabora.com>
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
More information about the Libreoffice-commits
mailing list