use insert function instead of for loop
[LibreOffice.git] / cppcanvas / source / mtfrenderer / cachedprimitivebase.cxx
blob94cc42f77e4adb8b291622585ee5708d3ca8975c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
21 #include <com/sun/star/rendering/RepaintResult.hpp>
23 #include <basegfx/matrix/b2dhommatrix.hxx>
24 #include <canvas/canvastools.hxx>
25 #include <cppcanvas/canvas.hxx>
27 #include "cachedprimitivebase.hxx"
28 #include <sal/log.hxx>
29 #include <utility>
31 using namespace ::com::sun::star;
33 namespace cppcanvas::internal
35 CachedPrimitiveBase::CachedPrimitiveBase( CanvasSharedPtr xCanvas,
36 bool bOnlyRedrawWithSameTransform ) :
37 mpCanvas(std::move( xCanvas )),
38 mbOnlyRedrawWithSameTransform( bOnlyRedrawWithSameTransform )
40 // TODO(F2): also store last view transform, and refuse to
41 // redraw if changed.
44 bool CachedPrimitiveBase::render( const ::basegfx::B2DHomMatrix& rTransformation ) const
46 SAL_INFO( "cppcanvas.emf", "::cppcanvas::internal::CachedPrimitiveBase::render()" );
47 SAL_INFO( "cppcanvas.emf", "::cppcanvas::internal::CachedPrimitiveBase: 0x" << std::hex << this );
49 const rendering::ViewState aViewState( mpCanvas->getViewState() );
50 ::basegfx::B2DHomMatrix aTotalTransform = ::canvas::tools::getViewStateTransform(
51 aViewState );
52 aTotalTransform *= rTransformation;
54 // can we use the cached primitive? For that, it must be
55 // present in the first place, and, if
56 // mbOnlyRedrawWithSameTransform is true, the overall
57 // transformation must be the same.
58 if( mxCachedPrimitive.is() &&
59 (!mbOnlyRedrawWithSameTransform ||
60 maLastTransformation == aTotalTransform) )
62 if( mxCachedPrimitive->redraw( aViewState ) ==
63 rendering::RepaintResult::REDRAWN )
65 // cached repaint succeeded, done.
66 return true;
70 maLastTransformation = aTotalTransform;
72 // delegate rendering to derived classes
73 return renderPrimitive( mxCachedPrimitive,
74 rTransformation );
78 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */