LCOV - code coverage report
Current view: top level - vcl/source/gdi - graphictools.cxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 160 0.0 %
Date: 2014-04-14 Functions: 0 33 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       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/.
       8             :  *
       9             :  * This file incorporates work covered by the following license notice:
      10             :  *
      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 .
      18             :  */
      19             : 
      20             : #include <tools/vcompat.hxx>
      21             : 
      22             : #include <vcl/graphictools.hxx>
      23             : 
      24           0 : SvtGraphicFill::Transform::Transform()
      25             : {
      26           0 :     matrix[0] = 1.0; matrix[1] = 0.0; matrix[2] = 0.0;
      27           0 :     matrix[3] = 0.0; matrix[4] = 1.0; matrix[5] = 0.0;
      28           0 : }
      29             : 
      30           0 : SvtGraphicStroke::SvtGraphicStroke() :
      31             :     maPath(),
      32             :     maStartArrow(),
      33             :     maEndArrow(),
      34             :     mfTransparency(),
      35             :     mfStrokeWidth(),
      36             :     maCapType(),
      37             :     maJoinType(),
      38             :     mfMiterLimit( 3.0 ),
      39           0 :     maDashArray()
      40             : {
      41           0 : }
      42             : 
      43           0 : SvtGraphicStroke::SvtGraphicStroke( const Polygon&      rPath,
      44             :                                     const PolyPolygon&  rStartArrow,
      45             :                                     const PolyPolygon&  rEndArrow,
      46             :                                     double              fTransparency,
      47             :                                     double              fStrokeWidth,
      48             :                                     CapType             aCap,
      49             :                                     JoinType            aJoin,
      50             :                                     double              fMiterLimit,
      51             :                                     const DashArray&    rDashArray  ) :
      52             :     maPath( rPath ),
      53             :     maStartArrow( rStartArrow ),
      54             :     maEndArrow( rEndArrow ),
      55             :     mfTransparency( fTransparency ),
      56             :     mfStrokeWidth( fStrokeWidth ),
      57             :     maCapType( aCap ),
      58             :     maJoinType( aJoin ),
      59             :     mfMiterLimit( fMiterLimit ),
      60           0 :     maDashArray( rDashArray )
      61             : {
      62           0 : }
      63             : 
      64           0 : void SvtGraphicStroke::getPath( Polygon& rPath ) const
      65             : {
      66           0 :     rPath = maPath;
      67           0 : }
      68             : 
      69           0 : void SvtGraphicStroke::getStartArrow( PolyPolygon& rPath ) const
      70             : {
      71           0 :     rPath = maStartArrow;
      72           0 : }
      73             : 
      74           0 : void SvtGraphicStroke::getEndArrow( PolyPolygon& rPath ) const
      75             : {
      76           0 :     rPath = maEndArrow;
      77           0 : }
      78             : 
      79           0 : double SvtGraphicStroke::getTransparency() const
      80             : {
      81           0 :     return mfTransparency;
      82             : }
      83             : 
      84           0 : double SvtGraphicStroke::getStrokeWidth() const
      85             : {
      86           0 :     return mfStrokeWidth;
      87             : }
      88             : 
      89           0 : SvtGraphicStroke::CapType SvtGraphicStroke::getCapType() const
      90             : {
      91           0 :     return maCapType;
      92             : }
      93             : 
      94           0 : SvtGraphicStroke::JoinType SvtGraphicStroke::getJoinType() const
      95             : {
      96           0 :     return maJoinType;
      97             : }
      98             : 
      99           0 : double SvtGraphicStroke::getMiterLimit() const
     100             : {
     101           0 :     return mfMiterLimit;
     102             : }
     103             : 
     104           0 : void SvtGraphicStroke::getDashArray( DashArray& rDashArray ) const
     105             : {
     106           0 :     rDashArray = maDashArray;
     107           0 : }
     108             : 
     109           0 : void SvtGraphicStroke::setPath( const Polygon& rPoly )
     110             : {
     111           0 :     maPath = rPoly;
     112           0 : }
     113             : 
     114           0 : void SvtGraphicStroke::setStartArrow( const PolyPolygon& rPoly )
     115             : {
     116           0 :     maStartArrow = rPoly;
     117           0 : }
     118             : 
     119           0 : void SvtGraphicStroke::setEndArrow( const PolyPolygon& rPoly )
     120             : {
     121           0 :     maEndArrow = rPoly;
     122           0 : }
     123             : 
     124           0 : void SvtGraphicStroke::scale( double fXScale, double fYScale )
     125             : {
     126             :     // Clearly scaling stroke-width for fat lines is rather a problem
     127           0 :     maPath.Scale( fXScale, fYScale );
     128             : 
     129           0 :     double fScale = sqrt (fabs (fXScale * fYScale) ); // clearly not ideal.
     130           0 :     mfStrokeWidth *= fScale;
     131           0 :     mfMiterLimit *= fScale;
     132             : 
     133           0 :     maStartArrow.Scale( fXScale, fYScale );
     134           0 :     maEndArrow.Scale( fXScale, fYScale );
     135           0 : }
     136             : 
     137           0 : SvStream& WriteSvtGraphicStroke( SvStream& rOStm, const SvtGraphicStroke& rClass )
     138             : {
     139           0 :     VersionCompat aCompat( rOStm, STREAM_WRITE, 1 );
     140             : 
     141           0 :     rClass.maPath.Write( rOStm );
     142           0 :     rClass.maStartArrow.Write( rOStm );
     143           0 :     rClass.maEndArrow.Write( rOStm );
     144           0 :     rOStm.WriteDouble( rClass.mfTransparency );
     145           0 :     rOStm.WriteDouble( rClass.mfStrokeWidth );
     146           0 :     sal_uInt16 nTmp = sal::static_int_cast<sal_uInt16>( rClass.maCapType );
     147           0 :     rOStm.WriteUInt16( nTmp );
     148           0 :     nTmp = sal::static_int_cast<sal_uInt16>( rClass.maJoinType );
     149           0 :     rOStm.WriteUInt16( nTmp );
     150           0 :     rOStm.WriteDouble( rClass.mfMiterLimit );
     151             : 
     152           0 :     rOStm.WriteUInt32( static_cast<sal_uInt32>(rClass.maDashArray.size()) );
     153             :     size_t i;
     154           0 :     for(i=0; i<rClass.maDashArray.size(); ++i)
     155           0 :         rOStm.WriteDouble( rClass.maDashArray[i] );
     156             : 
     157           0 :     return rOStm;
     158             : }
     159             : 
     160           0 : SvStream& ReadSvtGraphicStroke( SvStream& rIStm, SvtGraphicStroke& rClass )
     161             : {
     162           0 :     VersionCompat aCompat( rIStm, STREAM_READ );
     163             : 
     164           0 :     rClass.maPath.Read( rIStm );
     165           0 :     rClass.maStartArrow.Read( rIStm );
     166           0 :     rClass.maEndArrow.Read( rIStm );
     167           0 :     rIStm.ReadDouble( rClass.mfTransparency );
     168           0 :     rIStm.ReadDouble( rClass.mfStrokeWidth );
     169             :     sal_uInt16 nTmp;
     170           0 :     rIStm.ReadUInt16( nTmp );
     171           0 :     rClass.maCapType = SvtGraphicStroke::CapType(nTmp);
     172           0 :     rIStm.ReadUInt16( nTmp );
     173           0 :     rClass.maJoinType = SvtGraphicStroke::JoinType(nTmp);
     174           0 :     rIStm.ReadDouble( rClass.mfMiterLimit );
     175             : 
     176             :     sal_uInt32 nSize;
     177           0 :     rIStm.ReadUInt32( nSize );
     178           0 :     rClass.maDashArray.resize(nSize);
     179             :     size_t i;
     180           0 :     for(i=0; i<rClass.maDashArray.size(); ++i)
     181           0 :         rIStm.ReadDouble( rClass.maDashArray[i] );
     182             : 
     183           0 :     return rIStm;
     184             : }
     185             : 
     186           0 : SvtGraphicFill::SvtGraphicFill() :
     187             :     maPath(),
     188             :     maFillColor( COL_BLACK ),
     189             :     mfTransparency(),
     190             :     maFillRule(),
     191             :     maFillType(),
     192             :     maFillTransform(),
     193             :     mbTiling( false ),
     194             :     maHatchType(),
     195             :     maHatchColor( COL_BLACK ),
     196             :     maGradientType(),
     197             :     maGradient1stColor( COL_BLACK ),
     198             :     maGradient2ndColor( COL_BLACK ),
     199             :     maGradientStepCount( gradientStepsInfinite ),
     200           0 :     maFillGraphic()
     201             : {
     202           0 : }
     203             : 
     204           0 : SvtGraphicFill::SvtGraphicFill( const PolyPolygon&  rPath,
     205             :                                 Color               aFillColor,
     206             :                                 double              fTransparency,
     207             :                                 FillRule            aFillRule,
     208             :                                 FillType            aFillType,
     209             :                                 const Transform&    aFillTransform,
     210             :                                 bool                bTiling,
     211             :                                 HatchType           aHatchType,
     212             :                                 Color               aHatchColor,
     213             :                                 GradientType        aGradientType,
     214             :                                 Color               aGradient1stColor,
     215             :                                 Color               aGradient2ndColor,
     216             :                                 sal_Int32           aGradientStepCount,
     217             :                                 const Graphic&      aFillGraphic ) :
     218             :     maPath( rPath ),
     219             :     maFillColor( aFillColor ),
     220             :     mfTransparency( fTransparency ),
     221             :     maFillRule( aFillRule ),
     222             :     maFillType( aFillType ),
     223             :     maFillTransform( aFillTransform ),
     224             :     mbTiling( bTiling ),
     225             :     maHatchType( aHatchType ),
     226             :     maHatchColor( aHatchColor ),
     227             :     maGradientType( aGradientType ),
     228             :     maGradient1stColor( aGradient1stColor ),
     229             :     maGradient2ndColor( aGradient2ndColor ),
     230             :     maGradientStepCount( aGradientStepCount ),
     231           0 :     maFillGraphic( aFillGraphic )
     232             : {
     233           0 : }
     234             : 
     235           0 : void SvtGraphicFill::getPath( PolyPolygon& rPath ) const
     236             : {
     237           0 :     rPath = maPath;
     238           0 : }
     239             : 
     240           0 : Color SvtGraphicFill::getFillColor() const
     241             : {
     242           0 :     return maFillColor;
     243             : }
     244             : 
     245           0 : double SvtGraphicFill::getTransparency() const
     246             : {
     247           0 :     return mfTransparency;
     248             : }
     249             : 
     250           0 : SvtGraphicFill::FillRule SvtGraphicFill::getFillRule() const
     251             : {
     252           0 :     return maFillRule;
     253             : }
     254             : 
     255           0 : SvtGraphicFill::FillType SvtGraphicFill::getFillType() const
     256             : {
     257           0 :     return maFillType;
     258             : }
     259             : 
     260           0 : void SvtGraphicFill::getTransform( Transform& rTrans ) const
     261             : {
     262           0 :     rTrans = maFillTransform;
     263           0 : }
     264             : 
     265           0 : bool SvtGraphicFill::IsTiling() const
     266             : {
     267           0 :     return mbTiling;
     268             : }
     269             : 
     270           0 : bool SvtGraphicFill::isTiling() const
     271             : {
     272           0 :     return mbTiling;
     273             : }
     274             : 
     275           0 : SvtGraphicFill::GradientType SvtGraphicFill::getGradientType() const
     276             : {
     277           0 :     return maGradientType;
     278             : }
     279             : 
     280           0 : void SvtGraphicFill::getGraphic( Graphic& rGraphic ) const
     281             : {
     282           0 :     rGraphic = maFillGraphic;
     283           0 : }
     284             : 
     285           0 : void SvtGraphicFill::setPath( const PolyPolygon& rPath )
     286             : {
     287           0 :     maPath = rPath;
     288           0 : }
     289             : 
     290           0 : SvStream& WriteSvtGraphicFill( SvStream& rOStm, const SvtGraphicFill& rClass )
     291             : {
     292           0 :     VersionCompat aCompat( rOStm, STREAM_WRITE, 1 );
     293             : 
     294           0 :     rClass.maPath.Write( rOStm );
     295           0 :     WriteColor( rOStm, rClass.maFillColor );
     296           0 :     rOStm.WriteDouble( rClass.mfTransparency );
     297           0 :     sal_uInt16 nTmp = sal::static_int_cast<sal_uInt16>( rClass.maFillRule );
     298           0 :     rOStm.WriteUInt16( nTmp );
     299           0 :     nTmp = sal::static_int_cast<sal_uInt16>( rClass.maFillType );
     300           0 :     rOStm.WriteUInt16( nTmp );
     301             :     int i;
     302           0 :     for(i=0; i<SvtGraphicFill::Transform::MatrixSize; ++i)
     303           0 :         rOStm.WriteDouble( rClass.maFillTransform.matrix[i] );
     304           0 :     nTmp = sal_uInt16(rClass.mbTiling);
     305           0 :     rOStm.WriteUInt16( nTmp );
     306           0 :     nTmp = sal::static_int_cast<sal_uInt16>( rClass.maHatchType );
     307           0 :     rOStm.WriteUInt16( nTmp );
     308           0 :     WriteColor( rOStm, rClass.maHatchColor );
     309           0 :     nTmp = sal::static_int_cast<sal_uInt16>( rClass.maGradientType );
     310           0 :     rOStm.WriteUInt16( nTmp );
     311           0 :     WriteColor( rOStm, rClass.maGradient1stColor );
     312           0 :     WriteColor( rOStm, rClass.maGradient2ndColor );
     313           0 :     rOStm.WriteInt32( rClass.maGradientStepCount );
     314           0 :     WriteGraphic( rOStm, rClass.maFillGraphic );
     315             : 
     316           0 :     return rOStm;
     317             : }
     318             : 
     319           0 : SvStream& ReadSvtGraphicFill( SvStream& rIStm, SvtGraphicFill& rClass )
     320             : {
     321           0 :     VersionCompat aCompat( rIStm, STREAM_READ );
     322             : 
     323           0 :     rClass.maPath.Read( rIStm );
     324           0 :     ReadColor( rIStm, rClass.maFillColor );
     325           0 :     rIStm.ReadDouble( rClass.mfTransparency );
     326             :     sal_uInt16 nTmp;
     327           0 :     rIStm.ReadUInt16( nTmp );
     328           0 :     rClass.maFillRule = SvtGraphicFill::FillRule( nTmp );
     329           0 :     rIStm.ReadUInt16( nTmp );
     330           0 :     rClass.maFillType = SvtGraphicFill::FillType( nTmp );
     331             :     int i;
     332           0 :     for(i=0; i<SvtGraphicFill::Transform::MatrixSize; ++i)
     333           0 :         rIStm.ReadDouble( rClass.maFillTransform.matrix[i] );
     334           0 :     rIStm.ReadUInt16( nTmp );
     335           0 :     rClass.mbTiling = nTmp;
     336           0 :     rIStm.ReadUInt16( nTmp );
     337           0 :     rClass.maHatchType = SvtGraphicFill::HatchType( nTmp );
     338           0 :     ReadColor( rIStm, rClass.maHatchColor );
     339           0 :     rIStm.ReadUInt16( nTmp );
     340           0 :     rClass.maGradientType = SvtGraphicFill::GradientType( nTmp );
     341           0 :     ReadColor( rIStm, rClass.maGradient1stColor );
     342           0 :     ReadColor( rIStm, rClass.maGradient2ndColor );
     343           0 :     rIStm.ReadInt32( rClass.maGradientStepCount );
     344           0 :     ReadGraphic( rIStm, rClass.maFillGraphic );
     345             : 
     346           0 :     return rIStm;
     347             : }
     348             : 
     349             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10