1*ddde725dSArmin Le Grand /************************************************************** 2*ddde725dSArmin Le Grand * 3*ddde725dSArmin Le Grand * Licensed to the Apache Software Foundation (ASF) under one 4*ddde725dSArmin Le Grand * or more contributor license agreements. See the NOTICE file 5*ddde725dSArmin Le Grand * distributed with this work for additional information 6*ddde725dSArmin Le Grand * regarding copyright ownership. The ASF licenses this file 7*ddde725dSArmin Le Grand * to you under the Apache License, Version 2.0 (the 8*ddde725dSArmin Le Grand * "License"); you may not use this file except in compliance 9*ddde725dSArmin Le Grand * with the License. You may obtain a copy of the License at 10*ddde725dSArmin Le Grand * 11*ddde725dSArmin Le Grand * http://www.apache.org/licenses/LICENSE-2.0 12*ddde725dSArmin Le Grand * 13*ddde725dSArmin Le Grand * Unless required by applicable law or agreed to in writing, 14*ddde725dSArmin Le Grand * software distributed under the License is distributed on an 15*ddde725dSArmin Le Grand * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*ddde725dSArmin Le Grand * KIND, either express or implied. See the License for the 17*ddde725dSArmin Le Grand * specific language governing permissions and limitations 18*ddde725dSArmin Le Grand * under the License. 19*ddde725dSArmin Le Grand * 20*ddde725dSArmin Le Grand *************************************************************/ 21*ddde725dSArmin Le Grand 22*ddde725dSArmin Le Grand // MARKER(update_precomp.py): autogen include statement, do not remove 23*ddde725dSArmin Le Grand #include "precompiled_svgio.hxx" 24*ddde725dSArmin Le Grand 25*ddde725dSArmin Le Grand #include <svgio/svgreader/svgclippathnode.hxx> 26*ddde725dSArmin Le Grand #include <drawinglayer/primitive2d/transformprimitive2d.hxx> 27*ddde725dSArmin Le Grand #include <drawinglayer/primitive2d/transparenceprimitive2d.hxx> 28*ddde725dSArmin Le Grand #include <basegfx/matrix/b2dhommatrixtools.hxx> 29*ddde725dSArmin Le Grand #include <drawinglayer/geometry/viewinformation2d.hxx> 30*ddde725dSArmin Le Grand 31*ddde725dSArmin Le Grand ////////////////////////////////////////////////////////////////////////////// 32*ddde725dSArmin Le Grand 33*ddde725dSArmin Le Grand namespace svgio 34*ddde725dSArmin Le Grand { 35*ddde725dSArmin Le Grand namespace svgreader 36*ddde725dSArmin Le Grand { 37*ddde725dSArmin Le Grand SvgClipPathNode::SvgClipPathNode( 38*ddde725dSArmin Le Grand SvgDocument& rDocument, 39*ddde725dSArmin Le Grand SvgNode* pParent) 40*ddde725dSArmin Le Grand : SvgNode(SVGTokenClipPathNode, rDocument, pParent), 41*ddde725dSArmin Le Grand maSvgStyleAttributes(*this), 42*ddde725dSArmin Le Grand mpaTransform(0), 43*ddde725dSArmin Le Grand maClipPathUnits(userSpaceOnUse) 44*ddde725dSArmin Le Grand { 45*ddde725dSArmin Le Grand } 46*ddde725dSArmin Le Grand 47*ddde725dSArmin Le Grand SvgClipPathNode::~SvgClipPathNode() 48*ddde725dSArmin Le Grand { 49*ddde725dSArmin Le Grand if(mpaTransform) delete mpaTransform; 50*ddde725dSArmin Le Grand } 51*ddde725dSArmin Le Grand 52*ddde725dSArmin Le Grand const SvgStyleAttributes* SvgClipPathNode::getSvgStyleAttributes() const 53*ddde725dSArmin Le Grand { 54*ddde725dSArmin Le Grand static rtl::OUString aClassStr(rtl::OUString::createFromAscii("clip-path")); 55*ddde725dSArmin Le Grand maSvgStyleAttributes.checkForCssStyle(aClassStr); 56*ddde725dSArmin Le Grand 57*ddde725dSArmin Le Grand return &maSvgStyleAttributes; 58*ddde725dSArmin Le Grand } 59*ddde725dSArmin Le Grand 60*ddde725dSArmin Le Grand void SvgClipPathNode::parseAttribute(const rtl::OUString& rTokenName, SVGToken aSVGToken, const rtl::OUString& aContent) 61*ddde725dSArmin Le Grand { 62*ddde725dSArmin Le Grand // call parent 63*ddde725dSArmin Le Grand SvgNode::parseAttribute(rTokenName, aSVGToken, aContent); 64*ddde725dSArmin Le Grand 65*ddde725dSArmin Le Grand // read style attributes 66*ddde725dSArmin Le Grand maSvgStyleAttributes.parseStyleAttribute(rTokenName, aSVGToken, aContent); 67*ddde725dSArmin Le Grand 68*ddde725dSArmin Le Grand // parse own 69*ddde725dSArmin Le Grand switch(aSVGToken) 70*ddde725dSArmin Le Grand { 71*ddde725dSArmin Le Grand case SVGTokenStyle: 72*ddde725dSArmin Le Grand { 73*ddde725dSArmin Le Grand maSvgStyleAttributes.readStyle(aContent); 74*ddde725dSArmin Le Grand break; 75*ddde725dSArmin Le Grand } 76*ddde725dSArmin Le Grand case SVGTokenTransform: 77*ddde725dSArmin Le Grand { 78*ddde725dSArmin Le Grand const basegfx::B2DHomMatrix aMatrix(readTransform(aContent, *this)); 79*ddde725dSArmin Le Grand 80*ddde725dSArmin Le Grand if(!aMatrix.isIdentity()) 81*ddde725dSArmin Le Grand { 82*ddde725dSArmin Le Grand setTransform(&aMatrix); 83*ddde725dSArmin Le Grand } 84*ddde725dSArmin Le Grand break; 85*ddde725dSArmin Le Grand } 86*ddde725dSArmin Le Grand case SVGTokenClipPathUnits: 87*ddde725dSArmin Le Grand { 88*ddde725dSArmin Le Grand if(aContent.getLength()) 89*ddde725dSArmin Le Grand { 90*ddde725dSArmin Le Grand if(aContent.match(commonStrings::aStrUserSpaceOnUse, 0)) 91*ddde725dSArmin Le Grand { 92*ddde725dSArmin Le Grand setClipPathUnits(userSpaceOnUse); 93*ddde725dSArmin Le Grand } 94*ddde725dSArmin Le Grand else if(aContent.match(commonStrings::aStrObjectBoundingBox, 0)) 95*ddde725dSArmin Le Grand { 96*ddde725dSArmin Le Grand setClipPathUnits(objectBoundingBox); 97*ddde725dSArmin Le Grand } 98*ddde725dSArmin Le Grand } 99*ddde725dSArmin Le Grand break; 100*ddde725dSArmin Le Grand } 101*ddde725dSArmin Le Grand } 102*ddde725dSArmin Le Grand } 103*ddde725dSArmin Le Grand 104*ddde725dSArmin Le Grand void SvgClipPathNode::decomposeSvgNode(drawinglayer::primitive2d::Primitive2DSequence& rTarget, bool bReferenced) const 105*ddde725dSArmin Le Grand { 106*ddde725dSArmin Le Grand drawinglayer::primitive2d::Primitive2DSequence aNewTarget; 107*ddde725dSArmin Le Grand 108*ddde725dSArmin Le Grand // decompose childs 109*ddde725dSArmin Le Grand SvgNode::decomposeSvgNode(aNewTarget, bReferenced); 110*ddde725dSArmin Le Grand 111*ddde725dSArmin Le Grand if(aNewTarget.hasElements()) 112*ddde725dSArmin Le Grand { 113*ddde725dSArmin Le Grand if(getTransform()) 114*ddde725dSArmin Le Grand { 115*ddde725dSArmin Le Grand // create embedding group element with transformation 116*ddde725dSArmin Le Grand const drawinglayer::primitive2d::Primitive2DReference xRef( 117*ddde725dSArmin Le Grand new drawinglayer::primitive2d::TransformPrimitive2D( 118*ddde725dSArmin Le Grand *getTransform(), 119*ddde725dSArmin Le Grand aNewTarget)); 120*ddde725dSArmin Le Grand 121*ddde725dSArmin Le Grand drawinglayer::primitive2d::appendPrimitive2DReferenceToPrimitive2DSequence(rTarget, xRef); 122*ddde725dSArmin Le Grand } 123*ddde725dSArmin Le Grand else 124*ddde725dSArmin Le Grand { 125*ddde725dSArmin Le Grand // append to current target 126*ddde725dSArmin Le Grand drawinglayer::primitive2d::appendPrimitive2DSequenceToPrimitive2DSequence(rTarget, aNewTarget); 127*ddde725dSArmin Le Grand } 128*ddde725dSArmin Le Grand } 129*ddde725dSArmin Le Grand } 130*ddde725dSArmin Le Grand 131*ddde725dSArmin Le Grand void SvgClipPathNode::apply(drawinglayer::primitive2d::Primitive2DSequence& rContent) const 132*ddde725dSArmin Le Grand { 133*ddde725dSArmin Le Grand if(rContent.hasElements()) 134*ddde725dSArmin Le Grand { 135*ddde725dSArmin Le Grand drawinglayer::primitive2d::Primitive2DSequence aClipTarget; 136*ddde725dSArmin Le Grand 137*ddde725dSArmin Le Grand // get clipPath definition as primitives 138*ddde725dSArmin Le Grand decomposeSvgNode(aClipTarget, true); 139*ddde725dSArmin Le Grand 140*ddde725dSArmin Le Grand if(aClipTarget.hasElements()) 141*ddde725dSArmin Le Grand { 142*ddde725dSArmin Le Grand if(objectBoundingBox == getClipPathUnits()) 143*ddde725dSArmin Le Grand { 144*ddde725dSArmin Le Grand // clip is object-relative, embed in content transformation 145*ddde725dSArmin Le Grand const basegfx::B2DRange aContentRange( 146*ddde725dSArmin Le Grand drawinglayer::primitive2d::getB2DRangeFromPrimitive2DSequence( 147*ddde725dSArmin Le Grand rContent, 148*ddde725dSArmin Le Grand drawinglayer::geometry::ViewInformation2D())); 149*ddde725dSArmin Le Grand 150*ddde725dSArmin Le Grand const drawinglayer::primitive2d::Primitive2DReference xTransform( 151*ddde725dSArmin Le Grand new drawinglayer::primitive2d::TransformPrimitive2D( 152*ddde725dSArmin Le Grand basegfx::tools::createScaleTranslateB2DHomMatrix( 153*ddde725dSArmin Le Grand aContentRange.getRange(), 154*ddde725dSArmin Le Grand aContentRange.getMinimum()), 155*ddde725dSArmin Le Grand aClipTarget)); 156*ddde725dSArmin Le Grand 157*ddde725dSArmin Le Grand aClipTarget = drawinglayer::primitive2d::Primitive2DSequence(&xTransform, 1); 158*ddde725dSArmin Le Grand } 159*ddde725dSArmin Le Grand 160*ddde725dSArmin Le Grand // redefine target. Use TransparencePrimitive2D with created clip 161*ddde725dSArmin Le Grand // geometry. Using the automatically set mbIsClipPathContent at 162*ddde725dSArmin Le Grand // SvgStyleAttributes the clip definition is without fill, stroke, 163*ddde725dSArmin Le Grand // and strokeWidth and forced to black, thus being 100% opaque 164*ddde725dSArmin Le Grand const drawinglayer::primitive2d::Primitive2DReference xEmbedTransparence( 165*ddde725dSArmin Le Grand new drawinglayer::primitive2d::TransparencePrimitive2D( 166*ddde725dSArmin Le Grand rContent, 167*ddde725dSArmin Le Grand aClipTarget)); 168*ddde725dSArmin Le Grand 169*ddde725dSArmin Le Grand rContent = drawinglayer::primitive2d::Primitive2DSequence(&xEmbedTransparence, 1); 170*ddde725dSArmin Le Grand } 171*ddde725dSArmin Le Grand else 172*ddde725dSArmin Le Grand { 173*ddde725dSArmin Le Grand // An empty clipping path will completely clip away the element that had 174*ddde725dSArmin Le Grand // the �clip-path� property applied. (Svg spec) 175*ddde725dSArmin Le Grand rContent.realloc(0); 176*ddde725dSArmin Le Grand } 177*ddde725dSArmin Le Grand } 178*ddde725dSArmin Le Grand } 179*ddde725dSArmin Le Grand 180*ddde725dSArmin Le Grand } // end of namespace svgreader 181*ddde725dSArmin Le Grand } // end of namespace svgio 182*ddde725dSArmin Le Grand 183*ddde725dSArmin Le Grand ////////////////////////////////////////////////////////////////////////////// 184*ddde725dSArmin Le Grand // eof 185