1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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>
30 using namespace ::com::sun::star
;
32 namespace cppcanvas::internal
34 CachedPrimitiveBase::CachedPrimitiveBase( const CanvasSharedPtr
& rCanvas
,
35 bool bOnlyRedrawWithSameTransform
) :
38 maLastTransformation(),
39 mbOnlyRedrawWithSameTransform( bOnlyRedrawWithSameTransform
)
41 // TODO(F2): also store last view transform, and refuse to
45 bool CachedPrimitiveBase::render( const ::basegfx::B2DHomMatrix
& rTransformation
) const
47 SAL_INFO( "cppcanvas.emf", "::cppcanvas::internal::CachedPrimitiveBase::render()" );
48 SAL_INFO( "cppcanvas.emf", "::cppcanvas::internal::CachedPrimitiveBase: 0x" << std::hex
<< this );
50 const rendering::ViewState
& rViewState( mpCanvas
->getViewState() );
51 ::basegfx::B2DHomMatrix aTotalTransform
;
53 ::canvas::tools::getViewStateTransform( aTotalTransform
,
55 aTotalTransform
*= rTransformation
;
57 // can we use the cached primitive? For that, it must be
58 // present in the first place, and, if
59 // mbOnlyRedrawWithSameTransform is true, the overall
60 // transformation must be the same.
61 if( mxCachedPrimitive
.is() &&
62 (!mbOnlyRedrawWithSameTransform
||
63 maLastTransformation
== aTotalTransform
) )
65 if( mxCachedPrimitive
->redraw( rViewState
) ==
66 rendering::RepaintResult::REDRAWN
)
68 // cached repaint succeeded, done.
73 maLastTransformation
= aTotalTransform
;
75 // delegate rendering to derived classes
76 return renderPrimitive( mxCachedPrimitive
,
81 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */