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>
21 #include <cppunit/TestAssert.h>
22 #include <cppunit/TestFixture.h>
23 #include <cppunit/extensions/HelperMacros.h>
25 #include <cppuhelper/compbase.hxx>
26 #include <cppuhelper/basemutex.hxx>
27 #include <comphelper/make_shared_from_uno.hxx>
29 #include <basegfx/matrix/b2dhommatrix.hxx>
30 #include <basegfx/range/b1drange.hxx>
31 #include <basegfx/range/b2drectangle.hxx>
32 #include <basegfx/polygon/b2dpolypolygon.hxx>
33 #include <cppcanvas/spritecanvas.hxx>
37 #include <unoview.hxx>
38 #include <com/sun/star/presentation/XSlideShowView.hpp>
44 namespace target
= slideshow::internal
;
45 using namespace ::com::sun::star
;
47 // our test view subject
48 typedef ::cppu::WeakComponentImplHelper
< presentation::XSlideShowView
> ViewBase
;
49 class ImplTestView
: public TestView
,
50 private cppu::BaseMutex
,
53 mutable std::vector
<std::pair
<basegfx::B2DVector
,double> > maCreatedSprites
;
54 mutable std::vector
<TestViewSharedPtr
> maViewLayers
;
55 basegfx::B2DRange maBounds
;
56 basegfx::B1DRange maPriority
;
70 mbIsClipEmptied(false),
76 virtual uno::Reference
< rendering::XSpriteCanvas
> SAL_CALL
getCanvas( ) override
78 return uno::Reference
< rendering::XSpriteCanvas
>();
81 virtual void SAL_CALL
clear( ) override
85 virtual geometry::AffineMatrix2D SAL_CALL
getTransformation( ) override
87 return geometry::AffineMatrix2D();
90 virtual ::css::geometry::IntegerSize2D SAL_CALL
getTranslationOffset() override
92 return geometry::IntegerSize2D();
95 virtual geometry::IntegerSize2D
getTranslationOffset() const override
97 return geometry::IntegerSize2D();
100 virtual void SAL_CALL
addTransformationChangedListener( const uno::Reference
< util::XModifyListener
>& ) override
104 virtual void SAL_CALL
removeTransformationChangedListener( const uno::Reference
< util::XModifyListener
>& ) override
108 virtual void SAL_CALL
addPaintListener( const uno::Reference
< awt::XPaintListener
>& ) override
112 virtual void SAL_CALL
removePaintListener( const uno::Reference
< awt::XPaintListener
>& ) override
116 virtual void SAL_CALL
addMouseListener( const uno::Reference
< awt::XMouseListener
>& ) override
120 virtual void SAL_CALL
removeMouseListener( const uno::Reference
< awt::XMouseListener
>& ) override
124 virtual void SAL_CALL
addMouseMotionListener( const uno::Reference
< awt::XMouseMotionListener
>& ) override
128 virtual void SAL_CALL
removeMouseMotionListener( const uno::Reference
< awt::XMouseMotionListener
>& ) override
132 virtual void SAL_CALL
setMouseCursor( ::sal_Int16
) override
136 virtual awt::Rectangle SAL_CALL
getCanvasArea( ) override
138 return awt::Rectangle(0,0,100,100);
141 virtual basegfx::B2DRange
getBounds() const override
146 virtual std::vector
<std::shared_ptr
<TestView
> > getViewLayers() const override
152 virtual bool isOnView(target::ViewSharedPtr
const& /*rView*/) const override
157 virtual ::cppcanvas::CanvasSharedPtr
getCanvas() const override
159 return ::cppcanvas::CanvasSharedPtr();
162 virtual ::cppcanvas::CustomSpriteSharedPtr
createSprite( const ::basegfx::B2DSize
& rSpriteSizePixel
,
163 double nPriority
) const override
165 maCreatedSprites
.push_back( std::make_pair(rSpriteSizePixel
,nPriority
) );
167 return ::cppcanvas::CustomSpriteSharedPtr();
170 virtual void setPriority( const basegfx::B1DRange
& rRange
) override
175 virtual ::basegfx::B2DHomMatrix
getTransformation() const override
177 return ::basegfx::B2DHomMatrix();
180 virtual ::basegfx::B2DHomMatrix
getSpriteTransformation() const override
182 return ::basegfx::B2DHomMatrix();
185 virtual void setClip( const ::basegfx::B2DPolyPolygon
& rClip
) override
189 if( rClip
.count() > 0 )
192 else if( !mbIsClipEmptied
)
194 if( rClip
.count() == 0 )
195 mbIsClipEmptied
= true;
197 else if( rClip
.count() > 0 )
200 mbIsClipEmptied
= false;
205 throw std::exception();
209 virtual bool resize( const basegfx::B2DRange
& rArea
) override
211 const bool bRet( maBounds
!= rArea
);
216 virtual target::ViewLayerSharedPtr
createViewLayer(
217 const basegfx::B2DRange
& rLayerBounds
) const override
219 maViewLayers
.push_back( TestViewSharedPtr(new ImplTestView()));
220 maViewLayers
.back()->resize( rLayerBounds
);
222 return maViewLayers
.back();
225 virtual bool updateScreen() const override
227 // misusing updateScreen for state reporting
231 virtual bool paintScreen() const override
233 // misusing updateScreen for state reporting
237 virtual void clear() const override
241 virtual void clearAll() const override
245 virtual void setViewSize( const ::basegfx::B2DSize
& ) override
249 virtual void setCursorShape( sal_Int16
/*nPointerShape*/ ) override
253 virtual uno::Reference
< presentation::XSlideShowView
> getUnoView() const override
255 return uno::Reference
< presentation::XSlideShowView
>( const_cast<ImplTestView
*>(this) );
258 virtual void _dispose() override
263 virtual bool isSoundEnabled() const override
268 virtual void setIsSoundEnabled (const bool /*bValue*/) override
274 TestViewSharedPtr
createTestView()
276 return TestViewSharedPtr(
277 comphelper::make_shared_from_UNO(
278 new ImplTestView()) );
281 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */