summaryrefslogtreecommitdiff
path: root/sdext/source/presenter/PresenterPaneBorderManager.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/presenter/PresenterPaneBorderManager.cxx')
-rw-r--r--sdext/source/presenter/PresenterPaneBorderManager.cxx57
1 files changed, 0 insertions, 57 deletions
diff --git a/sdext/source/presenter/PresenterPaneBorderManager.cxx b/sdext/source/presenter/PresenterPaneBorderManager.cxx
index 7177cec6e716..02cf34660cee 100644
--- a/sdext/source/presenter/PresenterPaneBorderManager.cxx
+++ b/sdext/source/presenter/PresenterPaneBorderManager.cxx
@@ -26,7 +26,6 @@
*
************************************************************************/
-
// The body of this file is only used when PresenterWindowManager defines
// the preprocessor symbol ENABLE_PANE_RESIZING, which by default is not the
// case.
@@ -55,15 +54,11 @@ namespace sdext { namespace presenter {
//===== Service ===============================================================
-
OUString PresenterPaneBorderManager::getImplementationName_static (void)
{
return OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.comp.Draw.PresenterPaneBorderManager"));
}
-
-
-
Sequence<OUString> PresenterPaneBorderManager::getSupportedServiceNames_static (void)
{
static const ::rtl::OUString sServiceName(
@@ -71,9 +66,6 @@ Sequence<OUString> PresenterPaneBorderManager::getSupportedServiceNames_static (
return Sequence<rtl::OUString>(&sServiceName, 1);
}
-
-
-
Reference<XInterface> PresenterPaneBorderManager::Create (const Reference<uno::XComponentContext>& rxContext)
SAL_THROW((css::uno::Exception))
{
@@ -81,9 +73,6 @@ Reference<XInterface> PresenterPaneBorderManager::Create (const Reference<uno::X
new PresenterPaneBorderManager(rxContext, NULL)));
}
-
-
-
//===== PresenterPaneBorderManager ============================================
PresenterPaneBorderManager::PresenterPaneBorderManager (
@@ -118,16 +107,10 @@ PresenterPaneBorderManager::PresenterPaneBorderManager (
}
}
-
-
-
PresenterPaneBorderManager::~PresenterPaneBorderManager (void)
{
}
-
-
-
void PresenterPaneBorderManager::disposing (void)
{
WindowList::const_iterator iDescriptor;
@@ -139,9 +122,6 @@ void PresenterPaneBorderManager::disposing (void)
maWindowList.clear();
}
-
-
-
namespace {
const static sal_Int32 mnOutside = 0;
const static sal_Int32 mnLeft = 0x01;
@@ -242,9 +222,6 @@ PresenterPaneBorderManager::BorderElement
}
}
-
-
-
//----- XInitialization -------------------------------------------------------
void SAL_CALL PresenterPaneBorderManager::initialize (const Sequence<Any>& rArguments)
@@ -285,9 +262,6 @@ void SAL_CALL PresenterPaneBorderManager::initialize (const Sequence<Any>& rArgu
}
}
-
-
-
//----- XMouseListener --------------------------------------------------------
void SAL_CALL PresenterPaneBorderManager::mousePressed (const css::awt::MouseEvent& rEvent)
@@ -318,9 +292,6 @@ void SAL_CALL PresenterPaneBorderManager::mousePressed (const css::awt::MouseEve
}
}
-
-
-
void SAL_CALL PresenterPaneBorderManager::mouseReleased (const css::awt::MouseEvent& rEvent)
throw (css::uno::RuntimeException)
{
@@ -334,18 +305,12 @@ void SAL_CALL PresenterPaneBorderManager::mouseReleased (const css::awt::MouseEv
mxInnerDragWindow = NULL;
}
-
-
-
void SAL_CALL PresenterPaneBorderManager::mouseEntered (const css::awt::MouseEvent& rEvent)
throw (css::uno::RuntimeException)
{
(void)rEvent;
}
-
-
-
void SAL_CALL PresenterPaneBorderManager::mouseExited (const css::awt::MouseEvent& rEvent)
throw (css::uno::RuntimeException)
{
@@ -359,9 +324,6 @@ void SAL_CALL PresenterPaneBorderManager::mouseExited (const css::awt::MouseEven
mxInnerDragWindow = NULL;
}
-
-
-
//----- XMouseMotionListener --------------------------------------------------
void SAL_CALL PresenterPaneBorderManager::mouseMoved (const css::awt::MouseEvent& rEvent)
@@ -425,9 +387,6 @@ void SAL_CALL PresenterPaneBorderManager::mouseMoved (const css::awt::MouseEvent
}
}
-
-
-
void SAL_CALL PresenterPaneBorderManager::mouseDragged (const css::awt::MouseEvent& rEvent)
throw (css::uno::RuntimeException)
{
@@ -520,9 +479,6 @@ void SAL_CALL PresenterPaneBorderManager::mouseDragged (const css::awt::MouseEve
}
}
-
-
-
//----- lang::XEventListener --------------------------------------------------
void SAL_CALL PresenterPaneBorderManager::disposing (const lang::EventObject& rEvent)
@@ -537,30 +493,20 @@ void SAL_CALL PresenterPaneBorderManager::disposing (const lang::EventObject& rE
}
}
-
-
-
//-----------------------------------------------------------------------------
-
void PresenterPaneBorderManager::CaptureMouse (const Reference<awt::XWindow>& rxWindow)
{
if (mxPresenterHelper.is())
mxPresenterHelper->captureMouse(rxWindow);
}
-
-
-
void PresenterPaneBorderManager::ReleaseMouse (const Reference<awt::XWindow>& rxWindow)
{
if (mxPresenterHelper.is())
mxPresenterHelper->releaseMouse(rxWindow);
}
-
-
-
void PresenterPaneBorderManager::ThrowIfDisposed (void)
throw (::com::sun::star::lang::DisposedException)
{
@@ -573,9 +519,6 @@ void PresenterPaneBorderManager::ThrowIfDisposed (void)
}
}
-
-
-
} } // end of namespace ::sd::presenter
#endif // ENABLE_PANE_RESIZING