/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * 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 * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_sdext.hxx" #include "PresenterNotesView.hxx" #include "PresenterButton.hxx" #include "PresenterCanvasHelper.hxx" #include "PresenterGeometryHelper.hxx" #include "PresenterPaintManager.hxx" #include "PresenterScrollBar.hxx" #include "PresenterTextView.hxx" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace ::com::sun::star; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::drawing::framework; using ::rtl::OUString; #define A2S(pString) (::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(pString))) static const sal_Int32 gnSpaceBelowSeparator (10); static const sal_Int32 gnSpaceAboveSeparator (10); static const sal_Int32 gnPartHeight (128); /** Maximal size of memory used for bitmaps which show the notes text. */ static const sal_Int32 gnMaximalCacheSize (8*1024*1024); static const double gnLineScrollFactor (1.2); namespace sdext { namespace presenter { //===== PresenterNotesView ==================================================== PresenterNotesView::PresenterNotesView ( const Reference& rxComponentContext, const Reference& rxViewId, const Reference& rxController, const ::rtl::Reference& rpPresenterController) : PresenterNotesViewInterfaceBase(m_aMutex), mxViewId(rxViewId), mpPresenterController(rpPresenterController), mxCanvas(), mxCurrentNotesPage(), mpScrollBar(), mxToolBarWindow(), mxToolBarCanvas(), mpToolBar(), mpCloseButton(), maSeparatorColor(0xffffff), mnSeparatorYLocation(0), maTextBoundingBox(), mpBackground(), mnTop(0), mpFont(), mpTextView() { try { Reference xCM (rxController, UNO_QUERY_THROW); Reference xCC (xCM->getConfigurationController(), UNO_QUERY_THROW); Reference xPane (xCC->getResource(rxViewId->getAnchor()), UNO_QUERY_THROW); mxParentWindow = xPane->getWindow(); mxCanvas = xPane->getCanvas(); mpTextView.reset(new PresenterTextView( rxComponentContext, mxCanvas, mpPresenterController->GetPaintManager()->GetInvalidator(mxParentWindow))); const OUString sResourceURL (mxViewId->getResourceURL()); mpFont.reset(new PresenterTheme::FontDescriptor( rpPresenterController->GetViewFont(sResourceURL))); maSeparatorColor = mpFont->mnColor; mpTextView->SetFont(mpFont); CreateToolBar(rxComponentContext, rpPresenterController); mpCloseButton = PresenterButton::Create( rxComponentContext, mpPresenterController, mpPresenterController->GetTheme(), mxParentWindow, mxCanvas, A2S("NotesViewCloser")); if (mxParentWindow.is()) { mxParentWindow->addWindowListener(this); mxParentWindow->addPaintListener(this); mxParentWindow->addKeyListener(this); mxParentWindow->setVisible(sal_True); } mpScrollBar = new PresenterVerticalScrollBar( rxComponentContext, mxParentWindow, mpPresenterController->GetPaintManager(), ::boost::bind(&PresenterNotesView::SetTop, this, _1)); mpScrollBar->SetBackground( mpPresenterController->GetViewBackground(mxViewId->getResourceURL())); mpScrollBar->SetCanvas(mxCanvas); Layout(); } catch (RuntimeException&) { PresenterNotesView::disposing(); throw; } } PresenterNotesView::~PresenterNotesView (void) { } void SAL_CALL PresenterNotesView::disposing (void) { if (mxParentWindow.is()) { mxParentWindow->removeWindowListener(this); mxParentWindow->removePaintListener(this); mxParentWindow->removeKeyListener(this); mxParentWindow = NULL; } // Dispose tool bar. { Reference xComponent (static_cast(mpToolBar.get()), UNO_QUERY); mpToolBar = NULL; if (xComponent.is()) xComponent->dispose(); } { Reference xComponent (mxToolBarCanvas, UNO_QUERY); mxToolBarCanvas = NULL; if (xComponent.is()) xComponent->dispose(); } { Reference xComponent (mxToolBarWindow, UNO_QUERY); mxToolBarWindow = NULL; if (xComponent.is()) xComponent->dispose(); } // Dispose close button { Reference xComponent (static_cast(mpCloseButton.get()), UNO_QUERY); mpCloseButton = NULL; if (xComponent.is()) xComponent->dispose(); } // Create the tool bar. mpScrollBar = NULL; mxViewId = NULL; } void PresenterNotesView::CreateToolBar ( const css::uno::Reference& rxContext, const ::rtl::Reference& rpPresenterController) { if (rpPresenterController.get() == NULL) return; Reference xPresenterHelper ( rpPresenterController->GetPresenterHelper()); if ( ! xPresenterHelper.is()) return; // Create a new window as container of the tool bar. mxToolBarWindow = xPresenterHelper->createWindow( mxParentWindow, sal_False, sal_True, sal_False, sal_False); mxToolBarCanvas = xPresenterHelper->createSharedCanvas ( Reference(mxCanvas, UNO_QUERY), mxParentWindow, mxCanvas, mxParentWindow, mxToolBarWindow); // Create the tool bar. mpToolBar = new PresenterToolBar( rxContext, mxToolBarWindow, mxToolBarCanvas, rpPresenterController, PresenterToolBar::Left); mpToolBar->Initialize( A2S("PresenterScreenSettings/ToolBars/NotesToolBar")); } void PresenterNotesView::SetSlide (const Reference& rxNotesPage) { static const ::rtl::OUString sNotesShapeName ( A2S("com.sun.star.presentation.NotesShape")); static const ::rtl::OUString sTextShapeName ( A2S("com.sun.star.drawing.TextShape")); Reference xIndexAccess (rxNotesPage, UNO_QUERY); if (xIndexAccess.is()) { ::rtl::OUString sText; // Iterate over all shapes and find the one that holds the text. sal_Int32 nCount (xIndexAccess->getCount()); for (sal_Int32 nIndex=0; nIndex xServiceName ( xIndexAccess->getByIndex(nIndex), UNO_QUERY); if (xServiceName.is() && xServiceName->getServiceName().equals(sNotesShapeName)) { Reference xText (xServiceName, UNO_QUERY); if (xText.is()) { sText += xText->getString(); } } else { Reference xShapeDescriptor ( xIndexAccess->getByIndex(nIndex), UNO_QUERY); if (xShapeDescriptor.is()) { ::rtl::OUString sType (xShapeDescriptor->getShapeType()); if (sType.equals(sNotesShapeName) || sType.equals(sTextShapeName)) { Reference xText ( xIndexAccess->getByIndex(nIndex), UNO_QUERY); if (xText.is()) { sText += xText->getString(); mpTextView->SetText(Reference(xText, UNO_QUERY)); } } } } } Layout(); if (mpScrollBar.get() != NULL) { mpScrollBar->SetThumbPosition(0, false); UpdateScrollBar(); } Invalidate(); } } //----- lang::XEventListener ------------------------------------------------- void SAL_CALL PresenterNotesView::disposing (const lang::EventObject& rEventObject) throw (RuntimeException) { if (rEventObject.Source == mxParentWindow) mxParentWindow = NULL; } //----- XWindowListener ------------------------------------------------------- void SAL_CALL PresenterNotesView::windowResized (const awt::WindowEvent& rEvent) throw (RuntimeException) { (void)rEvent; Layout(); } void SAL_CALL PresenterNotesView::windowMoved (const awt::WindowEvent& rEvent) throw (RuntimeException) { (void)rEvent; } void SAL_CALL PresenterNotesView::windowShown (const lang::EventObject& rEvent) throw (RuntimeException) { (void)rEvent; } void SAL_CALL PresenterNotesView::windowHidden (const lang::EventObject& rEvent) throw (RuntimeException) { (void)rEvent; } //----- XPaintListener -------------------------------------------------------- void SAL_CALL PresenterNotesView::windowPaint (const awt::PaintEvent& rEvent) throw (RuntimeException) { ThrowIfDisposed(); if ( ! mbIsPresenterViewActive) return; ::osl::MutexGuard aSolarGuard (::osl::Mutex::getGlobalMutex()); Paint(rEvent.UpdateRect); } //----- XResourceId ----------------------------------------------------------- Reference SAL_CALL PresenterNotesView::getResourceId (void) throw (RuntimeException) { return mxViewId; } sal_Bool SAL_CALL PresenterNotesView::isAnchorOnly (void) throw (RuntimeException) { return false; } //----- XDrawView ------------------------------------------------------------- void SAL_CALL PresenterNotesView::setCurrentPage (const Reference& rxSlide) throw (RuntimeException) { // Get the associated notes page. mxCurrentNotesPage = NULL; try { Reference xPresentationPage(rxSlide, UNO_QUERY); if (xPresentationPage.is()) mxCurrentNotesPage = xPresentationPage->getNotesPage(); } catch (RuntimeException&) { } SetSlide(mxCurrentNotesPage); } Reference SAL_CALL PresenterNotesView::getCurrentPage (void) throw (RuntimeException) { return NULL; } //----- XKeyListener ---------------------------------------------------------- void SAL_CALL PresenterNotesView::keyPressed (const awt::KeyEvent& rEvent) throw (RuntimeException) { switch (rEvent.KeyCode) { case awt::Key::A: Scroll(-gnLineScrollFactor * mpFont->mnSize); break; case awt::Key::Y: case awt::Key::Z: Scroll(+gnLineScrollFactor * mpFont->mnSize); break; case awt::Key::S: ChangeFontSize(-1); break; case awt::Key::G: ChangeFontSize(+1); break; case awt::Key::H: if (mpTextView) mpTextView->MoveCaret( -1, (rEvent.Modifiers == awt::KeyModifier::SHIFT) ? cssa::AccessibleTextType::CHARACTER : cssa::AccessibleTextType::WORD); break; case awt::Key::L: if (mpTextView) mpTextView->MoveCaret( +1, (rEvent.Modifiers == awt::KeyModifier::SHIFT) ? cssa::AccessibleTextType::CHARACTER : cssa::AccessibleTextType::WORD); break; } } void SAL_CALL PresenterNotesView::keyReleased (const awt::KeyEvent& rEvent) throw (RuntimeException) { (void)rEvent; } //----------------------------------------------------------------------------- void PresenterNotesView::Layout (void) { if ( ! mxParentWindow.is()) return; awt::Rectangle aWindowBox (mxParentWindow->getPosSize()); geometry::RealRectangle2D aNewTextBoundingBox (0,0,aWindowBox.Width, aWindowBox.Height); // Size the tool bar and the horizontal separator above it. if (mxToolBarWindow.is()) { const geometry::RealSize2D aToolBarSize (mpToolBar->GetMinimalSize()); const sal_Int32 nToolBarHeight = sal_Int32(aToolBarSize.Height + 0.5); mxToolBarWindow->setPosSize(0, aWindowBox.Height - nToolBarHeight, sal_Int32(aToolBarSize.Width + 0.5), nToolBarHeight, awt::PosSize::POSSIZE); aNewTextBoundingBox.Y2 -= nToolBarHeight; mnSeparatorYLocation = aWindowBox.Height - nToolBarHeight - gnSpaceBelowSeparator; aNewTextBoundingBox.Y2 = mnSeparatorYLocation - gnSpaceAboveSeparator; // Place the close button. if (mpCloseButton.get() != NULL) mpCloseButton->SetCenter(geometry::RealPoint2D( (aWindowBox.Width + aToolBarSize.Width) / 2, aWindowBox.Height - aToolBarSize.Height/2)); } // Check whether the vertical scroll bar is necessary. if (mpScrollBar.get() != NULL) { bool bShowVerticalScrollbar (false); try { const double nTextBoxHeight (aNewTextBoundingBox.Y2 - aNewTextBoundingBox.Y1); const double nHeight (mpTextView->GetTotalTextHeight()); if (nHeight > nTextBoxHeight) { bShowVerticalScrollbar = true; aNewTextBoundingBox.X2 -= mpScrollBar->GetSize(); } mpScrollBar->SetTotalSize(nHeight); } catch(beans::UnknownPropertyException&) { OSL_ASSERT(false); } mpScrollBar->SetVisible(bShowVerticalScrollbar); mpScrollBar->SetPosSize( geometry::RealRectangle2D( aNewTextBoundingBox.X2, aNewTextBoundingBox.X1, aNewTextBoundingBox.X2 + mpScrollBar->GetSize(), aNewTextBoundingBox.Y2)); if ( ! bShowVerticalScrollbar) mpScrollBar->SetThumbPosition(0, false); UpdateScrollBar(); } // Has the text area has changed it position or size? if (aNewTextBoundingBox.X1 != maTextBoundingBox.X1 || aNewTextBoundingBox.Y1 != maTextBoundingBox.Y1 || aNewTextBoundingBox.X2 != maTextBoundingBox.X2 || aNewTextBoundingBox.Y2 != maTextBoundingBox.Y2) { maTextBoundingBox = aNewTextBoundingBox; mpTextView->SetLocation( geometry::RealPoint2D( aNewTextBoundingBox.X1, aNewTextBoundingBox.Y1)); mpTextView->SetSize( geometry::RealSize2D( aNewTextBoundingBox.X2 - aNewTextBoundingBox.X1, aNewTextBoundingBox.Y2 - aNewTextBoundingBox.Y1)); } } void PresenterNotesView::Paint (const awt::Rectangle& rUpdateBox) { if ( ! mxParentWindow.is()) return; if ( ! mxCanvas.is()) return; if (mpBackground.get() == NULL) mpBackground = mpPresenterController->GetViewBackground(mxViewId->getResourceURL()); if (rUpdateBox.Y < maTextBoundingBox.Y2 && rUpdateBox.X < maTextBoundingBox.X2) { PaintText(rUpdateBox); } mpTextView->Paint(rUpdateBox); if (rUpdateBox.Y + rUpdateBox.Height > maTextBoundingBox.Y2) { PaintToolBar(rUpdateBox); } } void PresenterNotesView::PaintToolBar (const awt::Rectangle& rUpdateBox) { awt::Rectangle aWindowBox (mxParentWindow->getPosSize()); rendering::ViewState aViewState ( geometry::AffineMatrix2D(1,0,0, 0,1,0), NULL); rendering::RenderState aRenderState( geometry::AffineMatrix2D(1,0,0, 0,1,0), NULL, Sequence(4), rendering::CompositeOperation::SOURCE); if (mpBackground.get() != NULL) { // Paint the background. mpPresenterController->GetCanvasHelper()->Paint( mpBackground, mxCanvas, rUpdateBox, awt::Rectangle(0,sal_Int32(maTextBoundingBox.Y2),aWindowBox.Width,aWindowBox.Height), awt::Rectangle()); } // Paint the horizontal separator. OSL_ASSERT(mxViewId.is()); PresenterCanvasHelper::SetDeviceColor(aRenderState, maSeparatorColor); mxCanvas->drawLine( geometry::RealPoint2D(0,mnSeparatorYLocation), geometry::RealPoint2D(aWindowBox.Width,mnSeparatorYLocation), aViewState, aRenderState); } void PresenterNotesView::PaintText (const awt::Rectangle& rUpdateBox) { const awt::Rectangle aBox (PresenterGeometryHelper::Intersection(rUpdateBox, PresenterGeometryHelper::ConvertRectangle(maTextBoundingBox))); if (aBox.Width <= 0 || aBox.Height <= 0) return; rendering::ViewState aViewState ( geometry::AffineMatrix2D(1,0,0, 0,1,0), PresenterGeometryHelper::CreatePolygon(aBox, mxCanvas->getDevice())); rendering::RenderState aRenderState( geometry::AffineMatrix2D(1,0,0, 0,1,0), NULL, Sequence(3), rendering::CompositeOperation::SOURCE); if (mpBackground.get() != NULL) { // Paint the background. mpPresenterController->GetCanvasHelper()->Paint( mpBackground, mxCanvas, rUpdateBox, aBox, awt::Rectangle()); } Reference xSpriteCanvas (mxCanvas, UNO_QUERY); if (xSpriteCanvas.is()) xSpriteCanvas->updateScreen(sal_False); } void PresenterNotesView::Invalidate (void) { mpPresenterController->GetPaintManager()->Invalidate( mxParentWindow, PresenterGeometryHelper::ConvertRectangle(maTextBoundingBox)); } void PresenterNotesView::Scroll (const double rnDistance) { try { mnTop += rnDistance; mpTextView->SetOffset(0, mnTop); UpdateScrollBar(); Invalidate(); } catch (beans::UnknownPropertyException&) {} } void PresenterNotesView::SetTop (const double nTop) { try { mnTop = nTop; mpTextView->SetOffset(0, mnTop); UpdateScrollBar(); Invalidate(); } catch (beans::UnknownPropertyException&) {} } void PresenterNotesView::ChangeFontSize (const sal_Int32 nSizeChange) { const sal_Int32 nNewSize (mpFont->mnSize + nSizeChange); if (nNewSize > 5) { mpFont->mnSize = nNewSize; mpFont->mxFont = NULL; mpTextView->SetFont(mpFont); Layout(); UpdateScrollBar(); Invalidate(); // Write the new font size to the configuration to make it persistent. try { const OUString sStyleName (mpPresenterController->GetTheme()->GetStyleName( mxViewId->getResourceURL())); ::boost::shared_ptr pConfiguration ( mpPresenterController->GetTheme()->GetNodeForViewStyle( sStyleName, PresenterConfigurationAccess::READ_WRITE)); if (pConfiguration.get()==NULL || ! pConfiguration->IsValid()) return; pConfiguration->GoToChild(A2S("Font")); pConfiguration->SetProperty(A2S("Size"), Any((sal_Int32)(nNewSize+0.5))); pConfiguration->CommitChanges(); } catch (Exception&) { OSL_ASSERT(false); } } } ::boost::shared_ptr PresenterNotesView::GetTextView (void) const { return mpTextView; } void PresenterNotesView::UpdateScrollBar (void) { if (mpScrollBar.get() != NULL) { try { mpScrollBar->SetTotalSize(mpTextView->GetTotalTextHeight()); } catch(beans::UnknownPropertyException&) { OSL_ASSERT(false); } mpScrollBar->SetLineHeight(mpFont->mnSize*1.2); mpScrollBar->SetThumbPosition(mnTop, false); mpScrollBar->SetThumbSize(maTextBoundingBox.Y2 - maTextBoundingBox.Y1); mpScrollBar->CheckValues(); } } void PresenterNotesView::ThrowIfDisposed (void) throw (::com::sun::star::lang::DisposedException) { if (rBHelper.bDisposed || rBHelper.bInDispose) { throw lang::DisposedException ( A2S("PresenterNotesView object has already been disposed"), static_cast(this)); } } } } // end of namespace ::sdext::presenter /* vim:set shiftwidth=4 softtabstop=4 expandtab: */