office-gobmx/slideshow/test/demoshow.cxx
Stephan Bergmann 9ac86f484b Improvement on previous commit, UCB clean up
* As UCB is only ever initialized with "Local"/"Office", remove this
  configuration vector completely.  The "create" ctor creates an instance
  internally initialized with those "Local"/"Office" keys.  Special (test) code
  can still instantiate an uninitialized one via plain createInstance.  And for
  backwards compatilibity process startup still ensures to create an initialized
  instance early, in case there is still code out there (in extensions) that
  later calls plain createInstance and expects to get the already-initialized
  (single) instance.

* XInitialization is an "implementation detail" of the UniversalContentBroker
  service, do not expose in XUniversalContentBroker.

* ucbhelper/configurationkeys.hxx is no longer needed and is removed.

* ucbhelper/contentbroker.hxx is an empty wrapper and is removed; however, that
  requires ucbhelper::Content constructors to take explicit XComponentContext
  arguments now.

* The only remaining code in ucbhelper/source/client/contentbroker.cxx is
  Android-only InitUCBHelper.  Is that relevant still?

Change-Id: I3f7bddd0456bffbcd13590c66d9011915c760f28
2012-09-14 18:24:49 +02:00

557 lines
18 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <rtl/ref.hxx>
#include <rtl/bootstrap.hxx>
#include <cppuhelper/bootstrap.hxx>
#include <cppuhelper/servicefactory.hxx>
#include <cppuhelper/interfacecontainer.hxx>
#include <cppuhelper/compbase1.hxx>
#include <cppuhelper/compbase2.hxx>
#include <comphelper/processfactory.hxx>
#include <comphelper/broadcasthelper.hxx>
#include <comphelper/anytostring.hxx>
#include <cppuhelper/exc_hlp.hxx>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/beans/XPropertySet.hpp>
#include <com/sun/star/rendering/XCanvas.hpp>
#include <com/sun/star/rendering/XSpriteCanvas.hpp>
#include <com/sun/star/presentation/XSlideShow.hpp>
#include <com/sun/star/presentation/XSlideShowView.hpp>
#include "com/sun/star/animations/TransitionType.hpp"
#include "com/sun/star/animations/TransitionSubType.hpp"
#include <basegfx/matrix/b2dhommatrix.hxx>
#include <basegfx/matrix/b2dhommatrixtools.hxx>
#include <basegfx/tools/canvastools.hxx>
#include <basegfx/range/b2drectangle.hxx>
#include <basegfx/polygon/b2dpolygon.hxx>
#include <basegfx/polygon/b2dpolygontools.hxx>
#include <cppcanvas/vclfactory.hxx>
#include <cppcanvas/basegfxfactory.hxx>
#include <cppcanvas/polypolygon.hxx>
#include <canvas/canvastools.hxx>
#include <vcl/dialog.hxx>
#include <vcl/timer.hxx>
#include <vcl/window.hxx>
#include <vcl/svapp.hxx>
#include <stdio.h>
#include <unistd.h>
using namespace ::com::sun::star;
namespace {
typedef ::cppu::WeakComponentImplHelper1< presentation::XSlideShowView > ViewBase;
class View : public ::comphelper::OBaseMutex,
public ViewBase
{
public:
explicit View( const uno::Reference< rendering::XSpriteCanvas >& rCanvas ) :
ViewBase( m_aMutex ),
mxCanvas( rCanvas ),
maPaintListeners( m_aMutex ),
maTransformationListeners( m_aMutex ),
maMouseListeners( m_aMutex ),
maMouseMotionListeners( m_aMutex ),
maTransform(),
maSize()
{
}
void resize( const ::Size& rNewSize )
{
maSize = rNewSize;
const sal_Int32 nSize( std::min( rNewSize.Width(), rNewSize.Height() ) - 10);
maTransform = basegfx::tools::createScaleTranslateB2DHomMatrix(
nSize, nSize, (rNewSize.Width() - nSize) / 2, (rNewSize.Height() - nSize) / 2);
lang::EventObject aEvent( *this );
maTransformationListeners.notifyEach( &util::XModifyListener::modified,
aEvent );
}
void repaint()
{
awt::PaintEvent aEvent( *this,
awt::Rectangle(),
0 );
maPaintListeners.notifyEach( &awt::XPaintListener::windowPaint,
aEvent );
}
private:
virtual ~View() {}
virtual uno::Reference< rendering::XSpriteCanvas > SAL_CALL getCanvas( ) throw (uno::RuntimeException)
{
return mxCanvas;
}
virtual void SAL_CALL clear( ) throw (uno::RuntimeException)
{
::basegfx::B2DPolygon aPoly( ::basegfx::tools::createPolygonFromRect(
::basegfx::B2DRectangle(0.0,0.0,
maSize.Width(),
maSize.Height() )));
::cppcanvas::SpriteCanvasSharedPtr pCanvas(
::cppcanvas::VCLFactory::getInstance().createSpriteCanvas( mxCanvas ));
if( !pCanvas )
return;
::cppcanvas::PolyPolygonSharedPtr pPolyPoly(
::cppcanvas::BaseGfxFactory::getInstance().createPolyPolygon( pCanvas,
aPoly ) );
if( !pPolyPoly )
return;
if( pPolyPoly )
{
pPolyPoly->setRGBAFillColor( 0x808080FFU );
pPolyPoly->draw();
}
}
virtual geometry::AffineMatrix2D SAL_CALL getTransformation( ) throw (uno::RuntimeException)
{
geometry::AffineMatrix2D aRes;
return basegfx::unotools::affineMatrixFromHomMatrix( aRes,
maTransform );
}
virtual void SAL_CALL addTransformationChangedListener( const uno::Reference< util::XModifyListener >& xListener ) throw (uno::RuntimeException)
{
maTransformationListeners.addInterface( xListener );
}
virtual void SAL_CALL removeTransformationChangedListener( const uno::Reference< util::XModifyListener >& xListener ) throw (uno::RuntimeException)
{
maTransformationListeners.removeInterface( xListener );
}
virtual void SAL_CALL addPaintListener( const uno::Reference< awt::XPaintListener >& xListener ) throw (uno::RuntimeException)
{
maPaintListeners.addInterface( xListener );
}
virtual void SAL_CALL removePaintListener( const uno::Reference< awt::XPaintListener >& xListener ) throw (uno::RuntimeException)
{
maPaintListeners.removeInterface( xListener );
}
virtual void SAL_CALL addMouseListener( const uno::Reference< awt::XMouseListener >& xListener ) throw (uno::RuntimeException)
{
maMouseListeners.addInterface( xListener );
}
virtual void SAL_CALL removeMouseListener( const uno::Reference< awt::XMouseListener >& xListener ) throw (uno::RuntimeException)
{
maMouseListeners.removeInterface( xListener );
}
virtual void SAL_CALL addMouseMotionListener( const uno::Reference< awt::XMouseMotionListener >& xListener ) throw (uno::RuntimeException)
{
maMouseMotionListeners.addInterface( xListener );
}
virtual void SAL_CALL removeMouseMotionListener( const uno::Reference< awt::XMouseMotionListener >& xListener ) throw (uno::RuntimeException)
{
maMouseMotionListeners.removeInterface( xListener );
}
virtual void SAL_CALL setMouseCursor( ::sal_Int16 /*nPointerShape*/ ) throw (uno::RuntimeException)
{
}
virtual awt::Rectangle SAL_CALL getCanvasArea( ) throw (uno::RuntimeException)
{
return awt::Rectangle(0,0,maSize.Width(),maSize.Height());
}
uno::Reference< rendering::XSpriteCanvas > mxCanvas;
::cppu::OInterfaceContainerHelper maPaintListeners;
::cppu::OInterfaceContainerHelper maTransformationListeners;
::cppu::OInterfaceContainerHelper maMouseListeners;
::cppu::OInterfaceContainerHelper maMouseMotionListeners;
basegfx::B2DHomMatrix maTransform;
Size maSize;
};
typedef ::cppu::WeakComponentImplHelper2< drawing::XDrawPage,
beans::XPropertySet > SlideBase;
class DummySlide : public ::comphelper::OBaseMutex,
public SlideBase
{
public:
DummySlide() : SlideBase( m_aMutex ) {}
private:
// XDrawPage
virtual void SAL_CALL add( const uno::Reference< drawing::XShape >& /*xShape*/ ) throw (uno::RuntimeException)
{
}
virtual void SAL_CALL remove( const uno::Reference< drawing::XShape >& /*xShape*/ ) throw (uno::RuntimeException)
{
}
virtual ::sal_Int32 SAL_CALL getCount( ) throw (uno::RuntimeException)
{
return 0;
}
virtual uno::Any SAL_CALL getByIndex( ::sal_Int32 /*Index*/ ) throw (lang::IndexOutOfBoundsException, lang::WrappedTargetException, uno::RuntimeException)
{
return uno::Any();
}
virtual uno::Type SAL_CALL getElementType( ) throw (uno::RuntimeException)
{
return uno::Type();
}
virtual ::sal_Bool SAL_CALL hasElements( ) throw (uno::RuntimeException)
{
return false;
}
// XPropertySet
virtual uno::Reference< beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) throw (uno::RuntimeException)
{
return uno::Reference< beans::XPropertySetInfo >();
}
virtual void SAL_CALL setPropertyValue( const ::rtl::OUString& /*aPropertyName*/,
const uno::Any& /*aValue*/ ) throw (beans::UnknownPropertyException, beans::PropertyVetoException, lang::IllegalArgumentException, lang::WrappedTargetException, uno::RuntimeException)
{
}
virtual uno::Any SAL_CALL getPropertyValue( const ::rtl::OUString& PropertyName ) throw (beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException)
{
typedef ::canvas::tools::ValueMap< sal_Int16 > PropMapT;
// fixed PropertyValue map
static PropMapT::MapEntry lcl_propertyMap[] =
{
{"Height", 100},
{"MinimalFrameNumber", 50},
{"TransitionDuration", 10},
{"TransitionSubtype", animations::TransitionSubType::FROMTOPLEFT},
{"TransitionType", animations::TransitionType::PUSHWIPE},
{"Width", 100}
};
static PropMapT aMap( lcl_propertyMap,
SAL_N_ELEMENTS(lcl_propertyMap),
true );
sal_Int16 aRes;
if( !aMap.lookup( PropertyName, aRes ))
return uno::Any();
return uno::makeAny(aRes);
}
virtual void SAL_CALL addPropertyChangeListener( const ::rtl::OUString& /*aPropertyName*/,
const uno::Reference< beans::XPropertyChangeListener >& /*xListener*/ ) throw (beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException)
{
}
virtual void SAL_CALL removePropertyChangeListener( const ::rtl::OUString& /*aPropertyName*/,
const uno::Reference< beans::XPropertyChangeListener >& /*aListener*/ ) throw (beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException)
{
}
virtual void SAL_CALL addVetoableChangeListener( const ::rtl::OUString& /*PropertyName*/,
const uno::Reference< beans::XVetoableChangeListener >& /*aListener*/ ) throw (beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException)
{
}
virtual void SAL_CALL removeVetoableChangeListener( const ::rtl::OUString& /*PropertyName*/,
const uno::Reference< beans::XVetoableChangeListener >& /*aListener*/ ) throw (beans::UnknownPropertyException, lang::WrappedTargetException, uno::RuntimeException)
{
}
};
class DemoApp : public Application
{
public:
virtual void Main();
virtual sal_uInt16 Exception( sal_uInt16 nError );
};
class ChildWindow : public Window
{
public:
ChildWindow( Window* pParent );
virtual ~ChildWindow();
virtual void Paint( const Rectangle& rRect );
virtual void Resize();
void setShow( const uno::Reference< presentation::XSlideShow >& rShow ) { mxShow = rShow; init(); }
private:
void init();
rtl::Reference< View > mpView;
uno::Reference< presentation::XSlideShow > mxShow;
};
ChildWindow::ChildWindow( Window* pParent ) :
Window(pParent, WB_CLIPCHILDREN | WB_BORDER| WB_3DLOOK ),
mpView(),
mxShow()
{
EnablePaint( true );
Show();
}
ChildWindow::~ChildWindow()
{
if( mxShow.is() && mpView.is() )
mxShow->removeView( mpView.get() );
}
void ChildWindow::init()
{
try
{
if( !mpView.is() )
{
uno::Reference< rendering::XCanvas > xCanvas( GetCanvas(),
uno::UNO_QUERY_THROW );
uno::Reference< rendering::XSpriteCanvas > xSpriteCanvas( xCanvas,
uno::UNO_QUERY_THROW );
mpView = new View( xSpriteCanvas );
mpView->resize( GetSizePixel() );
if( mxShow.is() )
mxShow->addView( mpView.get() );
}
}
catch (const uno::Exception &e)
{
OSL_TRACE( "Exception '%s' thrown\n" ,
::rtl::OUStringToOString( e.Message, RTL_TEXTENCODING_UTF8 ).getStr() );
}
}
void ChildWindow::Paint( const Rectangle& /*rRect*/ )
{
try
{
if( mpView.is() )
mpView->repaint();
}
catch (const uno::Exception &e)
{
OSL_TRACE( "Exception '%s' thrown\n" ,
::rtl::OUStringToOString( e.Message,
RTL_TEXTENCODING_UTF8 ).getStr() );
}
}
void ChildWindow::Resize()
{
if( mpView.is() )
mpView->resize( GetSizePixel() );
}
class DemoWindow : public Dialog
{
public:
DemoWindow();
virtual void Paint( const Rectangle& rRect );
virtual void Resize();
private:
void init();
DECL_LINK( updateHdl, Timer* );
ChildWindow maLeftChild;
ChildWindow maRightTopChild;
ChildWindow maRightBottomChild;
uno::Reference< presentation::XSlideShow > mxShow;
AutoTimer maUpdateTimer;
bool mbSlideDisplayed;
};
DemoWindow::DemoWindow() :
Dialog((Window*)NULL),
maLeftChild( this ),
maRightTopChild( this ),
maRightBottomChild( this ),
mxShow(),
maUpdateTimer(),
mbSlideDisplayed( false )
{
SetText( rtl::OUString("Slideshow Demo" ) );
SetSizePixel( Size( 640, 480 ) );
EnablePaint( true );
maLeftChild.SetPosSizePixel( Point(), Size(320,480) );
maRightTopChild.SetPosSizePixel( Point(320,0), Size(320,240) );
maRightBottomChild.SetPosSizePixel( Point(320,240), Size(320,240) );
Show();
maUpdateTimer.SetTimeoutHdl(LINK(this, DemoWindow, updateHdl));
maUpdateTimer.SetTimeout( (sal_uLong)30 );
maUpdateTimer.Start();
}
void DemoWindow::init()
{
try
{
if( !mxShow.is() )
{
uno::Reference< lang::XMultiServiceFactory > xFactory(
::comphelper::getProcessServiceFactory(),
uno::UNO_QUERY_THROW );
uno::Reference< uno::XInterface > xInt( xFactory->createInstance(
::rtl::OUString("com.sun.star.presentation.SlideShow") ));
mxShow.set( xInt,
uno::UNO_QUERY_THROW );
maLeftChild.setShow( mxShow );
maRightTopChild.setShow( mxShow );
maRightBottomChild.setShow( mxShow );
}
if( mxShow.is() && !mbSlideDisplayed )
{
uno::Reference< drawing::XDrawPage > xSlide( new DummySlide );
uno::Reference< drawing::XDrawPages > xDrawPages;
mxShow->displaySlide( xSlide,
uno::Reference< drawing::XDrawPagesSupplier >(),
uno::Reference< animations::XAnimationNode >(),
uno::Sequence< beans::PropertyValue >() );
mxShow->setProperty( beans::PropertyValue(
rtl::OUString("RehearseTimings"),
0,
uno::makeAny( sal_True ),
beans::PropertyState_DIRECT_VALUE ));
mbSlideDisplayed = true;
}
}
catch (const uno::Exception &e)
{
OSL_TRACE( "Exception '%s' thrown\n" ,
::rtl::OUStringToOString( e.Message,
RTL_TEXTENCODING_UTF8 ).getStr() );
}
}
IMPL_LINK_NOARG(DemoWindow, updateHdl)
{
init();
if( mxShow.is() )
{
double nTimeout;
mxShow->update(nTimeout);
}
return 0;
}
void DemoWindow::Paint( const Rectangle& /*rRect*/ )
{
init();
}
void DemoWindow::Resize()
{
// TODO
}
sal_uInt16 DemoApp::Exception( sal_uInt16 nError )
{
switch( nError & EXC_MAJORTYPE )
{
case EXC_RSCNOTLOADED:
Abort( String::CreateFromAscii( "Error: could not load language resources.\nPlease check your installation.\n" ) );
break;
}
return 0;
}
void DemoApp::Main()
{
bool bHelp = false;
for( sal_uInt16 i = 0; i < GetCommandLineParamCount(); i++ )
{
::rtl::OUString aParam = GetCommandLineParam( i );
if( aParam == "--help" || aParam == "-h" )
bHelp = true;
}
if( bHelp )
{
printf( "demoshow - life Slideshow testbed\n" );
return;
}
// bootstrap UNO
uno::Reference< lang::XMultiServiceFactory > xFactory;
try
{
uno::Reference< uno::XComponentContext > xCtx = ::cppu::defaultBootstrap_InitialComponentContext();
xFactory = uno::Reference< lang::XMultiServiceFactory >( xCtx->getServiceManager(),
uno::UNO_QUERY );
if( xFactory.is() )
::comphelper::setProcessServiceFactory( xFactory );
}
catch( uno::RuntimeException& )
{
throw;
}
catch( uno::Exception& )
{
OSL_FAIL( rtl::OUStringToOString(
comphelper::anyToString( cppu::getCaughtException() ),
RTL_TEXTENCODING_UTF8 ).getStr() );
}
if( !xFactory.is() )
{
OSL_TRACE( "Could not bootstrap UNO, installation must be in disorder. Exiting." );
exit( 1 );
}
DemoWindow pWindow;
pWindow.Execute();
}
}
DemoApp aApp;
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */