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 .
20 #include <sal/types.h>
22 #include <cppuhelper/compbase.hxx>
23 #include <cppuhelper/basemutex.hxx>
24 #include <comphelper/make_shared_from_uno.hxx>
26 #include <basegfx/matrix/b2dhommatrix.hxx>
27 #include <basegfx/range/b1drange.hxx>
28 #include <basegfx/polygon/b2dpolypolygon.hxx>
32 #include <com/sun/star/presentation/XSlideShowView.hpp>
38 namespace target
= slideshow::internal
;
39 using namespace ::com::sun::star
;
41 // our test view subject
42 typedef ::cppu::WeakComponentImplHelper
< presentation::XSlideShowView
> ViewBase
;
46 class ImplTestView
: public TestView
,
47 private cppu::BaseMutex
,
50 mutable std::vector
<std::pair
<basegfx::B2DVector
,double> > maCreatedSprites
;
51 mutable std::vector
<TestViewSharedPtr
> maViewLayers
;
52 basegfx::B2DRange maBounds
;
53 basegfx::B1DRange maPriority
;
67 mbIsClipEmptied(false),
73 virtual uno::Reference
< rendering::XSpriteCanvas
> SAL_CALL
getCanvas( ) override
75 return uno::Reference
< rendering::XSpriteCanvas
>();
78 virtual void SAL_CALL
clear( ) override
82 virtual geometry::AffineMatrix2D SAL_CALL
getTransformation( ) override
84 return geometry::AffineMatrix2D();
87 virtual ::css::geometry::IntegerSize2D SAL_CALL
getTranslationOffset() override
89 return geometry::IntegerSize2D();
92 virtual geometry::IntegerSize2D
getTranslationOffset() const override
94 return geometry::IntegerSize2D();
97 virtual void SAL_CALL
addTransformationChangedListener( const uno::Reference
< util::XModifyListener
>& ) override
101 virtual void SAL_CALL
removeTransformationChangedListener( const uno::Reference
< util::XModifyListener
>& ) override
105 virtual void SAL_CALL
addPaintListener( const uno::Reference
< awt::XPaintListener
>& ) override
109 virtual void SAL_CALL
removePaintListener( const uno::Reference
< awt::XPaintListener
>& ) override
113 virtual void SAL_CALL
addMouseListener( const uno::Reference
< awt::XMouseListener
>& ) override
117 virtual void SAL_CALL
removeMouseListener( const uno::Reference
< awt::XMouseListener
>& ) override
121 virtual void SAL_CALL
addMouseMotionListener( const uno::Reference
< awt::XMouseMotionListener
>& ) override
125 virtual void SAL_CALL
removeMouseMotionListener( const uno::Reference
< awt::XMouseMotionListener
>& ) override
129 virtual void SAL_CALL
setMouseCursor( ::sal_Int16
) override
133 virtual awt::Rectangle SAL_CALL
getCanvasArea( ) override
135 return awt::Rectangle(0,0,100,100);
138 virtual basegfx::B2DRange
getBounds() const override
143 virtual std::vector
<std::shared_ptr
<TestView
> > getViewLayers() const override
149 virtual bool isOnView(target::ViewSharedPtr
const& /*rView*/) const override
154 virtual ::cppcanvas::CanvasSharedPtr
getCanvas() const override
156 return ::cppcanvas::CanvasSharedPtr();
159 virtual ::cppcanvas::CustomSpriteSharedPtr
createSprite( const ::basegfx::B2DSize
& rSpriteSizePixel
,
160 double nPriority
) const override
162 basegfx::B2DVector
aSpriteSizeVector(rSpriteSizePixel
.getWidth(), rSpriteSizePixel
.getHeight());
163 maCreatedSprites
.emplace_back(aSpriteSizeVector
, nPriority
);
165 return ::cppcanvas::CustomSpriteSharedPtr();
168 virtual void setPriority( const basegfx::B1DRange
& rRange
) override
173 virtual ::basegfx::B2DHomMatrix
getTransformation() const override
175 return ::basegfx::B2DHomMatrix();
178 virtual ::basegfx::B2DHomMatrix
getSpriteTransformation() const override
180 return ::basegfx::B2DHomMatrix();
183 virtual void setClip( const ::basegfx::B2DPolyPolygon
& rClip
) override
187 if( rClip
.count() > 0 )
190 else if( !mbIsClipEmptied
)
192 if( rClip
.count() == 0 )
193 mbIsClipEmptied
= true;
195 else if( rClip
.count() > 0 )
198 mbIsClipEmptied
= false;
203 throw std::exception();
207 virtual bool resize( const basegfx::B2DRange
& rArea
) override
209 const bool bRet( maBounds
!= rArea
);
214 virtual target::ViewLayerSharedPtr
createViewLayer(
215 const basegfx::B2DRange
& rLayerBounds
) const override
217 maViewLayers
.push_back( std::make_shared
<ImplTestView
>());
218 maViewLayers
.back()->resize( rLayerBounds
);
220 return maViewLayers
.back();
223 virtual bool updateScreen() const override
225 // misusing updateScreen for state reporting
229 virtual bool paintScreen() const override
231 // misusing updateScreen for state reporting
235 virtual void clear() const override
239 virtual void clearAll() const override
243 virtual void setViewSize( const ::basegfx::B2DSize
& ) override
247 virtual void setCursorShape( sal_Int16
/*nPointerShape*/ ) override
251 virtual uno::Reference
< presentation::XSlideShowView
> getUnoView() const override
253 return uno::Reference
< presentation::XSlideShowView
>( const_cast<ImplTestView
*>(this) );
256 virtual void _dispose() override
261 virtual bool isSoundEnabled() const override
266 virtual void setIsSoundEnabled (const bool /*bValue*/) override
273 TestViewSharedPtr
createTestView()
275 return TestViewSharedPtr(
276 comphelper::make_shared_from_UNO(
277 new ImplTestView()) );
280 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */