1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * $RCSfile: sdrattribute.cxx,v $ 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * $Revision: 1.5 $ 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * last change: $Author: aw $ $Date: 2008-05-27 14:11:19 $ 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * The Contents of this file are made available subject to 12*cdf0e10cSrcweir * the terms of GNU Lesser General Public License Version 2.1. 13*cdf0e10cSrcweir * 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * GNU Lesser General Public License Version 2.1 16*cdf0e10cSrcweir * ============================================= 17*cdf0e10cSrcweir * Copyright 2005 by Sun Microsystems, Inc. 18*cdf0e10cSrcweir * 901 San Antonio Road, Palo Alto, CA 94303, USA 19*cdf0e10cSrcweir * 20*cdf0e10cSrcweir * This library is free software; you can redistribute it and/or 21*cdf0e10cSrcweir * modify it under the terms of the GNU Lesser General Public 22*cdf0e10cSrcweir * License version 2.1, as published by the Free Software Foundation. 23*cdf0e10cSrcweir * 24*cdf0e10cSrcweir * This library is distributed in the hope that it will be useful, 25*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 26*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 27*cdf0e10cSrcweir * Lesser General Public License for more details. 28*cdf0e10cSrcweir * 29*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public 30*cdf0e10cSrcweir * License along with this library; if not, write to the Free Software 31*cdf0e10cSrcweir * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 32*cdf0e10cSrcweir * MA 02111-1307 USA 33*cdf0e10cSrcweir * 34*cdf0e10cSrcweir ************************************************************************/ 35*cdf0e10cSrcweir 36*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 37*cdf0e10cSrcweir #include "precompiled_drawinglayer.hxx" 38*cdf0e10cSrcweir 39*cdf0e10cSrcweir #include <drawinglayer/attribute/sdrlineattribute.hxx> 40*cdf0e10cSrcweir #include <basegfx/color/bcolor.hxx> 41*cdf0e10cSrcweir 42*cdf0e10cSrcweir ////////////////////////////////////////////////////////////////////////////// 43*cdf0e10cSrcweir 44*cdf0e10cSrcweir namespace drawinglayer 45*cdf0e10cSrcweir { 46*cdf0e10cSrcweir namespace attribute 47*cdf0e10cSrcweir { 48*cdf0e10cSrcweir class ImpSdrLineAttribute 49*cdf0e10cSrcweir { 50*cdf0e10cSrcweir public: 51*cdf0e10cSrcweir // refcounter 52*cdf0e10cSrcweir sal_uInt32 mnRefCount; 53*cdf0e10cSrcweir 54*cdf0e10cSrcweir // line definitions 55*cdf0e10cSrcweir basegfx::B2DLineJoin meJoin; // B2DLINEJOIN_* defines 56*cdf0e10cSrcweir double mfWidth; // 1/100th mm, 0.0==hair 57*cdf0e10cSrcweir double mfTransparence; // [0.0 .. 1.0], 0.0==no transp. 58*cdf0e10cSrcweir basegfx::BColor maColor; // color of line 59*cdf0e10cSrcweir ::std::vector< double > maDotDashArray; // array of double which defines the dot-dash pattern 60*cdf0e10cSrcweir double mfFullDotDashLen; // sum of maDotDashArray (for convenience) 61*cdf0e10cSrcweir 62*cdf0e10cSrcweir ImpSdrLineAttribute( 63*cdf0e10cSrcweir basegfx::B2DLineJoin eJoin, 64*cdf0e10cSrcweir double fWidth, 65*cdf0e10cSrcweir double fTransparence, 66*cdf0e10cSrcweir const basegfx::BColor& rColor, 67*cdf0e10cSrcweir const ::std::vector< double >& rDotDashArray, 68*cdf0e10cSrcweir double fFullDotDashLen) 69*cdf0e10cSrcweir : mnRefCount(0), 70*cdf0e10cSrcweir meJoin(eJoin), 71*cdf0e10cSrcweir mfWidth(fWidth), 72*cdf0e10cSrcweir mfTransparence(fTransparence), 73*cdf0e10cSrcweir maColor(rColor), 74*cdf0e10cSrcweir maDotDashArray(rDotDashArray), 75*cdf0e10cSrcweir mfFullDotDashLen(fFullDotDashLen) 76*cdf0e10cSrcweir { 77*cdf0e10cSrcweir } 78*cdf0e10cSrcweir 79*cdf0e10cSrcweir ImpSdrLineAttribute(const basegfx::BColor& rColor) 80*cdf0e10cSrcweir : mnRefCount(0), 81*cdf0e10cSrcweir meJoin(basegfx::B2DLINEJOIN_NONE), 82*cdf0e10cSrcweir mfWidth(0.0), 83*cdf0e10cSrcweir mfTransparence(0.0), 84*cdf0e10cSrcweir maColor(rColor), 85*cdf0e10cSrcweir maDotDashArray(), 86*cdf0e10cSrcweir mfFullDotDashLen(0.0) 87*cdf0e10cSrcweir { 88*cdf0e10cSrcweir } 89*cdf0e10cSrcweir 90*cdf0e10cSrcweir // data read access 91*cdf0e10cSrcweir basegfx::B2DLineJoin getJoin() const { return meJoin; } 92*cdf0e10cSrcweir double getWidth() const { return mfWidth; } 93*cdf0e10cSrcweir double getTransparence() const { return mfTransparence; } 94*cdf0e10cSrcweir const basegfx::BColor& getColor() const { return maColor; } 95*cdf0e10cSrcweir const ::std::vector< double >& getDotDashArray() const { return maDotDashArray; } 96*cdf0e10cSrcweir double getFullDotDashLen() const { return mfFullDotDashLen; } 97*cdf0e10cSrcweir 98*cdf0e10cSrcweir bool operator==(const ImpSdrLineAttribute& rCandidate) const 99*cdf0e10cSrcweir { 100*cdf0e10cSrcweir return (getJoin() == rCandidate.getJoin() 101*cdf0e10cSrcweir && getWidth() == rCandidate.getWidth() 102*cdf0e10cSrcweir && getTransparence() == rCandidate.getTransparence() 103*cdf0e10cSrcweir && getColor() == rCandidate.getColor() 104*cdf0e10cSrcweir && getDotDashArray() == rCandidate.getDotDashArray()); 105*cdf0e10cSrcweir } 106*cdf0e10cSrcweir 107*cdf0e10cSrcweir static ImpSdrLineAttribute* get_global_default() 108*cdf0e10cSrcweir { 109*cdf0e10cSrcweir static ImpSdrLineAttribute* pDefault = 0; 110*cdf0e10cSrcweir 111*cdf0e10cSrcweir if(!pDefault) 112*cdf0e10cSrcweir { 113*cdf0e10cSrcweir pDefault = new ImpSdrLineAttribute( 114*cdf0e10cSrcweir basegfx::B2DLINEJOIN_ROUND, 115*cdf0e10cSrcweir 0.0, 116*cdf0e10cSrcweir 0.0, 117*cdf0e10cSrcweir basegfx::BColor(), 118*cdf0e10cSrcweir std::vector< double >(), 119*cdf0e10cSrcweir 0.0); 120*cdf0e10cSrcweir 121*cdf0e10cSrcweir // never delete; start with RefCount 1, not 0 122*cdf0e10cSrcweir pDefault->mnRefCount++; 123*cdf0e10cSrcweir } 124*cdf0e10cSrcweir 125*cdf0e10cSrcweir return pDefault; 126*cdf0e10cSrcweir } 127*cdf0e10cSrcweir }; 128*cdf0e10cSrcweir 129*cdf0e10cSrcweir SdrLineAttribute::SdrLineAttribute( 130*cdf0e10cSrcweir basegfx::B2DLineJoin eJoin, 131*cdf0e10cSrcweir double fWidth, 132*cdf0e10cSrcweir double fTransparence, 133*cdf0e10cSrcweir const basegfx::BColor& rColor, 134*cdf0e10cSrcweir const ::std::vector< double >& rDotDashArray, 135*cdf0e10cSrcweir double fFullDotDashLen) 136*cdf0e10cSrcweir : mpSdrLineAttribute(new ImpSdrLineAttribute( 137*cdf0e10cSrcweir eJoin, fWidth, fTransparence, rColor, rDotDashArray, fFullDotDashLen)) 138*cdf0e10cSrcweir { 139*cdf0e10cSrcweir } 140*cdf0e10cSrcweir 141*cdf0e10cSrcweir SdrLineAttribute::SdrLineAttribute( 142*cdf0e10cSrcweir const basegfx::BColor& rColor) 143*cdf0e10cSrcweir : mpSdrLineAttribute(new ImpSdrLineAttribute(rColor)) 144*cdf0e10cSrcweir { 145*cdf0e10cSrcweir } 146*cdf0e10cSrcweir 147*cdf0e10cSrcweir SdrLineAttribute::SdrLineAttribute() 148*cdf0e10cSrcweir : mpSdrLineAttribute(ImpSdrLineAttribute::get_global_default()) 149*cdf0e10cSrcweir { 150*cdf0e10cSrcweir mpSdrLineAttribute->mnRefCount++; 151*cdf0e10cSrcweir } 152*cdf0e10cSrcweir 153*cdf0e10cSrcweir SdrLineAttribute::SdrLineAttribute(const SdrLineAttribute& rCandidate) 154*cdf0e10cSrcweir : mpSdrLineAttribute(rCandidate.mpSdrLineAttribute) 155*cdf0e10cSrcweir { 156*cdf0e10cSrcweir mpSdrLineAttribute->mnRefCount++; 157*cdf0e10cSrcweir } 158*cdf0e10cSrcweir 159*cdf0e10cSrcweir SdrLineAttribute::~SdrLineAttribute() 160*cdf0e10cSrcweir { 161*cdf0e10cSrcweir if(mpSdrLineAttribute->mnRefCount) 162*cdf0e10cSrcweir { 163*cdf0e10cSrcweir mpSdrLineAttribute->mnRefCount--; 164*cdf0e10cSrcweir } 165*cdf0e10cSrcweir else 166*cdf0e10cSrcweir { 167*cdf0e10cSrcweir delete mpSdrLineAttribute; 168*cdf0e10cSrcweir } 169*cdf0e10cSrcweir } 170*cdf0e10cSrcweir 171*cdf0e10cSrcweir bool SdrLineAttribute::isDefault() const 172*cdf0e10cSrcweir { 173*cdf0e10cSrcweir return mpSdrLineAttribute == ImpSdrLineAttribute::get_global_default(); 174*cdf0e10cSrcweir } 175*cdf0e10cSrcweir 176*cdf0e10cSrcweir SdrLineAttribute& SdrLineAttribute::operator=(const SdrLineAttribute& rCandidate) 177*cdf0e10cSrcweir { 178*cdf0e10cSrcweir if(rCandidate.mpSdrLineAttribute != mpSdrLineAttribute) 179*cdf0e10cSrcweir { 180*cdf0e10cSrcweir if(mpSdrLineAttribute->mnRefCount) 181*cdf0e10cSrcweir { 182*cdf0e10cSrcweir mpSdrLineAttribute->mnRefCount--; 183*cdf0e10cSrcweir } 184*cdf0e10cSrcweir else 185*cdf0e10cSrcweir { 186*cdf0e10cSrcweir delete mpSdrLineAttribute; 187*cdf0e10cSrcweir } 188*cdf0e10cSrcweir 189*cdf0e10cSrcweir mpSdrLineAttribute = rCandidate.mpSdrLineAttribute; 190*cdf0e10cSrcweir mpSdrLineAttribute->mnRefCount++; 191*cdf0e10cSrcweir } 192*cdf0e10cSrcweir 193*cdf0e10cSrcweir return *this; 194*cdf0e10cSrcweir } 195*cdf0e10cSrcweir 196*cdf0e10cSrcweir bool SdrLineAttribute::operator==(const SdrLineAttribute& rCandidate) const 197*cdf0e10cSrcweir { 198*cdf0e10cSrcweir if(rCandidate.mpSdrLineAttribute == mpSdrLineAttribute) 199*cdf0e10cSrcweir { 200*cdf0e10cSrcweir return true; 201*cdf0e10cSrcweir } 202*cdf0e10cSrcweir 203*cdf0e10cSrcweir if(rCandidate.isDefault() != isDefault()) 204*cdf0e10cSrcweir { 205*cdf0e10cSrcweir return false; 206*cdf0e10cSrcweir } 207*cdf0e10cSrcweir 208*cdf0e10cSrcweir return (*rCandidate.mpSdrLineAttribute == *mpSdrLineAttribute); 209*cdf0e10cSrcweir } 210*cdf0e10cSrcweir 211*cdf0e10cSrcweir basegfx::B2DLineJoin SdrLineAttribute::getJoin() const 212*cdf0e10cSrcweir { 213*cdf0e10cSrcweir return mpSdrLineAttribute->getJoin(); 214*cdf0e10cSrcweir } 215*cdf0e10cSrcweir 216*cdf0e10cSrcweir double SdrLineAttribute::getWidth() const 217*cdf0e10cSrcweir { 218*cdf0e10cSrcweir return mpSdrLineAttribute->getWidth(); 219*cdf0e10cSrcweir } 220*cdf0e10cSrcweir 221*cdf0e10cSrcweir double SdrLineAttribute::getTransparence() const 222*cdf0e10cSrcweir { 223*cdf0e10cSrcweir return mpSdrLineAttribute->getTransparence(); 224*cdf0e10cSrcweir } 225*cdf0e10cSrcweir 226*cdf0e10cSrcweir const basegfx::BColor& SdrLineAttribute::getColor() const 227*cdf0e10cSrcweir { 228*cdf0e10cSrcweir return mpSdrLineAttribute->getColor(); 229*cdf0e10cSrcweir } 230*cdf0e10cSrcweir 231*cdf0e10cSrcweir const ::std::vector< double >& SdrLineAttribute::getDotDashArray() const 232*cdf0e10cSrcweir { 233*cdf0e10cSrcweir return mpSdrLineAttribute->getDotDashArray(); 234*cdf0e10cSrcweir } 235*cdf0e10cSrcweir 236*cdf0e10cSrcweir double SdrLineAttribute::getFullDotDashLen() const 237*cdf0e10cSrcweir { 238*cdf0e10cSrcweir return mpSdrLineAttribute->getFullDotDashLen(); 239*cdf0e10cSrcweir } 240*cdf0e10cSrcweir 241*cdf0e10cSrcweir bool SdrLineAttribute::isDashed() const 242*cdf0e10cSrcweir { 243*cdf0e10cSrcweir return (0L != getDotDashArray().size()); 244*cdf0e10cSrcweir } 245*cdf0e10cSrcweir 246*cdf0e10cSrcweir } // end of namespace attribute 247*cdf0e10cSrcweir } // end of namespace drawinglayer 248*cdf0e10cSrcweir 249*cdf0e10cSrcweir ////////////////////////////////////////////////////////////////////////////// 250*cdf0e10cSrcweir // eof 251