summaryrefslogtreecommitdiff
path: root/toolkit/inc
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2021-08-25 17:07:07 +1000
committerMike Kaganski <mike.kaganski@collabora.com>2021-09-07 08:15:00 +0200
commit7ccfae545d7650a7f3e6bc8a010c97cd0a60e9a5 (patch)
treefa6cb2979c90ef935df0c83cfdbbbfcfa4ea00ff /toolkit/inc
parente70399e5bd4a41a2989030ddfb0404b6248f655d (diff)
vcl: move OutputDevice rasterop functions to outdev.cxx
Split off RasterOp enum into own header, and also add unit tests for SetRasterOp() and GetRasterOp(). Change-Id: I1c97e87ef2d0684cb15b6ac544597eace5adb48a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121018 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'toolkit/inc')
-rw-r--r--toolkit/inc/awt/vclxgraphics.hxx15
1 files changed, 8 insertions, 7 deletions
diff --git a/toolkit/inc/awt/vclxgraphics.hxx b/toolkit/inc/awt/vclxgraphics.hxx
index 3ab8b59b8b2b..68902084ff24 100644
--- a/toolkit/inc/awt/vclxgraphics.hxx
+++ b/toolkit/inc/awt/vclxgraphics.hxx
@@ -19,18 +19,19 @@
#pragma once
-
-#include <com/sun/star/awt/XGraphics2.hpp>
-#include <com/sun/star/lang/XTypeProvider.hpp>
-#include <com/sun/star/lang/XUnoTunnel.hpp>
#include <comphelper/servicehelper.hxx>
#include <cppuhelper/implbase.hxx>
-
-#include <vcl/font.hxx>
#include <tools/color.hxx>
+#include <o3tl/typed_flags_set.hxx>
+#include <vcl/font.hxx>
+#include <vcl/rendercontext/RasterOp.hxx>
#include <vcl/vclenum.hxx>
#include <vcl/vclptr.hxx>
-#include <o3tl/typed_flags_set.hxx>
+
+#include <com/sun/star/awt/XGraphics2.hpp>
+#include <com/sun/star/lang/XTypeProvider.hpp>
+#include <com/sun/star/lang/XUnoTunnel.hpp>
+
#include <memory>
class OutputDevice;