211 lines
5.4 KiB
C++
211 lines
5.4 KiB
C++
/* -*- 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 "SdUnoOutlineView.hxx"
|
|
|
|
#include "DrawController.hxx"
|
|
#include "OutlineViewShell.hxx"
|
|
#include "sdpage.hxx"
|
|
#include "unopage.hxx"
|
|
|
|
#include <cppuhelper/proptypehlp.hxx>
|
|
#include <cppuhelper/supportsservice.hxx>
|
|
#include <svx/unopage.hxx>
|
|
#include <osl/mutex.hxx>
|
|
#include <vcl/svapp.hxx>
|
|
|
|
using namespace ::cppu;
|
|
using namespace ::com::sun::star;
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
|
|
|
|
namespace sd {
|
|
|
|
SdUnoOutlineView::SdUnoOutlineView(
|
|
OutlineViewShell& rViewShell) throw()
|
|
: DrawSubControllerInterfaceBase(m_aMutex),
|
|
mrOutlineViewShell(rViewShell)
|
|
{
|
|
}
|
|
|
|
|
|
|
|
|
|
SdUnoOutlineView::~SdUnoOutlineView (void) throw()
|
|
{
|
|
}
|
|
|
|
|
|
|
|
|
|
void SAL_CALL SdUnoOutlineView::disposing (void)
|
|
{
|
|
}
|
|
|
|
|
|
|
|
|
|
//----- XSelectionSupplier ----------------------------------------------------
|
|
|
|
sal_Bool SAL_CALL SdUnoOutlineView::select( const Any& )
|
|
throw(lang::IllegalArgumentException, RuntimeException, std::exception)
|
|
{
|
|
// todo: add selections for text ranges
|
|
return sal_False;
|
|
}
|
|
|
|
|
|
|
|
Any SAL_CALL SdUnoOutlineView::getSelection()
|
|
throw(RuntimeException, std::exception)
|
|
{
|
|
Any aAny;
|
|
return aAny;
|
|
}
|
|
|
|
|
|
|
|
void SAL_CALL SdUnoOutlineView::addSelectionChangeListener (
|
|
const css::uno::Reference<css::view::XSelectionChangeListener>& rxListener)
|
|
throw(css::uno::RuntimeException, std::exception)
|
|
{
|
|
(void)rxListener;
|
|
}
|
|
|
|
|
|
|
|
|
|
void SAL_CALL SdUnoOutlineView::removeSelectionChangeListener (
|
|
const css::uno::Reference<css::view::XSelectionChangeListener>& rxListener)
|
|
throw(css::uno::RuntimeException, std::exception)
|
|
{
|
|
(void)rxListener;
|
|
}
|
|
|
|
//----- XDrawView -------------------------------------------------------------
|
|
void SAL_CALL SdUnoOutlineView::setCurrentPage (
|
|
const Reference< drawing::XDrawPage >& xPage)
|
|
throw(RuntimeException, std::exception)
|
|
{
|
|
SvxDrawPage* pDrawPage = SvxDrawPage::getImplementation( xPage );
|
|
SdrPage *pSdrPage = pDrawPage ? pDrawPage->GetSdrPage() : NULL;
|
|
SdPage *pSdPage = dynamic_cast<SdPage*>(pSdrPage);
|
|
|
|
if (pSdPage != NULL)
|
|
mrOutlineViewShell.SetCurrentPage(pSdPage);
|
|
}
|
|
|
|
Reference< drawing::XDrawPage > SAL_CALL SdUnoOutlineView::getCurrentPage (void)
|
|
throw(RuntimeException, std::exception)
|
|
{
|
|
Reference<drawing::XDrawPage> xPage;
|
|
|
|
SdPage* pPage = mrOutlineViewShell.getCurrentPage();
|
|
if (pPage != NULL)
|
|
xPage = Reference<drawing::XDrawPage>::query(pPage->getUnoPage());
|
|
|
|
return xPage;
|
|
}
|
|
|
|
void SdUnoOutlineView::setFastPropertyValue (
|
|
sal_Int32 nHandle,
|
|
const Any& rValue)
|
|
throw(css::beans::UnknownPropertyException,
|
|
css::beans::PropertyVetoException,
|
|
css::lang::IllegalArgumentException,
|
|
css::lang::WrappedTargetException,
|
|
css::uno::RuntimeException, std::exception)
|
|
{
|
|
switch( nHandle )
|
|
{
|
|
case DrawController::PROPERTY_CURRENTPAGE:
|
|
{
|
|
Reference< drawing::XDrawPage > xPage;
|
|
rValue >>= xPage;
|
|
setCurrentPage( xPage );
|
|
}
|
|
break;
|
|
|
|
default:
|
|
throw beans::UnknownPropertyException();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
void SAL_CALL SdUnoOutlineView::disposing (const ::com::sun::star::lang::EventObject& )
|
|
throw (::com::sun::star::uno::RuntimeException)
|
|
{
|
|
}
|
|
|
|
|
|
|
|
|
|
Any SAL_CALL SdUnoOutlineView::getFastPropertyValue (
|
|
sal_Int32 nHandle)
|
|
throw(css::beans::UnknownPropertyException,
|
|
css::lang::WrappedTargetException,
|
|
css::uno::RuntimeException, std::exception)
|
|
{
|
|
Any aValue;
|
|
|
|
switch( nHandle )
|
|
{
|
|
case DrawController::PROPERTY_CURRENTPAGE:
|
|
{
|
|
SdPage* pPage = const_cast<OutlineViewShell&>(mrOutlineViewShell).GetActualPage();
|
|
if (pPage != NULL)
|
|
aValue <<= pPage->getUnoPage();
|
|
}
|
|
break;
|
|
case DrawController::PROPERTY_VIEWOFFSET:
|
|
break;
|
|
|
|
default:
|
|
throw beans::UnknownPropertyException();
|
|
}
|
|
|
|
return aValue;
|
|
}
|
|
|
|
// XServiceInfo
|
|
OUString SAL_CALL SdUnoOutlineView::getImplementationName( ) throw (RuntimeException, std::exception)
|
|
{
|
|
return OUString("com.sun.star.comp.sd.SdUnoOutlineView");
|
|
}
|
|
|
|
sal_Bool SAL_CALL SdUnoOutlineView::supportsService( const OUString& ServiceName ) throw (RuntimeException, std::exception)
|
|
{
|
|
return cppu::supportsService( this, ServiceName );
|
|
}
|
|
|
|
Sequence< OUString > SAL_CALL SdUnoOutlineView::getSupportedServiceNames( ) throw (RuntimeException, std::exception)
|
|
{
|
|
OUString aSN( "com.sun.star.presentation.OutlineView" );
|
|
uno::Sequence< OUString > aSeq( &aSN, 1 );
|
|
return aSeq;
|
|
}
|
|
|
|
} // end of namespace sd
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|