summaryrefslogtreecommitdiff
path: root/sdext/source/presenter/PresenterWindowManager.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/presenter/PresenterWindowManager.cxx')
-rw-r--r--sdext/source/presenter/PresenterWindowManager.cxx58
1 files changed, 29 insertions, 29 deletions
diff --git a/sdext/source/presenter/PresenterWindowManager.cxx b/sdext/source/presenter/PresenterWindowManager.cxx
index 821e927dcb5b..72cb68c0628c 100644
--- a/sdext/source/presenter/PresenterWindowManager.cxx
+++ b/sdext/source/presenter/PresenterWindowManager.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
@@ -95,9 +95,9 @@ namespace {
const ::boost::shared_ptr<PresenterAnimator>& rpAnimator);
virtual ~ModeChangeAnimationStarter (void);
virtual void SAL_CALL disposing (void);
-
+
// XConfigurationChangeListener
-
+
virtual void SAL_CALL notifyConfigurationChange (
const com::sun::star::drawing::framework::ConfigurationChangeEvent& rEvent)
throw (com::sun::star::uno::RuntimeException);
@@ -202,7 +202,7 @@ void PresenterWindowManager::SetParentPane (
}
mxParentWindow = NULL;
mxParentCanvas = NULL;
-
+
if (rxPane.is())
{
mxParentWindow = rxPane->getWindow();
@@ -225,7 +225,7 @@ void PresenterWindowManager::SetParentPane (
if (xPeer.is())
xPeer->setBackground(util::Color(0xff000000));
}
-}
+}
@@ -235,7 +235,7 @@ void PresenterWindowManager::SetTheme (const ::boost::shared_ptr<PresenterTheme>
mpTheme = rpTheme;
// Get background bitmap or background color from the theme.
-
+
if (mpTheme.get() != NULL)
{
mpBackgroundBitmap = mpTheme->GetBitmap(OUString(), A2S("Background"));
@@ -266,7 +266,7 @@ void PresenterWindowManager::NotifyPaneCreation (
if (xBorderWindow.is() && ! rpDescriptor->mbIsSprite)
{
Invalidate();
-
+
xBorderWindow->addWindowListener(this);
xBorderWindow->addFocusListener(this);
#ifndef ENABLE_PANE_RESIZING
@@ -289,7 +289,7 @@ void PresenterWindowManager::NotifyViewCreation (const Reference<XView>& rxView)
if (pDescriptor.get() != NULL)
{
Layout();
-
+
mpPresenterController->GetPaintManager()->Invalidate(
pDescriptor->mxContentWindow,
(sal_Int16)(awt::InvalidateStyle::TRANSPARENT
@@ -365,7 +365,7 @@ void PresenterWindowManager::SetPaneBorderPainter (
//----- XWindowListener -------------------------------------------------------
-
+
void SAL_CALL PresenterWindowManager::windowResized (const awt::WindowEvent& rEvent)
throw (RuntimeException)
{
@@ -426,7 +426,7 @@ void SAL_CALL PresenterWindowManager::windowHidden (const lang::EventObject& rEv
//----- XPaintListener --------------------------------------------------------
-
+
void SAL_CALL PresenterWindowManager::windowPaint (const awt::PaintEvent& rEvent)
throw (RuntimeException)
{
@@ -555,7 +555,7 @@ void SAL_CALL PresenterWindowManager::disposing (const lang::EventObject& rEvent
bool PresenterWindowManager::PaintChildren (const awt::PaintEvent& rEvent) const
{
bool bChildInvalidated (false);
-
+
// Call windowPaint on all children that lie in or touch the
// update rectangle.
PresenterPaneContainer::PaneList::const_iterator iPane;
@@ -614,7 +614,7 @@ bool PresenterWindowManager::PaintChildren (const awt::PaintEvent& rEvent) const
void PresenterWindowManager::SetLayoutMode (const LayoutMode eMode)
{
OSL_ASSERT(mpPresenterController.get() != NULL);
-
+
if (meLayoutMode != eMode
|| mbIsSlideSorterActive
|| mbIsHelpViewActive)
@@ -763,15 +763,15 @@ void PresenterWindowManager::RestoreViewMode (void)
case 0:
SetViewMode(VM_Standard);
break;
-
+
case 1:
SetViewMode(VM_Notes);
break;
-
+
case 2:
SetViewMode(VM_SlideOverview);
break;
- }
+ }
}
@@ -864,7 +864,7 @@ void PresenterWindowManager::Layout (void)
default:
LayoutStandardMode();
break;
-
+
case LM_Notes:
LayoutNotesMode();
break;
@@ -910,7 +910,7 @@ void PresenterWindowManager::LayoutStandardMode (void)
aCurrentSlideOuterBox.Width,
aCurrentSlideOuterBox.Height);
}
-
+
// For the next slide view calculate the outer height from the outer
// width. This takes into acount the slide aspect ratio and thus has to
@@ -940,7 +940,7 @@ void PresenterWindowManager::LayoutNotesMode (void)
awt::Rectangle aBox = mxParentWindow->getPosSize();
const geometry::RealRectangle2D aToolBarBox (LayoutToolBar());
-
+
const double nGoldenRatio ((1 + sqrt(5.0)) / 2);
const double nGap (20);
const double nPrimaryWidth (aBox.Width / nGoldenRatio);
@@ -948,7 +948,7 @@ void PresenterWindowManager::LayoutNotesMode (void)
const double nTertiaryWidth (nSecondaryWidth / nGoldenRatio);
double nSlidePreviewTop (0);
double nNotesViewBottom (aToolBarBox.Y1 - nGap);
-
+
// The notes view has no fixed aspect ratio.
PresenterPaneContainer::SharedPaneDescriptor pPane (
mpPaneContainer->FindPaneURL(PresenterPaneFactory::msNotesPaneURL));
@@ -967,7 +967,7 @@ void PresenterWindowManager::LayoutNotesMode (void)
aNotesViewOuterSize.Height);
nNotesViewBottom = nSlidePreviewTop + aNotesViewOuterSize.Height;
}
-
+
// For the current slide view calculate the outer height from the outer
// width. This takes into acount the slide aspect ratio and thus has to
// go over the inner pane size.
@@ -984,7 +984,7 @@ void PresenterWindowManager::LayoutNotesMode (void)
aCurrentSlideOuterBox.Width,
aCurrentSlideOuterBox.Height);
}
-
+
// For the next slide view calculate the outer height from the outer
// width. This takes into acount the slide aspect ratio and thus has to
@@ -1153,7 +1153,7 @@ void PresenterWindowManager::NotifyLayoutModeChange (void)
{
}
}
- }
+ }
}
@@ -1183,7 +1183,7 @@ void PresenterWindowManager::NotifyDisposing (void)
{
}
}
- }
+ }
}
@@ -1192,7 +1192,7 @@ void PresenterWindowManager::NotifyDisposing (void)
void PresenterWindowManager::LayoutUnknownMode (void)
{
awt::Rectangle aBox = mxParentWindow->getPosSize();
-
+
PresenterPaneContainer::PaneList::const_iterator iPane;
PresenterPaneContainer::PaneList::const_iterator iEnd (mpPaneContainer->maPanes.end());
for (iPane=mpPaneContainer->maPanes.begin(); iPane!=iEnd; ++iPane)
@@ -1261,7 +1261,7 @@ void PresenterWindowManager::PaintBackground (const awt::Rectangle& rUpdateBox)
Reference<rendering::XGraphicDevice> xDevice (mxParentCanvas->getDevice());
if ( ! xDevice.is())
return;
-
+
// Create a polygon for the background and for clipping.
Reference<rendering::XPolyPolygon2D> xBackgroundPolygon (
PresenterGeometryHelper::CreatePolygon(mxParentWindow->getPosSize(), xDevice));
@@ -1282,7 +1282,7 @@ void PresenterWindowManager::PaintBackground (const awt::Rectangle& rUpdateBox)
if (mpBackgroundBitmap.get() != NULL)
{
ProvideBackgroundBitmap();
-
+
if (mxScaledBackgroundBitmap.is())
{
Sequence<rendering::Texture> aTextures (1);
@@ -1411,7 +1411,7 @@ void PresenterWindowManager::UpdateWindowList (void)
Reference<lang::XComponent> xComponent (mxPaneBorderManager, UNO_QUERY);
if (xComponent.is())
xComponent->dispose();
-
+
Reference<lang::XMultiComponentFactory> xFactory (mxComponentContext->getServiceManager());
if (xFactory.is())
{
@@ -1560,7 +1560,7 @@ ModeChangeAnimationStarter::ModeChangeAnimationStarter (
mpSprite->SetFactory(rxCanvas);
mpSprite->Resize(geometry::RealSize2D(aWindowSize.Width, aWindowSize.Height));
mpSprite->SetPriority(10);
-
+
// Fill it with the background inside the bounding box.
const rendering::ViewState aViewState (
geometry::AffineMatrix2D(1,0,0, 0,1,0),
@@ -1612,7 +1612,7 @@ void SAL_CALL ModeChangeAnimationStarter::notifyConfigurationChange (
throw (com::sun::star::uno::RuntimeException)
{
(void)rEvent;
-
+
// Start the actual animation.
mpAnimator->AddAnimation(SharedPresenterAnimation(new ModeChangeAnimation(
mpSprite,