bump product version to 6.4.0.3
[LibreOffice.git] / slideshow / test / testview.cxx
blobf391059722e264f91d4c665cb68ad92ae470df83
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 .
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>
35 #include "tests.hxx"
36 #include <view.hxx>
37 #include <unoview.hxx>
38 #include <com/sun/star/presentation/XSlideShowView.hpp>
40 #include <vector>
41 #include <exception>
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,
51 public ViewBase
53 mutable std::vector<std::pair<basegfx::B2DVector,double> > maCreatedSprites;
54 mutable std::vector<TestViewSharedPtr> maViewLayers;
55 basegfx::B2DRange maBounds;
56 basegfx::B1DRange maPriority;
57 bool mbIsClipSet;
58 bool mbIsClipEmptied;
59 bool mbDisposed;
62 public:
63 ImplTestView() :
64 ViewBase(m_aMutex),
65 maCreatedSprites(),
66 maViewLayers(),
67 maBounds(),
68 maPriority(),
69 mbIsClipSet(false),
70 mbIsClipEmptied(false),
71 mbDisposed( false )
75 // XSlideShowView
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
143 return maBounds;
146 virtual std::vector<std::shared_ptr<TestView> > getViewLayers() const override
148 return maViewLayers;
151 // ViewLayer
152 virtual bool isOnView(target::ViewSharedPtr const& /*rView*/) const override
154 return true;
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
172 maPriority = rRange;
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
187 if( !mbIsClipSet )
189 if( rClip.count() > 0 )
190 mbIsClipSet = true;
192 else if( !mbIsClipEmptied )
194 if( rClip.count() == 0 )
195 mbIsClipEmptied = true;
197 else if( rClip.count() > 0 )
199 mbIsClipSet = true;
200 mbIsClipEmptied = false;
202 else
204 // unexpected call
205 throw std::exception();
209 virtual bool resize( const basegfx::B2DRange& rArea ) override
211 const bool bRet( maBounds != rArea );
212 maBounds = rArea;
213 return bRet;
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
228 return !mbDisposed;
231 virtual bool paintScreen() const override
233 // misusing updateScreen for state reporting
234 return !mbDisposed;
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
260 mbDisposed = true;
263 virtual bool isSoundEnabled() const override
265 return true;
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: */