1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 29*cdf0e10cSrcweir #include "precompiled_cppcanvas.hxx" 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir #include <lineaction.hxx> 32*cdf0e10cSrcweir #include <outdevstate.hxx> 33*cdf0e10cSrcweir 34*cdf0e10cSrcweir #include <rtl/logfile.hxx> 35*cdf0e10cSrcweir #include <com/sun/star/rendering/XCanvas.hpp> 36*cdf0e10cSrcweir 37*cdf0e10cSrcweir #include <tools/gen.hxx> 38*cdf0e10cSrcweir #include <vcl/canvastools.hxx> 39*cdf0e10cSrcweir 40*cdf0e10cSrcweir #include <basegfx/range/b2drange.hxx> 41*cdf0e10cSrcweir #include <basegfx/point/b2dpoint.hxx> 42*cdf0e10cSrcweir #include <basegfx/tools/canvastools.hxx> 43*cdf0e10cSrcweir #include <canvas/canvastools.hxx> 44*cdf0e10cSrcweir 45*cdf0e10cSrcweir #include <boost/utility.hpp> 46*cdf0e10cSrcweir 47*cdf0e10cSrcweir #include <cppcanvas/canvas.hxx> 48*cdf0e10cSrcweir 49*cdf0e10cSrcweir #include <mtftools.hxx> 50*cdf0e10cSrcweir 51*cdf0e10cSrcweir 52*cdf0e10cSrcweir using namespace ::com::sun::star; 53*cdf0e10cSrcweir 54*cdf0e10cSrcweir namespace cppcanvas 55*cdf0e10cSrcweir { 56*cdf0e10cSrcweir namespace internal 57*cdf0e10cSrcweir { 58*cdf0e10cSrcweir namespace 59*cdf0e10cSrcweir { 60*cdf0e10cSrcweir class LineAction : public Action, private ::boost::noncopyable 61*cdf0e10cSrcweir { 62*cdf0e10cSrcweir public: 63*cdf0e10cSrcweir LineAction( const ::basegfx::B2DPoint&, 64*cdf0e10cSrcweir const ::basegfx::B2DPoint&, 65*cdf0e10cSrcweir const CanvasSharedPtr&, 66*cdf0e10cSrcweir const OutDevState& ); 67*cdf0e10cSrcweir 68*cdf0e10cSrcweir virtual bool render( const ::basegfx::B2DHomMatrix& rTransformation ) const; 69*cdf0e10cSrcweir virtual bool render( const ::basegfx::B2DHomMatrix& rTransformation, 70*cdf0e10cSrcweir const Subset& rSubset ) const; 71*cdf0e10cSrcweir 72*cdf0e10cSrcweir virtual ::basegfx::B2DRange getBounds( const ::basegfx::B2DHomMatrix& rTransformation ) const; 73*cdf0e10cSrcweir virtual ::basegfx::B2DRange getBounds( const ::basegfx::B2DHomMatrix& rTransformation, 74*cdf0e10cSrcweir const Subset& rSubset ) const; 75*cdf0e10cSrcweir 76*cdf0e10cSrcweir virtual sal_Int32 getActionCount() const; 77*cdf0e10cSrcweir 78*cdf0e10cSrcweir private: 79*cdf0e10cSrcweir ::basegfx::B2DPoint maStartPoint; 80*cdf0e10cSrcweir ::basegfx::B2DPoint maEndPoint; 81*cdf0e10cSrcweir CanvasSharedPtr mpCanvas; 82*cdf0e10cSrcweir rendering::RenderState maState; 83*cdf0e10cSrcweir }; 84*cdf0e10cSrcweir 85*cdf0e10cSrcweir LineAction::LineAction( const ::basegfx::B2DPoint& rStartPoint, 86*cdf0e10cSrcweir const ::basegfx::B2DPoint& rEndPoint, 87*cdf0e10cSrcweir const CanvasSharedPtr& rCanvas, 88*cdf0e10cSrcweir const OutDevState& rState ) : 89*cdf0e10cSrcweir maStartPoint( rStartPoint ), 90*cdf0e10cSrcweir maEndPoint( rEndPoint ), 91*cdf0e10cSrcweir mpCanvas( rCanvas ), 92*cdf0e10cSrcweir maState() 93*cdf0e10cSrcweir { 94*cdf0e10cSrcweir tools::initRenderState(maState,rState); 95*cdf0e10cSrcweir maState.DeviceColor = rState.lineColor; 96*cdf0e10cSrcweir } 97*cdf0e10cSrcweir 98*cdf0e10cSrcweir bool LineAction::render( const ::basegfx::B2DHomMatrix& rTransformation ) const 99*cdf0e10cSrcweir { 100*cdf0e10cSrcweir RTL_LOGFILE_CONTEXT( aLog, "::cppcanvas::internal::LineAction::render()" ); 101*cdf0e10cSrcweir RTL_LOGFILE_CONTEXT_TRACE1( aLog, "::cppcanvas::internal::LineAction: 0x%X", this ); 102*cdf0e10cSrcweir 103*cdf0e10cSrcweir rendering::RenderState aLocalState( maState ); 104*cdf0e10cSrcweir ::canvas::tools::prependToRenderState(aLocalState, rTransformation); 105*cdf0e10cSrcweir 106*cdf0e10cSrcweir mpCanvas->getUNOCanvas()->drawLine( ::basegfx::unotools::point2DFromB2DPoint(maStartPoint), 107*cdf0e10cSrcweir ::basegfx::unotools::point2DFromB2DPoint(maEndPoint), 108*cdf0e10cSrcweir mpCanvas->getViewState(), 109*cdf0e10cSrcweir aLocalState ); 110*cdf0e10cSrcweir 111*cdf0e10cSrcweir return true; 112*cdf0e10cSrcweir } 113*cdf0e10cSrcweir 114*cdf0e10cSrcweir bool LineAction::render( const ::basegfx::B2DHomMatrix& rTransformation, 115*cdf0e10cSrcweir const Subset& rSubset ) const 116*cdf0e10cSrcweir { 117*cdf0e10cSrcweir // line only contains a single action, fail if subset 118*cdf0e10cSrcweir // requests different range 119*cdf0e10cSrcweir if( rSubset.mnSubsetBegin != 0 || 120*cdf0e10cSrcweir rSubset.mnSubsetEnd != 1 ) 121*cdf0e10cSrcweir return false; 122*cdf0e10cSrcweir 123*cdf0e10cSrcweir return render( rTransformation ); 124*cdf0e10cSrcweir } 125*cdf0e10cSrcweir 126*cdf0e10cSrcweir ::basegfx::B2DRange LineAction::getBounds( const ::basegfx::B2DHomMatrix& rTransformation ) const 127*cdf0e10cSrcweir { 128*cdf0e10cSrcweir rendering::RenderState aLocalState( maState ); 129*cdf0e10cSrcweir ::canvas::tools::prependToRenderState(aLocalState, rTransformation); 130*cdf0e10cSrcweir 131*cdf0e10cSrcweir return tools::calcDevicePixelBounds( ::basegfx::B2DRange( maStartPoint, 132*cdf0e10cSrcweir maEndPoint ), 133*cdf0e10cSrcweir mpCanvas->getViewState(), 134*cdf0e10cSrcweir aLocalState ); 135*cdf0e10cSrcweir } 136*cdf0e10cSrcweir 137*cdf0e10cSrcweir ::basegfx::B2DRange LineAction::getBounds( const ::basegfx::B2DHomMatrix& rTransformation, 138*cdf0e10cSrcweir const Subset& rSubset ) const 139*cdf0e10cSrcweir { 140*cdf0e10cSrcweir // line only contains a single action, empty bounds 141*cdf0e10cSrcweir // if subset requests different range 142*cdf0e10cSrcweir if( rSubset.mnSubsetBegin != 0 || 143*cdf0e10cSrcweir rSubset.mnSubsetEnd != 1 ) 144*cdf0e10cSrcweir return ::basegfx::B2DRange(); 145*cdf0e10cSrcweir 146*cdf0e10cSrcweir return getBounds( rTransformation ); 147*cdf0e10cSrcweir } 148*cdf0e10cSrcweir 149*cdf0e10cSrcweir sal_Int32 LineAction::getActionCount() const 150*cdf0e10cSrcweir { 151*cdf0e10cSrcweir return 1; 152*cdf0e10cSrcweir } 153*cdf0e10cSrcweir } 154*cdf0e10cSrcweir 155*cdf0e10cSrcweir ActionSharedPtr LineActionFactory::createLineAction( const ::basegfx::B2DPoint& rStartPoint, 156*cdf0e10cSrcweir const ::basegfx::B2DPoint& rEndPoint, 157*cdf0e10cSrcweir const CanvasSharedPtr& rCanvas, 158*cdf0e10cSrcweir const OutDevState& rState ) 159*cdf0e10cSrcweir { 160*cdf0e10cSrcweir return ActionSharedPtr( new LineAction( rStartPoint, 161*cdf0e10cSrcweir rEndPoint, 162*cdf0e10cSrcweir rCanvas, 163*cdf0e10cSrcweir rState) ); 164*cdf0e10cSrcweir } 165*cdf0e10cSrcweir 166*cdf0e10cSrcweir } 167*cdf0e10cSrcweir } 168