[Libreoffice-commits] core.git: include/vcl
Noel Grandin (via logerrit)
logerrit at kemper.freedesktop.org
Mon Sep 7 12:12:35 UTC 2020
include/vcl/window.hxx | 7 +++++++
1 file changed, 7 insertions(+)
New commits:
commit 33d1e38baf86378d34fd59e7a86c59ec8e16973c
Author: Noel Grandin <noel.grandin at collabora.co.uk>
AuthorDate: Mon Sep 7 11:00:58 2020 +0200
Commit: Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Mon Sep 7 14:11:57 2020 +0200
copy docs to InvalidateFlags
from InvalidateStyle.idl, so I don't have to keep jumping around to
figure out what this means
Change-Id: Iee7d5f2a83afba075f15c44a36a5b4a8def04724
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102160
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>
diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx
index 4723c1d69921..bb2d7355b0d8 100644
--- a/include/vcl/window.hxx
+++ b/include/vcl/window.hxx
@@ -212,12 +212,19 @@ namespace o3tl
enum class InvalidateFlags
{
NONE = 0x0000,
+ /** The child windows are invalidated, too. */
Children = 0x0001,
+ /** The child windows are not invalidated. */
NoChildren = 0x0002,
+ /** The invalidated area is painted with the background color/pattern. */
NoErase = 0x0004,
+ /** The invalidated area is updated immediately. */
Update = 0x0008,
+ /** The parent window is invalidated, too. */
Transparent = 0x0010,
+ /** The parent window is not invalidated. */
NoTransparent = 0x0020,
+ /** The area is invalidated regardless of overlapping child windows. */
NoClipChildren = 0x4000,
};
namespace o3tl
More information about the Libreoffice-commits
mailing list