1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef _VCL_CANVASTOOLS_HXX
21 #define _VCL_CANVASTOOLS_HXX
23 #include <com/sun/star/uno/Reference.hxx>
24 #include <com/sun/star/uno/Sequence.hxx>
25 #include <com/sun/star/rendering/XColorSpace.hpp>
26 #include <basegfx/numeric/ftools.hxx>
28 #include <vcl/dllapi.h>
51 namespace com
{ namespace sun
{ namespace star
{ namespace geometry
55 struct RealRectangle2D
;
56 struct IntegerPoint2D
;
58 struct IntegerRectangle2D
;
59 struct RealBezierSegment2D
;
62 namespace com
{ namespace sun
{ namespace star
{ namespace rendering
67 class XIntegerReadOnlyBitmap
;
76 // ===================================================================
78 /** Create an XBitmap from VCL BitmapEx
80 ::com::sun::star::uno::Reference
< ::com::sun::star::rendering::XBitmap
>
81 VCL_DLLPUBLIC
xBitmapFromBitmapEx( const ::com::sun::star::uno::Reference
<
82 ::com::sun::star::rendering::XGraphicDevice
>& xGraphicDevice
,
83 const ::BitmapEx
& inputBitmap
);
85 /** Create a BitmapEx from an XBitmap
87 ::BitmapEx VCL_DLLPUBLIC
bitmapExFromXBitmap( const ::com::sun::star::uno::Reference
<
88 ::com::sun::star::rendering::XIntegerReadOnlyBitmap
>& xInputBitmap
);
90 // Color conversions (vcl/tools Color <-> canvas standard color space)
91 // ===================================================================
93 /** Convert color to device color sequence
99 Color space to convert into
101 ::com::sun::star::uno::Sequence
< double >
102 VCL_DLLPUBLIC
colorToDoubleSequence( const Color
& rColor
,
103 const ::com::sun::star::uno::Reference
<
104 ::com::sun::star::rendering::XColorSpace
>& xColorSpace
);
106 /** Convert from standard device color space to VCL/Tools color
108 Note that this method assumes a color space equivalent to
109 the one returned from createStandardColorSpace()
111 Color VCL_DLLPUBLIC
stdColorSpaceSequenceToColor(
112 const ::com::sun::star::uno::Sequence
< double >& rColor
);
114 /** Convert color to device color sequence
117 Color sequence to convert from
120 Color space to convert from
122 Color VCL_DLLPUBLIC
doubleSequenceToColor( const ::com::sun::star::uno::Sequence
< double > rColor
,
123 const ::com::sun::star::uno::Reference
<
124 ::com::sun::star::rendering::XColorSpace
>& xColorSpace
);
126 /// Convert [0,1] double value to [0,255] int
127 inline sal_Int8
toByteColor( double val
)
129 return sal::static_int_cast
<sal_Int8
>(
130 basegfx::fround(val
*255.0));
133 /// Convert [0,255] int value to [0,1] double value
134 inline double toDoubleColor( sal_uInt8 val
)
139 /// Create a standard color space suitable for VCL RGB color
140 ::com::sun::star::uno::Reference
<
141 ::com::sun::star::rendering::XColorSpace
> VCL_DLLPUBLIC
createStandardColorSpace();
143 // Geometry conversions (vcl/tools <-> x)
144 // ===================================================================
147 ::com::sun::star::geometry::RealSize2D VCL_DLLPUBLIC
size2DFromSize( const Size
& );
149 Size VCL_DLLPUBLIC
sizeFromRealSize2D( const ::com::sun::star::geometry::RealSize2D
& );
152 ::com::sun::star::geometry::IntegerSize2D VCL_DLLPUBLIC
integerSize2DFromSize( const Size
& );
154 Size VCL_DLLPUBLIC
sizeFromIntegerSize2D( const ::com::sun::star::geometry::IntegerSize2D
& );
155 Point VCL_DLLPUBLIC
pointFromIntegerPoint2D( const ::com::sun::star::geometry::IntegerPoint2D
& );
156 Rectangle VCL_DLLPUBLIC
rectangleFromIntegerRectangle2D( const ::com::sun::star::geometry::IntegerRectangle2D
& );
159 Size VCL_DLLPUBLIC
sizeFromB2DSize( const ::basegfx::B2DVector
& );
160 Point VCL_DLLPUBLIC
pointFromB2DPoint( const ::basegfx::B2DPoint
& );
161 Rectangle VCL_DLLPUBLIC
rectangleFromB2DRectangle( const ::basegfx::B2DRange
& );
163 basegfx::B2DVector VCL_DLLPUBLIC
b2DSizeFromSize( const Size
& );
164 basegfx::B2DPoint VCL_DLLPUBLIC
b2DPointFromPoint( const Point
& );
165 basegfx::B2DRange VCL_DLLPUBLIC
b2DRectangleFromRectangle( const Rectangle
& );
168 Point VCL_DLLPUBLIC
pointFromB2IPoint( const ::basegfx::B2IPoint
& );
169 Rectangle VCL_DLLPUBLIC
rectangleFromB2IRectangle( const ::basegfx::B2IRange
& );
173 #endif /* _VCL_CANVASTOOLS_HXX */
175 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */