diff options
Diffstat (limited to 'sdext/source/presenter/PresenterSlideShowView.cxx')
-rw-r--r-- | sdext/source/presenter/PresenterSlideShowView.cxx | 132 |
1 files changed, 0 insertions, 132 deletions
diff --git a/sdext/source/presenter/PresenterSlideShowView.cxx b/sdext/source/presenter/PresenterSlideShowView.cxx index 689a11984601..7c7b8e6c2a6b 100644 --- a/sdext/source/presenter/PresenterSlideShowView.cxx +++ b/sdext/source/presenter/PresenterSlideShowView.cxx @@ -26,7 +26,6 @@ * ************************************************************************/ - #include "PresenterSlideShowView.hxx" #include "PresenterCanvasHelper.hxx" @@ -101,8 +100,6 @@ PresenterSlideShowView::PresenterSlideShowView ( } } - - void PresenterSlideShowView::LateInit (void) { mxSlideShow = Reference<presentation::XSlideShow> ( @@ -197,16 +194,10 @@ void PresenterSlideShowView::LateInit (void) >>= msClickToExitPresentationTitle; } - - - PresenterSlideShowView::~PresenterSlideShowView (void) { } - - - void PresenterSlideShowView::disposing (void) { // Tell all listeners that we are disposed. @@ -279,9 +270,6 @@ void PresenterSlideShowView::disposing (void) mxCurrentSlide = NULL; } - - - //----- XDrawView ------------------------------------------------------------- void SAL_CALL PresenterSlideShowView::setCurrentPage ( @@ -327,18 +315,12 @@ void SAL_CALL PresenterSlideShowView::setCurrentPage ( } } - - - css::uno::Reference<css::drawing::XDrawPage> SAL_CALL PresenterSlideShowView::getCurrentPage (void) throw (css::uno::RuntimeException) { return mxCurrentSlide; } - - - //----- CachablePresenterView ------------------------------------------------- void PresenterSlideShowView::ReleaseView (void) @@ -350,9 +332,6 @@ void PresenterSlideShowView::ReleaseView (void) } } - - - //----- XSlideShowView -------------------------------------------------------- Reference<rendering::XSpriteCanvas> SAL_CALL PresenterSlideShowView::getCanvas (void) @@ -363,9 +342,6 @@ Reference<rendering::XSpriteCanvas> SAL_CALL PresenterSlideShowView::getCanvas ( return Reference<rendering::XSpriteCanvas>(mxViewCanvas, UNO_QUERY); } - - - void SAL_CALL PresenterSlideShowView::clear (void) throw (RuntimeException) { @@ -394,9 +370,6 @@ void SAL_CALL PresenterSlideShowView::clear (void) } } - - - geometry::AffineMatrix2D SAL_CALL PresenterSlideShowView::getTransformation (void) throw (RuntimeException) { @@ -424,9 +397,6 @@ geometry::AffineMatrix2D SAL_CALL PresenterSlideShowView::getTransformation (voi } } - - - void SAL_CALL PresenterSlideShowView::addTransformationChangedListener( const Reference<util::XModifyListener>& rxListener) throw (RuntimeException) @@ -437,9 +407,6 @@ void SAL_CALL PresenterSlideShowView::addTransformationChangedListener( rxListener); } - - - void SAL_CALL PresenterSlideShowView::removeTransformationChangedListener( const Reference<util::XModifyListener>& rxListener) throw (RuntimeException) @@ -450,9 +417,6 @@ void SAL_CALL PresenterSlideShowView::removeTransformationChangedListener( rxListener); } - - - void SAL_CALL PresenterSlideShowView::addPaintListener( const Reference<awt::XPaintListener>& rxListener) throw (RuntimeException) @@ -463,9 +427,6 @@ void SAL_CALL PresenterSlideShowView::addPaintListener( rxListener); } - - - void SAL_CALL PresenterSlideShowView::removePaintListener( const Reference<awt::XPaintListener>& rxListener) throw (RuntimeException) @@ -476,9 +437,6 @@ void SAL_CALL PresenterSlideShowView::removePaintListener( rxListener); } - - - void SAL_CALL PresenterSlideShowView::addMouseListener( const Reference<awt::XMouseListener>& rxListener) throw (RuntimeException) @@ -489,9 +447,6 @@ void SAL_CALL PresenterSlideShowView::addMouseListener( rxListener); } - - - void SAL_CALL PresenterSlideShowView::removeMouseListener( const Reference<awt::XMouseListener>& rxListener) throw (RuntimeException) @@ -502,9 +457,6 @@ void SAL_CALL PresenterSlideShowView::removeMouseListener( rxListener); } - - - void SAL_CALL PresenterSlideShowView::addMouseMotionListener( const Reference<awt::XMouseMotionListener>& rxListener) throw (RuntimeException) @@ -515,9 +467,6 @@ void SAL_CALL PresenterSlideShowView::addMouseMotionListener( rxListener); } - - - void SAL_CALL PresenterSlideShowView::removeMouseMotionListener( const Reference<awt::XMouseMotionListener>& rxListener) throw (RuntimeException) @@ -528,9 +477,6 @@ void SAL_CALL PresenterSlideShowView::removeMouseMotionListener( rxListener); } - - - void SAL_CALL PresenterSlideShowView::setMouseCursor(::sal_Int16 nPointerShape) throw (RuntimeException) { @@ -557,8 +503,6 @@ void SAL_CALL PresenterSlideShowView::setMouseCursor(::sal_Int16 nPointerShape) } } - - awt::Rectangle SAL_CALL PresenterSlideShowView::getCanvasArea( ) throw (RuntimeException) { if( mxViewWindow.is() && mxTopPane.is() ) @@ -571,8 +515,6 @@ awt::Rectangle SAL_CALL PresenterSlideShowView::getCanvasArea( ) throw (Runtime return aRectangle; } - - //----- lang::XEventListener -------------------------------------------------- void SAL_CALL PresenterSlideShowView::disposing (const lang::EventObject& rEvent) @@ -584,9 +526,6 @@ void SAL_CALL PresenterSlideShowView::disposing (const lang::EventObject& rEvent mxSlideShow = NULL; } - - - //----- XPaintListener -------------------------------------------------------- void SAL_CALL PresenterSlideShowView::windowPaint (const awt::PaintEvent& rEvent) @@ -608,9 +547,6 @@ void SAL_CALL PresenterSlideShowView::windowPaint (const awt::PaintEvent& rEvent PaintInnerWindow(rEvent); } - - - //----- XMouseListener -------------------------------------------------------- void SAL_CALL PresenterSlideShowView::mousePressed (const awt::MouseEvent& rEvent) @@ -633,9 +569,6 @@ void SAL_CALL PresenterSlideShowView::mousePressed (const awt::MouseEvent& rEven mpPresenterController->HandleMouseClick(rEvent); } - - - void SAL_CALL PresenterSlideShowView::mouseReleased (const awt::MouseEvent& rEvent) throw (RuntimeException) { @@ -649,9 +582,6 @@ void SAL_CALL PresenterSlideShowView::mouseReleased (const awt::MouseEvent& rEve } } - - - void SAL_CALL PresenterSlideShowView::mouseEntered (const awt::MouseEvent& rEvent) throw (RuntimeException) { @@ -665,9 +595,6 @@ void SAL_CALL PresenterSlideShowView::mouseEntered (const awt::MouseEvent& rEven } } - - - void SAL_CALL PresenterSlideShowView::mouseExited (const awt::MouseEvent& rEvent) throw (RuntimeException) { @@ -681,9 +608,6 @@ void SAL_CALL PresenterSlideShowView::mouseExited (const awt::MouseEvent& rEvent } } - - - //----- XMouseMotionListener -------------------------------------------------- void SAL_CALL PresenterSlideShowView::mouseDragged (const awt::MouseEvent& rEvent) @@ -699,9 +623,6 @@ void SAL_CALL PresenterSlideShowView::mouseDragged (const awt::MouseEvent& rEven } } - - - void SAL_CALL PresenterSlideShowView::mouseMoved (const awt::MouseEvent& rEvent) throw (RuntimeException) { @@ -715,9 +636,6 @@ void SAL_CALL PresenterSlideShowView::mouseMoved (const awt::MouseEvent& rEvent) } } - - - //----- XWindowListener ------------------------------------------------------- void SAL_CALL PresenterSlideShowView::windowResized (const awt::WindowEvent& rEvent) @@ -731,10 +649,6 @@ void SAL_CALL PresenterSlideShowView::windowResized (const awt::WindowEvent& rEv Resize(); } - - - - void SAL_CALL PresenterSlideShowView::windowMoved (const awt::WindowEvent& rEvent) throw (RuntimeException) { @@ -743,9 +657,6 @@ void SAL_CALL PresenterSlideShowView::windowMoved (const awt::WindowEvent& rEven mbIsForcedPaintPending = true; } - - - void SAL_CALL PresenterSlideShowView::windowShown (const lang::EventObject& rEvent) throw (RuntimeException) { @@ -753,18 +664,12 @@ void SAL_CALL PresenterSlideShowView::windowShown (const lang::EventObject& rEve Resize(); } - - - void SAL_CALL PresenterSlideShowView::windowHidden (const lang::EventObject& rEvent) throw (RuntimeException) { (void)rEvent; } - - - //----- XView ----------------------------------------------------------------- Reference<XResourceId> SAL_CALL PresenterSlideShowView::getResourceId (void) @@ -773,18 +678,12 @@ Reference<XResourceId> SAL_CALL PresenterSlideShowView::getResourceId (void) return mxViewId; } - - - sal_Bool SAL_CALL PresenterSlideShowView::isAnchorOnly (void) throw (RuntimeException) { return false; } - - - //----- CachablePresenterView ------------------------------------------------- void PresenterSlideShowView::ActivatePresenterView (void) @@ -796,9 +695,6 @@ void PresenterSlideShowView::ActivatePresenterView (void) } } - - - void PresenterSlideShowView::DeactivatePresenterView (void) { if (mxSlideShow.is() && mbIsViewAdded) @@ -808,9 +704,6 @@ void PresenterSlideShowView::DeactivatePresenterView (void) } } - - - //----------------------------------------------------------------------------- void PresenterSlideShowView::PaintOuterWindow (const awt::Rectangle& rRepaintBox) @@ -873,9 +766,6 @@ void PresenterSlideShowView::PaintOuterWindow (const awt::Rectangle& rRepaintBox } } - - - void PresenterSlideShowView::PaintEndSlide (const awt::Rectangle& rRepaintBox) { if ( ! mxCanvas.is()) @@ -931,9 +821,6 @@ void PresenterSlideShowView::PaintEndSlide (const awt::Rectangle& rRepaintBox) mxSpriteCanvas->updateScreen(sal_True); } - - - void PresenterSlideShowView::PaintInnerWindow (const awt::PaintEvent& rEvent) { // Forward window paint to listeners. @@ -956,9 +843,6 @@ void PresenterSlideShowView::PaintInnerWindow (const awt::PaintEvent& rEvent) mxSpriteCanvas->updateScreen(sal_True); } - - - Reference<awt::XWindow> PresenterSlideShowView::CreateViewWindow ( const Reference<awt::XWindow>& rxParentWindow) const { @@ -1001,9 +885,6 @@ Reference<awt::XWindow> PresenterSlideShowView::CreateViewWindow ( return xViewWindow; } - - - Reference<rendering::XCanvas> PresenterSlideShowView::CreateViewCanvas ( const Reference<awt::XWindow>& rxViewWindow) const { @@ -1016,9 +897,6 @@ Reference<rendering::XCanvas> PresenterSlideShowView::CreateViewCanvas ( rxViewWindow); } - - - void PresenterSlideShowView::Resize (void) { if ( ! mxWindow.is() || ! mxViewWindow.is()) @@ -1075,9 +953,6 @@ void PresenterSlideShowView::Resize (void) mbIsForcedPaintPending = true; } - - - void PresenterSlideShowView::ForceRepaint (void) { if (mxSlideShow.is() && mbIsViewAdded) @@ -1087,9 +962,6 @@ void PresenterSlideShowView::ForceRepaint (void) } } - - - void PresenterSlideShowView::CreateBackgroundPolygons (void) { const awt::Rectangle aWindowBox (mxWindow->getPosSize()); @@ -1137,9 +1009,6 @@ void PresenterSlideShowView::CreateBackgroundPolygons (void) } } - - - void PresenterSlideShowView::ThrowIfDisposed (void) throw (::com::sun::star::lang::DisposedException) { @@ -1151,7 +1020,6 @@ void PresenterSlideShowView::ThrowIfDisposed (void) } } - } } // end of namespace ::sd::presenter /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |