/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include "DrawController.hxx" #include "SdUnoSlideView.hxx" #include "SlideSorter.hxx" #include "controller/SlideSorterController.hxx" #include "controller/SlsPageSelector.hxx" #include "controller/SlsCurrentSlideManager.hxx" #include "model/SlsPageEnumerationProvider.hxx" #include "model/SlideSorterModel.hxx" #include "model/SlsPageDescriptor.hxx" #include "sdpage.hxx" #include using namespace ::com::sun::star; using namespace ::com::sun::star::uno; namespace sd { SdUnoSlideView::SdUnoSlideView ( slidesorter::SlideSorter& rSlideSorter) throw() : DrawSubControllerInterfaceBase(m_aMutex), mrSlideSorter(rSlideSorter) { } SdUnoSlideView::~SdUnoSlideView (void) throw() { } //----- XSelectionSupplier ---------------------------------------------------- sal_Bool SAL_CALL SdUnoSlideView::select (const Any& aSelection) throw(lang::IllegalArgumentException, RuntimeException) { bool bOk = true; slidesorter::controller::SlideSorterController& rSlideSorterController = mrSlideSorter.GetController(); slidesorter::controller::PageSelector& rSelector (rSlideSorterController.GetPageSelector()); rSelector.DeselectAllPages(); Sequence > xPages; aSelection >>= xPages; const sal_uInt32 nCount = xPages.getLength(); for (sal_uInt32 nIndex=0; nIndex xSet (xPages[nIndex], UNO_QUERY); if (xSet.is()) { try { Any aNumber = xSet->getPropertyValue("Number"); sal_Int32 nPageNumber = 0; aNumber >>= nPageNumber; nPageNumber -=1; // Transform 1-based page numbers to 0-based ones. rSelector.SelectPage(nPageNumber); } catch (const RuntimeException&) { } } } return bOk; } Any SAL_CALL SdUnoSlideView::getSelection (void) throw(RuntimeException) { Any aResult; slidesorter::model::PageEnumeration aSelectedPages ( slidesorter::model::PageEnumerationProvider::CreateSelectedPagesEnumeration( mrSlideSorter.GetModel())); int nSelectedPageCount ( mrSlideSorter.GetController().GetPageSelector().GetSelectedPageCount()); Sequence > aPages(nSelectedPageCount); int nIndex = 0; while (aSelectedPages.HasMoreElements() && nIndexGetPage()->getUnoPage(); } aResult <<= aPages; return aResult; } void SAL_CALL SdUnoSlideView::addSelectionChangeListener ( const css::uno::Reference& rxListener) throw(css::uno::RuntimeException) { (void)rxListener; } void SAL_CALL SdUnoSlideView::removeSelectionChangeListener ( const css::uno::Reference& rxListener) throw(css::uno::RuntimeException) { (void)rxListener; } //----- XDrawView ------------------------------------------------------------- void SAL_CALL SdUnoSlideView::setCurrentPage ( const css::uno::Reference& rxDrawPage) throw(css::uno::RuntimeException) { Reference xProperties (rxDrawPage, UNO_QUERY); if (xProperties.is()) { sal_uInt16 nPageNumber(0); if (xProperties->getPropertyValue("Number") >>= nPageNumber) { mrSlideSorter.GetController().GetCurrentSlideManager()->SwitchCurrentSlide( nPageNumber-1, true); } } } css::uno::Reference SAL_CALL SdUnoSlideView::getCurrentPage (void) throw(css::uno::RuntimeException) { return mrSlideSorter.GetController().GetCurrentSlideManager()->GetCurrentSlide()->GetXDrawPage(); } //----- XFastPropertySet ------------------------------------------------------ void SdUnoSlideView::setFastPropertyValue ( sal_Int32 nHandle, const Any& rValue) throw(css::beans::UnknownPropertyException, css::beans::PropertyVetoException, css::lang::IllegalArgumentException, css::lang::WrappedTargetException, css::uno::RuntimeException) { (void)nHandle; (void)rValue; throw beans::UnknownPropertyException(); } Any SAL_CALL SdUnoSlideView::getFastPropertyValue ( sal_Int32 nHandle) throw(css::beans::UnknownPropertyException, css::lang::WrappedTargetException, css::uno::RuntimeException) { (void)nHandle; if( nHandle != DrawController::PROPERTY_VIEWOFFSET ) throw beans::UnknownPropertyException(); return Any(); } // XServiceInfo OUString SAL_CALL SdUnoSlideView::getImplementationName( ) throw (RuntimeException) { return OUString( "com.sun.star.comp.sd.SdUnoSlideView" ); } sal_Bool SAL_CALL SdUnoSlideView::supportsService( const OUString& ServiceName ) throw (RuntimeException) { return cppu::supportsService( this, ServiceName ); } Sequence< OUString > SAL_CALL SdUnoSlideView::getSupportedServiceNames( ) throw (RuntimeException) { OUString aSN( "com.sun.star.presentation.SlidesView" ); uno::Sequence< OUString > aSeq( &aSN, 1 ); return aSeq; } } // end of namespace sd /* vim:set shiftwidth=4 softtabstop=4 expandtab: */