diff options
author | Tor Lillqvist <tml@collabora.com> | 2018-05-23 23:17:19 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2018-05-24 08:11:57 +0200 |
commit | 232103d09e55309ccb77cf2e481df46a9ae6fe83 (patch) | |
tree | 08af070c87366b68163fd9b5e8745d46638ef82d | |
parent | 25cc0ab3b5d154fffbef27fad4adcf90f36ae92e (diff) |
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@libreoffice.org>
Reviewed-by: Tor Lillqvist <tml@collabora.com>
-rw-r--r-- | include/vcl/syswin.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
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 |