diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-09-07 11:00:58 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-09-07 14:11:57 +0200 |
commit | 33d1e38baf86378d34fd59e7a86c59ec8e16973c (patch) | |
tree | 735c32895704f1a070e3d40ebe367ab183de1593 | |
parent | 4b7ee7bd61f78be60211cc72ba36da987191266e (diff) |
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@collabora.co.uk>
-rw-r--r-- | include/vcl/window.hxx | 7 |
1 files changed, 7 insertions, 0 deletions
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 |