summaryrefslogtreecommitdiff
path: root/sd/source/ui/slideshow/slideshowviewimpl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/slideshow/slideshowviewimpl.cxx')
-rw-r--r--sd/source/ui/slideshow/slideshowviewimpl.cxx42
1 files changed, 21 insertions, 21 deletions
diff --git a/sd/source/ui/slideshow/slideshowviewimpl.cxx b/sd/source/ui/slideshow/slideshowviewimpl.cxx
index 0d0673d84414..fa293b2a7a98 100644
--- a/sd/source/ui/slideshow/slideshowviewimpl.cxx
+++ b/sd/source/ui/slideshow/slideshowviewimpl.cxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -63,11 +63,11 @@ namespace sd
{
///////////////////////////////////////////////////////////////////////
-// SlideShowViewListeners
+// SlideShowViewListeners
///////////////////////////////////////////////////////////////////////
SlideShowViewListeners::SlideShowViewListeners( ::osl::Mutex& rMutex )
-: mrMutex( rMutex )
+: mrMutex( rMutex )
{
}
@@ -127,23 +127,23 @@ void SlideShowViewListeners::disposing( const lang::EventObject& _rEventSource )
}
///////////////////////////////////////////////////////////////////////
-// SlideShowViewPaintListeners
+// SlideShowViewPaintListeners
///////////////////////////////////////////////////////////////////////
SlideShowViewPaintListeners::SlideShowViewPaintListeners( ::osl::Mutex& rMutex )
-: SlideShowViewPaintListeners_Base( rMutex )
+: SlideShowViewPaintListeners_Base( rMutex )
{
}
bool SlideShowViewPaintListeners::implTypedNotify( const Reference< awt::XPaintListener >& rListener,
- const awt::PaintEvent& rEvent ) throw( uno::Exception )
+ const awt::PaintEvent& rEvent ) throw( uno::Exception )
{
rListener->windowPaint( rEvent );
return true; // continue calling listeners
}
///////////////////////////////////////////////////////////////////////
-// SlideShowViewMouseListeners
+// SlideShowViewMouseListeners
///////////////////////////////////////////////////////////////////////
SlideShowViewMouseListeners::SlideShowViewMouseListeners( ::osl::Mutex& rMutex ) :
@@ -151,8 +151,8 @@ SlideShowViewMouseListeners::SlideShowViewMouseListeners( ::osl::Mutex& rMutex )
{
}
-bool SlideShowViewMouseListeners::implTypedNotify( const Reference< awt::XMouseListener >& rListener,
- const WrappedMouseEvent& rEvent ) throw( uno::Exception )
+bool SlideShowViewMouseListeners::implTypedNotify( const Reference< awt::XMouseListener >& rListener,
+ const WrappedMouseEvent& rEvent ) throw( uno::Exception )
{
switch( rEvent.meType )
{
@@ -177,7 +177,7 @@ bool SlideShowViewMouseListeners::implTypedNotify( const Reference< awt::XMouseL
}
///////////////////////////////////////////////////////////////////////
-// SlideShowViewMouseMotionListeners
+// SlideShowViewMouseMotionListeners
///////////////////////////////////////////////////////////////////////
SlideShowViewMouseMotionListeners::SlideShowViewMouseMotionListeners( ::osl::Mutex& rMutex ) :
@@ -185,15 +185,15 @@ SlideShowViewMouseMotionListeners::SlideShowViewMouseMotionListeners( ::osl::Mut
{
}
-bool SlideShowViewMouseMotionListeners::implTypedNotify( const Reference< awt::XMouseMotionListener >& rListener,
- const WrappedMouseMotionEvent& rEvent ) throw( uno::Exception )
+bool SlideShowViewMouseMotionListeners::implTypedNotify( const Reference< awt::XMouseMotionListener >& rListener,
+ const WrappedMouseMotionEvent& rEvent ) throw( uno::Exception )
{
switch( rEvent.meType )
{
case WrappedMouseMotionEvent::DRAGGED:
rListener->mouseDragged( rEvent.maEvent );
break;
-
+
case WrappedMouseMotionEvent::MOVED:
rListener->mouseMoved( rEvent.maEvent );
break;
@@ -206,12 +206,12 @@ bool SlideShowViewMouseMotionListeners::implTypedNotify( const Reference< awt::X
// SlideShowView
///////////////////////////////////////////////////////////////////////
-SlideShowView::SlideShowView( ShowWindow& rOutputWindow,
- SdDrawDocument* pDoc,
- AnimationMode eAnimationMode,
+SlideShowView::SlideShowView( ShowWindow& rOutputWindow,
+ SdDrawDocument* pDoc,
+ AnimationMode eAnimationMode,
SlideshowImpl* pSlideShow,
bool bFullScreen )
-: SlideShowView_Base( m_aMutex ),
+: SlideShowView_Base( m_aMutex ),
mpCanvas( ::cppcanvas::VCLFactory::getInstance().createSpriteCanvas( rOutputWindow ) ),
mxWindow( VCLUnoHelper::GetInterface( &rOutputWindow ), uno::UNO_QUERY_THROW ),
mxWindowPeer( mxWindow, uno::UNO_QUERY_THROW ),
@@ -331,7 +331,7 @@ void SAL_CALL SlideShowView::clear() throw (::com::sun::star::uno::RuntimeExcept
::basegfx::B2DRectangle(0.0,0.0,
aWindowSize.Width(),
aWindowSize.Height() ) ) );
- ::cppcanvas::PolyPolygonSharedPtr pPolyPoly(
+ ::cppcanvas::PolyPolygonSharedPtr pPolyPoly(
::cppcanvas::BaseGfxFactory::getInstance().createPolyPolygon( mpCanvas, aPoly ) );
if( pPolyPoly.get() )
@@ -352,11 +352,11 @@ geometry::AffineMatrix2D SAL_CALL SlideShowView::getTransformation( ) throw (Ru
{
return geometry::AffineMatrix2D (1,0,0,0,1,0);
}
-
+
// Reduce available width by one, as the slides might actually
// render one pixel wider and higher as aPageSize below specifies
// (when shapes of page size have visible border lines)
- const Size aWindowSize( rTmpSize.Width()-1,
+ const Size aWindowSize( rTmpSize.Width()-1,
rTmpSize.Height()-1 );
Size aOutputSize( aWindowSize );
@@ -683,7 +683,7 @@ void SlideShowView::init()
{
Reference< beans::XPropertySet > xCanvasProps( getCanvas(),
uno::UNO_QUERY_THROW );
- xCanvasProps->setPropertyValue(
+ xCanvasProps->setPropertyValue(
::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("UnsafeScrolling")),
uno::makeAny( true ) );
}