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 <rtl/logfile.hxx> 32*cdf0e10cSrcweir #include <com/sun/star/rendering/XCanvas.hpp> 33*cdf0e10cSrcweir 34*cdf0e10cSrcweir #include <tools/gen.hxx> 35*cdf0e10cSrcweir #include <vcl/canvastools.hxx> 36*cdf0e10cSrcweir 37*cdf0e10cSrcweir #include <basegfx/range/b2drange.hxx> 38*cdf0e10cSrcweir #include <basegfx/point/b2dpoint.hxx> 39*cdf0e10cSrcweir #include <basegfx/tools/canvastools.hxx> 40*cdf0e10cSrcweir #include <canvas/canvastools.hxx> 41*cdf0e10cSrcweir 42*cdf0e10cSrcweir #include <boost/utility.hpp> 43*cdf0e10cSrcweir 44*cdf0e10cSrcweir #include "pointaction.hxx" 45*cdf0e10cSrcweir #include "outdevstate.hxx" 46*cdf0e10cSrcweir #include "cppcanvas/canvas.hxx" 47*cdf0e10cSrcweir #include "mtftools.hxx" 48*cdf0e10cSrcweir 49*cdf0e10cSrcweir 50*cdf0e10cSrcweir using namespace ::com::sun::star; 51*cdf0e10cSrcweir 52*cdf0e10cSrcweir namespace cppcanvas 53*cdf0e10cSrcweir { 54*cdf0e10cSrcweir namespace internal 55*cdf0e10cSrcweir { 56*cdf0e10cSrcweir namespace 57*cdf0e10cSrcweir { 58*cdf0e10cSrcweir class PointAction : public Action, private ::boost::noncopyable 59*cdf0e10cSrcweir { 60*cdf0e10cSrcweir public: 61*cdf0e10cSrcweir PointAction( const ::basegfx::B2DPoint&, 62*cdf0e10cSrcweir const CanvasSharedPtr&, 63*cdf0e10cSrcweir const OutDevState& ); 64*cdf0e10cSrcweir PointAction( const ::basegfx::B2DPoint&, 65*cdf0e10cSrcweir const CanvasSharedPtr&, 66*cdf0e10cSrcweir const OutDevState&, 67*cdf0e10cSrcweir const ::Color& ); 68*cdf0e10cSrcweir 69*cdf0e10cSrcweir virtual bool render( const ::basegfx::B2DHomMatrix& rTransformation ) const; 70*cdf0e10cSrcweir virtual bool render( const ::basegfx::B2DHomMatrix& rTransformation, 71*cdf0e10cSrcweir const Subset& rSubset ) const; 72*cdf0e10cSrcweir 73*cdf0e10cSrcweir virtual ::basegfx::B2DRange getBounds( const ::basegfx::B2DHomMatrix& rTransformation ) const; 74*cdf0e10cSrcweir virtual ::basegfx::B2DRange getBounds( const ::basegfx::B2DHomMatrix& rTransformation, 75*cdf0e10cSrcweir const Subset& rSubset ) const; 76*cdf0e10cSrcweir 77*cdf0e10cSrcweir virtual sal_Int32 getActionCount() const; 78*cdf0e10cSrcweir 79*cdf0e10cSrcweir private: 80*cdf0e10cSrcweir // default: disabled copy/assignment 81*cdf0e10cSrcweir PointAction(const PointAction&); 82*cdf0e10cSrcweir PointAction& operator = ( const PointAction& ); 83*cdf0e10cSrcweir 84*cdf0e10cSrcweir ::basegfx::B2DPoint maPoint; 85*cdf0e10cSrcweir CanvasSharedPtr mpCanvas; 86*cdf0e10cSrcweir ::com::sun::star::rendering::RenderState maState; 87*cdf0e10cSrcweir }; 88*cdf0e10cSrcweir 89*cdf0e10cSrcweir PointAction::PointAction( const ::basegfx::B2DPoint& rPoint, 90*cdf0e10cSrcweir const CanvasSharedPtr& rCanvas, 91*cdf0e10cSrcweir const OutDevState& rState ) : 92*cdf0e10cSrcweir maPoint( rPoint ), 93*cdf0e10cSrcweir mpCanvas( rCanvas ), 94*cdf0e10cSrcweir maState() 95*cdf0e10cSrcweir { 96*cdf0e10cSrcweir tools::initRenderState(maState,rState); 97*cdf0e10cSrcweir maState.DeviceColor = rState.lineColor; 98*cdf0e10cSrcweir } 99*cdf0e10cSrcweir 100*cdf0e10cSrcweir PointAction::PointAction( const ::basegfx::B2DPoint& rPoint, 101*cdf0e10cSrcweir const CanvasSharedPtr& rCanvas, 102*cdf0e10cSrcweir const OutDevState& rState, 103*cdf0e10cSrcweir const ::Color& rAltColor ) : 104*cdf0e10cSrcweir maPoint( rPoint ), 105*cdf0e10cSrcweir mpCanvas( rCanvas ), 106*cdf0e10cSrcweir maState() 107*cdf0e10cSrcweir { 108*cdf0e10cSrcweir tools::initRenderState(maState,rState); 109*cdf0e10cSrcweir maState.DeviceColor = ::vcl::unotools::colorToDoubleSequence( 110*cdf0e10cSrcweir rAltColor, 111*cdf0e10cSrcweir rCanvas->getUNOCanvas()->getDevice()->getDeviceColorSpace() ); 112*cdf0e10cSrcweir } 113*cdf0e10cSrcweir 114*cdf0e10cSrcweir bool PointAction::render( const ::basegfx::B2DHomMatrix& rTransformation ) const 115*cdf0e10cSrcweir { 116*cdf0e10cSrcweir RTL_LOGFILE_CONTEXT( aLog, "::cppcanvas::internal::PointAction::render()" ); 117*cdf0e10cSrcweir RTL_LOGFILE_CONTEXT_TRACE1( aLog, "::cppcanvas::internal::PointAction: 0x%X", this ); 118*cdf0e10cSrcweir 119*cdf0e10cSrcweir rendering::RenderState aLocalState( maState ); 120*cdf0e10cSrcweir ::canvas::tools::prependToRenderState(aLocalState, rTransformation); 121*cdf0e10cSrcweir 122*cdf0e10cSrcweir mpCanvas->getUNOCanvas()->drawPoint( ::basegfx::unotools::point2DFromB2DPoint(maPoint), 123*cdf0e10cSrcweir mpCanvas->getViewState(), 124*cdf0e10cSrcweir aLocalState ); 125*cdf0e10cSrcweir 126*cdf0e10cSrcweir return true; 127*cdf0e10cSrcweir } 128*cdf0e10cSrcweir 129*cdf0e10cSrcweir bool PointAction::render( const ::basegfx::B2DHomMatrix& rTransformation, 130*cdf0e10cSrcweir const Subset& rSubset ) const 131*cdf0e10cSrcweir { 132*cdf0e10cSrcweir // point only contains a single action, fail if subset 133*cdf0e10cSrcweir // requests different range 134*cdf0e10cSrcweir if( rSubset.mnSubsetBegin != 0 || 135*cdf0e10cSrcweir rSubset.mnSubsetEnd != 1 ) 136*cdf0e10cSrcweir return false; 137*cdf0e10cSrcweir 138*cdf0e10cSrcweir return render( rTransformation ); 139*cdf0e10cSrcweir } 140*cdf0e10cSrcweir 141*cdf0e10cSrcweir ::basegfx::B2DRange PointAction::getBounds( const ::basegfx::B2DHomMatrix& rTransformation ) const 142*cdf0e10cSrcweir { 143*cdf0e10cSrcweir rendering::RenderState aLocalState( maState ); 144*cdf0e10cSrcweir ::canvas::tools::prependToRenderState(aLocalState, rTransformation); 145*cdf0e10cSrcweir 146*cdf0e10cSrcweir return tools::calcDevicePixelBounds( ::basegfx::B2DRange( maPoint.getX()-1, 147*cdf0e10cSrcweir maPoint.getY()-1, 148*cdf0e10cSrcweir maPoint.getX()+1, 149*cdf0e10cSrcweir maPoint.getY()+1 ), 150*cdf0e10cSrcweir mpCanvas->getViewState(), 151*cdf0e10cSrcweir aLocalState ); 152*cdf0e10cSrcweir } 153*cdf0e10cSrcweir 154*cdf0e10cSrcweir ::basegfx::B2DRange PointAction::getBounds( const ::basegfx::B2DHomMatrix& rTransformation, 155*cdf0e10cSrcweir const Subset& rSubset ) const 156*cdf0e10cSrcweir { 157*cdf0e10cSrcweir // point only contains a single action, empty bounds 158*cdf0e10cSrcweir // if subset requests different range 159*cdf0e10cSrcweir if( rSubset.mnSubsetBegin != 0 || 160*cdf0e10cSrcweir rSubset.mnSubsetEnd != 1 ) 161*cdf0e10cSrcweir return ::basegfx::B2DRange(); 162*cdf0e10cSrcweir 163*cdf0e10cSrcweir return getBounds( rTransformation ); 164*cdf0e10cSrcweir } 165*cdf0e10cSrcweir 166*cdf0e10cSrcweir sal_Int32 PointAction::getActionCount() const 167*cdf0e10cSrcweir { 168*cdf0e10cSrcweir return 1; 169*cdf0e10cSrcweir } 170*cdf0e10cSrcweir } 171*cdf0e10cSrcweir 172*cdf0e10cSrcweir ActionSharedPtr PointActionFactory::createPointAction( const ::basegfx::B2DPoint& rPoint, 173*cdf0e10cSrcweir const CanvasSharedPtr& rCanvas, 174*cdf0e10cSrcweir const OutDevState& rState ) 175*cdf0e10cSrcweir { 176*cdf0e10cSrcweir return ActionSharedPtr( new PointAction( rPoint, rCanvas, rState ) ); 177*cdf0e10cSrcweir } 178*cdf0e10cSrcweir 179*cdf0e10cSrcweir ActionSharedPtr PointActionFactory::createPointAction( const ::basegfx::B2DPoint& rPoint, 180*cdf0e10cSrcweir const CanvasSharedPtr& rCanvas, 181*cdf0e10cSrcweir const OutDevState& rState, 182*cdf0e10cSrcweir const ::Color& rColor ) 183*cdf0e10cSrcweir { 184*cdf0e10cSrcweir return ActionSharedPtr( new PointAction( rPoint, rCanvas, rState, rColor ) ); 185*cdf0e10cSrcweir } 186*cdf0e10cSrcweir } 187*cdf0e10cSrcweir } 188