summaryrefslogtreecommitdiff
path: root/sdext/source/presenter/PresenterPaneBase.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/presenter/PresenterPaneBase.cxx')
-rw-r--r--sdext/source/presenter/PresenterPaneBase.cxx78
1 files changed, 0 insertions, 78 deletions
diff --git a/sdext/source/presenter/PresenterPaneBase.cxx b/sdext/source/presenter/PresenterPaneBase.cxx
index fa88907ab388..a912230930d7 100644
--- a/sdext/source/presenter/PresenterPaneBase.cxx
+++ b/sdext/source/presenter/PresenterPaneBase.cxx
@@ -26,7 +26,6 @@
*
************************************************************************/
-
#include "PresenterPaneBase.hxx"
#include "PresenterCanvasHelper.hxx"
#include "PresenterController.hxx"
@@ -74,16 +73,10 @@ PresenterPaneBase::PresenterPaneBase (
mxPresenterHelper = mpPresenterController->GetPresenterHelper();
}
-
-
-
PresenterPaneBase::~PresenterPaneBase (void)
{
}
-
-
-
void PresenterPaneBase::disposing (void)
{
if (mxBorderWindow.is())
@@ -123,9 +116,6 @@ void PresenterPaneBase::disposing (void)
mxComponentContext = NULL;
}
-
-
-
void PresenterPaneBase::SetTitle (const OUString& rsTitle)
{
msTitle = rsTitle;
@@ -136,26 +126,17 @@ void PresenterPaneBase::SetTitle (const OUString& rsTitle)
mpPresenterController->GetPaintManager()->Invalidate(mxBorderWindow);
}
-
-
-
::rtl::OUString PresenterPaneBase::GetTitle (void) const
{
return msTitle;
}
-
-
-
Reference<drawing::framework::XPaneBorderPainter>
PresenterPaneBase::GetPaneBorderPainter (void) const
{
return mxBorderPainter;
}
-
-
-
void PresenterPaneBase::SetCalloutAnchor (const css::awt::Point& rCalloutAnchor)
{
mbHasCallout = true;
@@ -185,17 +166,11 @@ void PresenterPaneBase::SetCalloutAnchor (const css::awt::Point& rCalloutAnchor)
mpPresenterController->GetPaintManager()->Invalidate(mxBorderWindow);
}
-
-
-
awt::Point PresenterPaneBase::GetCalloutAnchor (void) const
{
return maCalloutAnchor;
}
-
-
-
//----- XInitialization -------------------------------------------------------
void SAL_CALL PresenterPaneBase::initialize (const Sequence<Any>& rArguments)
@@ -293,9 +268,6 @@ void SAL_CALL PresenterPaneBase::initialize (const Sequence<Any>& rArguments)
}
}
-
-
-
//----- XResourceId -----------------------------------------------------------
Reference<XResourceId> SAL_CALL PresenterPaneBase::getResourceId (void)
@@ -305,18 +277,12 @@ Reference<XResourceId> SAL_CALL PresenterPaneBase::getResourceId (void)
return mxPaneId;
}
-
-
-
sal_Bool SAL_CALL PresenterPaneBase::isAnchorOnly (void)
throw (RuntimeException)
{
return true;
}
-
-
-
//----- XWindowListener -------------------------------------------------------
void SAL_CALL PresenterPaneBase::windowResized (const awt::WindowEvent& rEvent)
@@ -326,10 +292,6 @@ void SAL_CALL PresenterPaneBase::windowResized (const awt::WindowEvent& rEvent)
ThrowIfDisposed();
}
-
-
-
-
void SAL_CALL PresenterPaneBase::windowMoved (const awt::WindowEvent& rEvent)
throw (RuntimeException)
{
@@ -337,9 +299,6 @@ void SAL_CALL PresenterPaneBase::windowMoved (const awt::WindowEvent& rEvent)
ThrowIfDisposed();
}
-
-
-
void SAL_CALL PresenterPaneBase::windowShown (const lang::EventObject& rEvent)
throw (RuntimeException)
{
@@ -347,9 +306,6 @@ void SAL_CALL PresenterPaneBase::windowShown (const lang::EventObject& rEvent)
ThrowIfDisposed();
}
-
-
-
void SAL_CALL PresenterPaneBase::windowHidden (const lang::EventObject& rEvent)
throw (RuntimeException)
{
@@ -357,9 +313,6 @@ void SAL_CALL PresenterPaneBase::windowHidden (const lang::EventObject& rEvent)
ThrowIfDisposed();
}
-
-
-
//----- lang::XEventListener --------------------------------------------------
void SAL_CALL PresenterPaneBase::disposing (const lang::EventObject& rEvent)
@@ -371,12 +324,8 @@ void SAL_CALL PresenterPaneBase::disposing (const lang::EventObject& rEvent)
}
}
-
-
-
//-----------------------------------------------------------------------------
-
void PresenterPaneBase::CreateWindows (
const Reference<awt::XWindow>& rxParentWindow,
const bool bIsWindowVisibleOnCreation)
@@ -399,34 +348,22 @@ void PresenterPaneBase::CreateWindows (
}
}
-
-
-
Reference<awt::XWindow> PresenterPaneBase::GetBorderWindow (void) const
{
return mxBorderWindow;
}
-
-
-
void PresenterPaneBase::ToTop (void)
{
if (mxPresenterHelper.is())
mxPresenterHelper->toTop(mxContentWindow);
}
-
-
-
void PresenterPaneBase::SetBackground (const SharedBitmapDescriptor& rpBackground)
{
mpViewBackground = rpBackground;
}
-
-
-
void PresenterPaneBase::PaintBorderBackground (
const awt::Rectangle& rBorderBox,
const awt::Rectangle& rUpdateBox)
@@ -455,9 +392,6 @@ void PresenterPaneBase::PaintBorderBackground (
*/
}
-
-
-
void PresenterPaneBase::PaintBorder (const awt::Rectangle& rUpdateBox)
{
OSL_ASSERT(mxPaneId.is());
@@ -487,9 +421,6 @@ void PresenterPaneBase::PaintBorder (const awt::Rectangle& rUpdateBox)
}
}
-
-
-
void PresenterPaneBase::LayoutContextWindow (void)
{
OSL_ASSERT(mxPaneId.is());
@@ -511,9 +442,6 @@ void PresenterPaneBase::LayoutContextWindow (void)
}
}
-
-
-
bool PresenterPaneBase::IsVisible (void) const
{
Reference<awt::XWindow2> xWindow2 (mxBorderPainter, UNO_QUERY);
@@ -523,9 +451,6 @@ bool PresenterPaneBase::IsVisible (void) const
return false;
}
-
-
-
void PresenterPaneBase::ThrowIfDisposed (void)
throw (::com::sun::star::lang::DisposedException)
{
@@ -538,9 +463,6 @@ void PresenterPaneBase::ThrowIfDisposed (void)
}
}
-
-
-
} } // end of namespace ::sd::presenter
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */