/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #ifndef INCLUDED_VCL_CANVASTOOLS_HXX #define INCLUDED_VCL_CANVASTOOLS_HXX #include #include #include #include #include class Point; class Size; class Rectangle; class Polygon; namespace tools { class PolyPolygon; } class Bitmap; class BitmapEx; class Color; namespace basegfx { class B2DVector; class B2DPoint; class B2DRange; class B2IVector; class B2IPoint; class B2IRange; class B2DPolygon; class B2DPolyPolygon; } namespace com { namespace sun { namespace star { namespace geometry { struct RealPoint2D; struct RealSize2D; struct RealRectangle2D; struct IntegerPoint2D; struct IntegerSize2D; struct IntegerRectangle2D; struct RealBezierSegment2D; } } } } namespace com { namespace sun { namespace star { namespace rendering { class XGraphicDevice; class XBitmap; class XIntegerBitmap; class XIntegerReadOnlyBitmap; class XPolyPolygon2D; } } } } namespace vcl { namespace unotools { // Bitmap conversions /** Create an XBitmap from VCL BitmapEx */ ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XBitmap > VCL_DLLPUBLIC xBitmapFromBitmapEx( const ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XGraphicDevice >& xGraphicDevice, const ::BitmapEx& inputBitmap ); /** Create a BitmapEx from an XBitmap */ ::BitmapEx VCL_DLLPUBLIC bitmapExFromXBitmap( const ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XIntegerReadOnlyBitmap >& xInputBitmap ); // Color conversions (vcl/tools Color <-> canvas standard color space) /** Create a device-specific color sequence from VCL/Tools color Note that this method assumes a color space equivalent to the one returned from createStandardColorSpace() */ ::com::sun::star::uno::Sequence< double > VCL_DLLPUBLIC colorToStdColorSpaceSequence( const Color& rColor ); /** Convert color to device color sequence @param rColor Color to convert @param xColorSpace Color space to convert into */ ::com::sun::star::uno::Sequence< double > VCL_DLLPUBLIC colorToDoubleSequence( const Color& rColor, const ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XColorSpace >& xColorSpace ); /** Convert from standard device color space to VCL/Tools color Note that this method assumes a color space equivalent to the one returned from createStandardColorSpace() */ Color VCL_DLLPUBLIC stdColorSpaceSequenceToColor( const ::com::sun::star::uno::Sequence< double >& rColor ); /** Convert color to device color sequence @param rColor Color sequence to convert from @param xColorSpace Color space to convert from */ Color VCL_DLLPUBLIC doubleSequenceToColor( const ::com::sun::star::uno::Sequence< double >& rColor, const ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XColorSpace >& xColorSpace ); /// Convert [0,1] double value to [0,255] int inline sal_Int8 toByteColor( double val ) { return sal::static_int_cast( basegfx::fround(val*255.0)); } /// Convert [0,255] int value to [0,1] double value inline double toDoubleColor( sal_uInt8 val ) { return val / 255.0; } /// Create a standard color space suitable for VCL RGB color ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XColorSpace> VCL_DLLPUBLIC createStandardColorSpace(); // Geometry conversions (vcl/tools <-> x) // geometry::Real ::com::sun::star::geometry::RealSize2D VCL_DLLPUBLIC size2DFromSize( const Size& ); Size VCL_DLLPUBLIC sizeFromRealSize2D( const ::com::sun::star::geometry::RealSize2D& ); // geometry::Integer ::com::sun::star::geometry::IntegerSize2D VCL_DLLPUBLIC integerSize2DFromSize( const Size& ); Size VCL_DLLPUBLIC sizeFromIntegerSize2D( const ::com::sun::star::geometry::IntegerSize2D& ); Point VCL_DLLPUBLIC pointFromIntegerPoint2D( const ::com::sun::star::geometry::IntegerPoint2D& ); Rectangle VCL_DLLPUBLIC rectangleFromIntegerRectangle2D( const ::com::sun::star::geometry::IntegerRectangle2D& ); // basegfx::B2D Size VCL_DLLPUBLIC sizeFromB2DSize( const ::basegfx::B2DVector& ); Point VCL_DLLPUBLIC pointFromB2DPoint( const ::basegfx::B2DPoint& ); Rectangle VCL_DLLPUBLIC rectangleFromB2DRectangle( const ::basegfx::B2DRange& ); basegfx::B2DVector VCL_DLLPUBLIC b2DSizeFromSize( const Size& ); basegfx::B2DPoint VCL_DLLPUBLIC b2DPointFromPoint( const Point& ); basegfx::B2DRange VCL_DLLPUBLIC b2DRectangleFromRectangle( const Rectangle& ); // basegfx::B2I Point VCL_DLLPUBLIC pointFromB2IPoint( const ::basegfx::B2IPoint& ); Rectangle VCL_DLLPUBLIC rectangleFromB2IRectangle( const ::basegfx::B2IRange& ); } } #endif // INCLUDED_VCL_CANVASTOOLS_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ +backports'>distro/lhm/libreoffice-7-4+backports LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-11-11clang-tidy: performance-unnecessary-copy-initialization in frameworkNoel Grandin
Change-Id: I2ebf2c49ec9aa03f46abdbd2149f04ed5a22f94b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/176416 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-06-02clang-tidy modernize-pass-by-value in frameworkNoel Grandin
Change-Id: I024653154c51389bb27f3e94b422ff7fc1c9b46b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135296 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2022-04-13loplugin:stringviewparam whitelist some more functionsNoel Grandin
for which we have o3tl:: equivalents Change-Id: I4670fd8b703ac47214be213f41e88d1c6ede7032 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/132913 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-10-30Prepare for removal of non-const operator[] from Sequence in frameworkMike Kaganski
Change-Id: Ied2683a0b8a1bab1a7594da1e9bdbd3cb753552c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124370 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2021-02-21loplugin:refcounting in frameworkNoel
Change-Id: I2d7d14fe0335689e4a338c70587bf33137ed1ddd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111279 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>