summaryrefslogtreecommitdiff
path: root/sdext/source/presenter/PresenterSlideShowView.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/presenter/PresenterSlideShowView.hxx')
-rw-r--r--sdext/source/presenter/PresenterSlideShowView.hxx60
1 files changed, 30 insertions, 30 deletions
diff --git a/sdext/source/presenter/PresenterSlideShowView.hxx b/sdext/source/presenter/PresenterSlideShowView.hxx
index bb91fb5e136c..494c76cf5c4c 100644
--- a/sdext/source/presenter/PresenterSlideShowView.hxx
+++ b/sdext/source/presenter/PresenterSlideShowView.hxx
@@ -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
@@ -55,7 +55,7 @@ namespace css = ::com::sun::star;
namespace sdext { namespace presenter {
namespace {
- typedef cppu::WeakComponentImplHelper7<
+ typedef cppu::WeakComponentImplHelper7<
css::presentation::XSlideShowView,
css::awt::XPaintListener,
css::awt::XMouseListener,
@@ -89,101 +89,101 @@ public:
// CachablePresenterView
virtual void ReleaseView (void);
-
-
+
+
// XSlideShowView
-
+
virtual css::uno::Reference<
css::rendering::XSpriteCanvas > SAL_CALL getCanvas (void)
throw (css::uno::RuntimeException);
-
+
virtual void SAL_CALL clear (void)
throw (css::uno::RuntimeException);
-
+
virtual css::geometry::AffineMatrix2D SAL_CALL getTransformation (void)
throw (css::uno::RuntimeException);
-
+
virtual void SAL_CALL addTransformationChangedListener(
const css::uno::Reference<
css::util::XModifyListener >& xListener)
throw (css::uno::RuntimeException);
-
+
virtual void SAL_CALL removeTransformationChangedListener(
const css::uno::Reference<
css::util::XModifyListener >& xListener)
throw (css::uno::RuntimeException);
-
+
virtual void SAL_CALL addPaintListener(
const css::uno::Reference<
css::awt::XPaintListener >& xListener)
throw (css::uno::RuntimeException);
-
+
virtual void SAL_CALL removePaintListener(
const css::uno::Reference<
css::awt::XPaintListener >& xListener)
throw (css::uno::RuntimeException);
-
+
virtual void SAL_CALL addMouseListener(
const css::uno::Reference<
css::awt::XMouseListener >& xListener)
throw (css::uno::RuntimeException);
-
+
virtual void SAL_CALL removeMouseListener(
const css::uno::Reference<
css::awt::XMouseListener >& xListener)
throw (css::uno::RuntimeException);
-
+
virtual void SAL_CALL addMouseMotionListener(
const css::uno::Reference<
css::awt::XMouseMotionListener >& xListener)
throw (css::uno::RuntimeException);
-
+
virtual void SAL_CALL removeMouseMotionListener(
const css::uno::Reference<
css::awt::XMouseMotionListener >& xListener)
throw (css::uno::RuntimeException);
-
+
virtual void SAL_CALL setMouseCursor(::sal_Int16 nPointerShape)
throw (css::uno::RuntimeException);
virtual ::com::sun::star::awt::Rectangle SAL_CALL getCanvasArea( )
throw (::com::sun::star::uno::RuntimeException);
-
+
// lang::XEventListener
virtual void SAL_CALL disposing (const css::lang::EventObject& rEvent)
throw (css::uno::RuntimeException);
-
+
// XPaintListener
virtual void SAL_CALL windowPaint (const css::awt::PaintEvent& rEvent)
throw (css::uno::RuntimeException);
-
+
// XMouseListener
virtual void SAL_CALL mousePressed (const css::awt::MouseEvent& rEvent)
throw (css::uno::RuntimeException);
virtual void SAL_CALL mouseReleased (const css::awt::MouseEvent& rEvent)
throw (css::uno::RuntimeException);
-
+
virtual void SAL_CALL mouseEntered (const css::awt::MouseEvent& rEvent)
throw (css::uno::RuntimeException);
-
+
virtual void SAL_CALL mouseExited (const css::awt::MouseEvent& rEvent)
throw (css::uno::RuntimeException);
-
+
// XMouseMotionListener
-
+
virtual void SAL_CALL mouseDragged (const css::awt::MouseEvent& rEvent)
throw (css::uno::RuntimeException);
virtual void SAL_CALL mouseMoved (const css::awt::MouseEvent& rEvent)
throw (css::uno::RuntimeException);
-
+
// XWindowListener
-
+
virtual void SAL_CALL windowResized (const css::awt::WindowEvent& rEvent)
throw (css::uno::RuntimeException);
@@ -198,7 +198,7 @@ public:
// XView
-
+
virtual css::uno::Reference<css::drawing::framework::XResourceId> SAL_CALL
getResourceId (void)
throw(css::uno::RuntimeException);
@@ -216,11 +216,11 @@ public:
virtual css::uno::Reference<css::drawing::XDrawPage> SAL_CALL getCurrentPage (void)
throw (css::uno::RuntimeException);
-
+
// CachablePresenterView
-
+
virtual void ActivatePresenterView (void);
-
+
virtual void DeactivatePresenterView (void);
private:
@@ -275,7 +275,7 @@ private:
void PaintOuterWindow (const css::awt::Rectangle& rRepaintBox);
void PaintInnerWindow (const css::awt::PaintEvent& rEvent);
void PaintEndSlide (const css::awt::Rectangle& rRepaintBox);
-
+
/** The slide show relies on the back buffer of the canvas not being
modified. With a shared canvas there are times when that can not be
guaranteed.