6bee0dc16e
2007/02/10 23:23:54 thb 1.2.12.4: #i37778# Renamed setMouseCursor() to setCursorShape() at View interface (name clash with API method otherwise); added LayerManager/Layer unit tests; fixed a bunch of bugs/glitches found during unit testing 2007/02/06 17:18:15 thb 1.2.12.3: #i37778# Moved clear() method from View to ViewLayer (also sprites need to be cleared); fixed a few more cases of local code style violations; removed redundant inline keywords; finished Layer/LayerManager rework (Layer now represents ViewLayers, shapes and rendering are fully under LayerManager control); made shape comparator reusable 2007/01/31 14:30:34 thb 1.2.12.2: #i37778# removed View::isContentDestroyed() and mbContentValid distinction on View::clear() - clear() now always clears view the hard way; added explicit screen update to CombTransition, which bypasses SlideChangeBase functionality 2007/01/31 11:25:19 thb 1.2.12.1: #i37778# Added prefetch to Animation interface (to facilitate prefetching - nice for slide transitions, which otherwise lag noticeably while generating the slide bitmap); brought tests up to par, re-enabling unit tests and demo show
98 lines
3.4 KiB
C++
98 lines
3.4 KiB
C++
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: views.cxx,v $
|
|
*
|
|
* $Revision: 1.3 $
|
|
*
|
|
* last change: $Author: obo $ $Date: 2007-07-17 15:22:20 $
|
|
*
|
|
* The Contents of this file are made available subject to
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
*
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
************************************************************************/
|
|
|
|
#include <cppunit/simpleheader.hxx>
|
|
#include <cppuhelper/compbase1.hxx>
|
|
#include <comphelper/broadcasthelper.hxx>
|
|
|
|
#include <basegfx/matrix/b2dhommatrix.hxx>
|
|
#include <basegfx/range/b2drectangle.hxx>
|
|
#include <cppcanvas/spritecanvas.hxx>
|
|
|
|
#include "view.hxx"
|
|
#include "unoview.hxx"
|
|
#include "unoviewcontainer.hxx"
|
|
#include "shape.hxx"
|
|
#include "tests.hxx"
|
|
#include "com/sun/star/presentation/XSlideShowView.hpp"
|
|
|
|
namespace target = slideshow::internal;
|
|
using namespace ::com::sun::star;
|
|
|
|
namespace
|
|
{
|
|
|
|
class UnoViewContainerTest : public CppUnit::TestFixture
|
|
{
|
|
public:
|
|
void testContainer()
|
|
{
|
|
target::UnoViewContainer aContainer;
|
|
|
|
TestViewSharedPtr pView = createTestView();
|
|
aContainer.addView( pView );
|
|
|
|
CPPUNIT_ASSERT_MESSAGE( "Testing container size",
|
|
1 == std::distance( aContainer.begin(),
|
|
aContainer.end() ));
|
|
CPPUNIT_ASSERT_MESSAGE( "Testing disposedness",
|
|
pView->paintScreen() );
|
|
aContainer.dispose();
|
|
CPPUNIT_ASSERT_MESSAGE( "Testing dispose: container must be empty",
|
|
0 == std::distance( aContainer.begin(),
|
|
aContainer.end() ));
|
|
CPPUNIT_ASSERT_MESSAGE( "Testing dispose: all elements must receive dispose",
|
|
!pView->paintScreen() );
|
|
}
|
|
|
|
// hook up the test
|
|
CPPUNIT_TEST_SUITE(UnoViewContainerTest);
|
|
CPPUNIT_TEST(testContainer);
|
|
//CPPUNIT_TEST(testLayerManager);
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
}; // class UnoViewContainerTest
|
|
|
|
// -----------------------------------------------------------------------------
|
|
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(UnoViewContainerTest, "UnoViewContainerTest");
|
|
} // namespace
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// this macro creates an empty function, which will called by the RegisterAllFunctions()
|
|
// to let the user the possibility to also register some functions by hand.
|
|
NOADDITIONAL;
|
|
|