1567 lines
53 KiB
C++
1567 lines
53 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 "ChartController.hxx"
|
|
#include "servicenames.hxx"
|
|
#include "ResId.hxx"
|
|
#include "dlg_DataSource.hxx"
|
|
#include "ChartModelHelper.hxx"
|
|
#include "ControllerCommandDispatch.hxx"
|
|
#include "Strings.hrc"
|
|
#include "chartview/ExplicitValueProvider.hxx"
|
|
#include "ChartViewHelper.hxx"
|
|
|
|
#include "ChartWindow.hxx"
|
|
#include "chartview/DrawModelWrapper.hxx"
|
|
#include "DrawViewWrapper.hxx"
|
|
#include "ObjectIdentifier.hxx"
|
|
#include "DiagramHelper.hxx"
|
|
#include "ControllerLockGuard.hxx"
|
|
#include "UndoGuard.hxx"
|
|
#include "ChartDropTargetHelper.hxx"
|
|
|
|
#include "macros.hxx"
|
|
#include "dlg_CreationWizard.hxx"
|
|
#include "dlg_ChartType.hxx"
|
|
#include "AccessibleChartView.hxx"
|
|
#include "DrawCommandDispatch.hxx"
|
|
#include "ShapeController.hxx"
|
|
#include "UndoActions.hxx"
|
|
#include <GL3DHelper.hxx>
|
|
|
|
#include <comphelper/InlineContainer.hxx>
|
|
|
|
#include <com/sun/star/awt/PosSize.hpp>
|
|
#include <com/sun/star/chart2/XChartDocument.hpp>
|
|
#include <com/sun/star/chart2/data/XDataReceiver.hpp>
|
|
#include <com/sun/star/frame/XLoadable.hpp>
|
|
#include <com/sun/star/util/XCloneable.hpp>
|
|
#include <com/sun/star/embed/XEmbeddedClient.hpp>
|
|
#include <com/sun/star/util/XModeChangeBroadcaster.hpp>
|
|
#include <com/sun/star/util/XModifyBroadcaster.hpp>
|
|
#include <com/sun/star/frame/LayoutManagerEvents.hpp>
|
|
#include <com/sun/star/document/XUndoManagerSupplier.hpp>
|
|
#include <com/sun/star/document/XUndoAction.hpp>
|
|
|
|
#include <vcl/msgbox.hxx>
|
|
#include <toolkit/awt/vclxwindow.hxx>
|
|
#include <toolkit/helper/vclunohelper.hxx>
|
|
#include <vcl/svapp.hxx>
|
|
#include <osl/mutex.hxx>
|
|
|
|
#include <com/sun/star/frame/XLayoutManager.hpp>
|
|
#include <com/sun/star/ui/dialogs/XExecutableDialog.hpp>
|
|
|
|
// this is needed to properly destroy the auto_ptr to the AcceleratorExecute
|
|
// object in the DTOR
|
|
#include <svtools/acceleratorexecute.hxx>
|
|
#include <svx/ActionDescriptionProvider.hxx>
|
|
#include <tools/diagnose_ex.h>
|
|
|
|
// enable the following define to let the controller listen to model changes and
|
|
// react on this by rebuilding the view
|
|
#define TEST_ENABLE_MODIFY_LISTENER
|
|
|
|
namespace chart
|
|
{
|
|
|
|
using namespace ::com::sun::star;
|
|
using namespace ::com::sun::star::accessibility;
|
|
using namespace ::com::sun::star::chart2;
|
|
using ::com::sun::star::uno::Any;
|
|
using ::com::sun::star::uno::Reference;
|
|
using ::com::sun::star::uno::Sequence;
|
|
|
|
ChartController::ChartController(uno::Reference<uno::XComponentContext> const & xContext) :
|
|
m_aLifeTimeManager( NULL ),
|
|
m_bSuspended( false ),
|
|
m_bCanClose( true ),
|
|
m_xCC(xContext), //@todo is it allowed to hold this context??
|
|
m_xFrame( NULL ),
|
|
m_aModelMutex(),
|
|
m_aModel( NULL, m_aModelMutex ),
|
|
m_pChartWindow( NULL ),
|
|
m_xViewWindow(),
|
|
m_xChartView(),
|
|
m_pDrawModelWrapper(),
|
|
m_pDrawViewWrapper(NULL),
|
|
m_eDragMode(SDRDRAG_MOVE),
|
|
m_bWaitingForDoubleClick(false),
|
|
m_bWaitingForMouseUp(false),
|
|
m_bConnectingToView(false),
|
|
m_bGL3DChart(false),
|
|
m_xUndoManager( 0 ),
|
|
m_aDispatchContainer( m_xCC, this ),
|
|
m_eDrawMode( CHARTDRAW_SELECT )
|
|
{
|
|
m_aDoubleClickTimer.SetTimeoutHdl( LINK( this, ChartController, DoubleClickWaitingHdl ) );
|
|
}
|
|
|
|
ChartController::~ChartController()
|
|
{
|
|
stopDoubleClickWaiting();
|
|
}
|
|
|
|
ChartController::RefCountable::RefCountable() : m_nRefCount(0)
|
|
{
|
|
}
|
|
|
|
ChartController::RefCountable::~RefCountable()
|
|
{
|
|
}
|
|
void ChartController::RefCountable::acquire()
|
|
{
|
|
m_nRefCount++;
|
|
}
|
|
void ChartController::RefCountable::release()
|
|
{
|
|
m_nRefCount--;
|
|
if(!m_nRefCount)
|
|
delete this;
|
|
}
|
|
|
|
ChartController::TheModel::TheModel( const uno::Reference< frame::XModel > & xModel ) :
|
|
m_xModel( xModel ),
|
|
m_xCloseable( NULL ),
|
|
m_bOwnership( true ),
|
|
m_bOwnershipIsWellKnown( false )
|
|
{
|
|
m_xCloseable =
|
|
uno::Reference< util::XCloseable >( xModel, uno::UNO_QUERY );
|
|
}
|
|
|
|
ChartController::TheModel::~TheModel()
|
|
{
|
|
}
|
|
|
|
void ChartController::TheModel::SetOwnership( bool bGetsOwnership )
|
|
{
|
|
m_bOwnership = bGetsOwnership;
|
|
m_bOwnershipIsWellKnown = true;
|
|
}
|
|
|
|
void ChartController::TheModel::addListener( ChartController* pController )
|
|
{
|
|
if(m_xCloseable.is())
|
|
{
|
|
//if you need to be able to veto against the destruction of the model
|
|
// you must add as a close listener
|
|
|
|
//otherwise you 'can' add as closelistener or 'must' add as dispose event listener
|
|
|
|
m_xCloseable->addCloseListener(
|
|
static_cast<util::XCloseListener*>(pController) );
|
|
}
|
|
else if( m_xModel.is() )
|
|
{
|
|
//we need to add as dispose event listener
|
|
m_xModel->addEventListener(
|
|
static_cast<util::XCloseListener*>(pController) );
|
|
}
|
|
|
|
}
|
|
|
|
void ChartController::TheModel::removeListener( ChartController* pController )
|
|
{
|
|
if(m_xCloseable.is())
|
|
m_xCloseable->removeCloseListener(
|
|
static_cast<util::XCloseListener*>(pController) );
|
|
|
|
else if( m_xModel.is() )
|
|
m_xModel->removeEventListener(
|
|
static_cast<util::XCloseListener*>(pController) );
|
|
}
|
|
|
|
void ChartController::TheModel::tryTermination()
|
|
{
|
|
if(!m_bOwnership)
|
|
return;
|
|
|
|
try
|
|
{
|
|
if(m_xCloseable.is())
|
|
{
|
|
try
|
|
{
|
|
//@todo ? are we allowed to use sal_True here if we have the explicit ownership?
|
|
//I think yes, because there might be other closelistners later in the list which might be interested still
|
|
//but make sure that we do not throw the CloseVetoException here ourselfs
|
|
//so stop listening before trying to terminate or check the source of queryclosing event
|
|
m_xCloseable->close(sal_True);
|
|
|
|
m_bOwnership = false;
|
|
m_bOwnershipIsWellKnown = true;
|
|
}
|
|
catch( const util::CloseVetoException& )
|
|
{
|
|
//since we have indicated to give up the ownership with parameter true in close call
|
|
//the one who has thrown the CloseVetoException is the new owner
|
|
|
|
#if OSL_DEBUG_LEVEL > 1
|
|
OSL_ENSURE( !m_bOwnership,
|
|
"INFO: a well known owner has caught a CloseVetoException after calling close(true)" );
|
|
#endif
|
|
|
|
m_bOwnership = false;
|
|
m_bOwnershipIsWellKnown = true;
|
|
return;
|
|
}
|
|
|
|
}
|
|
else if( m_xModel.is() )
|
|
{
|
|
//@todo correct??
|
|
m_xModel->dispose();
|
|
return;
|
|
}
|
|
}
|
|
catch(const uno::Exception& ex)
|
|
{
|
|
(void)(ex); // no warning in non-debug builds
|
|
OSL_FAIL( OString( OString("Termination of model failed: ")
|
|
+ OUStringToOString( ex.Message, RTL_TEXTENCODING_ASCII_US ) ).getStr() );
|
|
}
|
|
}
|
|
|
|
ChartController::TheModelRef::TheModelRef( TheModel* pTheModel, osl::Mutex& rMutex ) :
|
|
m_pTheModel(pTheModel),
|
|
m_rModelMutex(rMutex)
|
|
{
|
|
osl::Guard< osl::Mutex > aGuard( m_rModelMutex );
|
|
if(m_pTheModel)
|
|
m_pTheModel->acquire();
|
|
}
|
|
ChartController::TheModelRef::TheModelRef( const TheModelRef& rTheModel, ::osl::Mutex& rMutex ) :
|
|
m_rModelMutex(rMutex)
|
|
{
|
|
osl::Guard< osl::Mutex > aGuard( m_rModelMutex );
|
|
m_pTheModel=rTheModel.operator->();
|
|
if(m_pTheModel)
|
|
m_pTheModel->acquire();
|
|
}
|
|
ChartController::TheModelRef& ChartController::TheModelRef::operator=(TheModel* pTheModel)
|
|
{
|
|
osl::Guard< osl::Mutex > aGuard( m_rModelMutex );
|
|
if(m_pTheModel==pTheModel)
|
|
return *this;
|
|
if(m_pTheModel)
|
|
m_pTheModel->release();
|
|
m_pTheModel=pTheModel;
|
|
if(m_pTheModel)
|
|
m_pTheModel->acquire();
|
|
return *this;
|
|
}
|
|
ChartController::TheModelRef& ChartController::TheModelRef::operator=(const TheModelRef& rTheModel)
|
|
{
|
|
osl::Guard< osl::Mutex > aGuard( m_rModelMutex );
|
|
TheModel* pNew=rTheModel.operator->();
|
|
if(m_pTheModel==pNew)
|
|
return *this;
|
|
if(m_pTheModel)
|
|
m_pTheModel->release();
|
|
m_pTheModel=pNew;
|
|
if(m_pTheModel)
|
|
m_pTheModel->acquire();
|
|
return *this;
|
|
}
|
|
ChartController::TheModelRef::~TheModelRef()
|
|
{
|
|
osl::Guard< osl::Mutex > aGuard( m_rModelMutex );
|
|
if(m_pTheModel)
|
|
m_pTheModel->release();
|
|
}
|
|
bool ChartController::TheModelRef::is() const
|
|
{
|
|
return (m_pTheModel != 0);
|
|
}
|
|
|
|
// private methods
|
|
|
|
bool ChartController::impl_isDisposedOrSuspended() const
|
|
{
|
|
if( m_aLifeTimeManager.impl_isDisposed() )
|
|
return true;
|
|
|
|
if( m_bSuspended )
|
|
{
|
|
OSL_FAIL( "This Controller is suspended" );
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
// lang::XServiceInfo
|
|
|
|
APPHELPER_XSERVICEINFO_IMPL(ChartController,CHART_CONTROLLER_SERVICE_IMPLEMENTATION_NAME)
|
|
|
|
uno::Sequence< OUString > ChartController::getSupportedServiceNames_Static()
|
|
{
|
|
uno::Sequence< OUString > aSNS( 2 );
|
|
aSNS.getArray()[ 0 ] = CHART_CONTROLLER_SERVICE_NAME;
|
|
aSNS.getArray()[ 1 ] = "com.sun.star.frame.Controller";
|
|
//// @todo : add additional services if you support any further
|
|
return aSNS;
|
|
}
|
|
|
|
// XController
|
|
|
|
void SAL_CALL ChartController::attachFrame(
|
|
const uno::Reference<frame::XFrame>& xFrame )
|
|
throw(uno::RuntimeException, std::exception)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
|
|
if( impl_isDisposedOrSuspended() ) //@todo? allow attaching the frame while suspended?
|
|
return; //behave passive if already disposed or suspended
|
|
|
|
if(m_xFrame.is()) //what happens, if we do have a Frame already??
|
|
{
|
|
//@todo? throw exception?
|
|
OSL_FAIL( "there is already a frame attached to the controller" );
|
|
return;
|
|
}
|
|
|
|
//--attach frame
|
|
m_xFrame = xFrame; //the frameloader is responsible to call xFrame->setComponent
|
|
|
|
//add as disposelistener to the frame (due to persistent reference) ??...:
|
|
|
|
//the frame is considered to be owner of this controller and will live longer than we do
|
|
//the frame or the disposer of the frame has the duty to call suspend and dispose on this object
|
|
//so we do not need to add as lang::XEventListener for DisposingEvents right?
|
|
|
|
//@todo nothing right???
|
|
|
|
//create view @todo is this the correct place here??
|
|
|
|
Window* pParent = NULL;
|
|
//get the window parent from the frame to use as parent for our new window
|
|
if(xFrame.is())
|
|
{
|
|
uno::Reference< awt::XWindow > xContainerWindow = xFrame->getContainerWindow();
|
|
VCLXWindow* pParentComponent = VCLXWindow::GetImplementation(xContainerWindow);
|
|
pParentComponent->setVisible(sal_True);
|
|
|
|
pParent = VCLUnoHelper::GetWindow( xContainerWindow );
|
|
}
|
|
|
|
if(m_pChartWindow)
|
|
{
|
|
//@todo delete ...
|
|
m_pChartWindow->clear();
|
|
m_apDropTargetHelper.reset();
|
|
}
|
|
{
|
|
// calls to VCL
|
|
SolarMutexGuard aSolarGuard;
|
|
m_pChartWindow = new ChartWindow(this,pParent,pParent?pParent->GetStyle():0);
|
|
m_pChartWindow->SetBackground();//no Background
|
|
m_xViewWindow = uno::Reference< awt::XWindow >( m_pChartWindow->GetComponentInterface(), uno::UNO_QUERY );
|
|
m_pChartWindow->Show();
|
|
m_apDropTargetHelper.reset(
|
|
new ChartDropTargetHelper( m_pChartWindow->GetDropTarget(),
|
|
uno::Reference< chart2::XChartDocument >( getModel(), uno::UNO_QUERY )));
|
|
|
|
impl_createDrawViewController();
|
|
}
|
|
|
|
//create the menu
|
|
{
|
|
uno::Reference< beans::XPropertySet > xPropSet( xFrame, uno::UNO_QUERY );
|
|
if( xPropSet.is() )
|
|
{
|
|
try
|
|
{
|
|
uno::Reference< ::com::sun::star::frame::XLayoutManager > xLayoutManager;
|
|
xPropSet->getPropertyValue( "LayoutManager" ) >>= xLayoutManager;
|
|
if ( xLayoutManager.is() )
|
|
{
|
|
xLayoutManager->lock();
|
|
xLayoutManager->requestElement( "private:resource/menubar/menubar" );
|
|
//@todo: createElement should become unnecessary, remove when #i79198# is fixed
|
|
xLayoutManager->createElement( "private:resource/toolbar/standardbar" );
|
|
xLayoutManager->requestElement( "private:resource/toolbar/standardbar" );
|
|
//@todo: createElement should become unnecessary, remove when #i79198# is fixed
|
|
xLayoutManager->createElement( "private:resource/toolbar/toolbar" );
|
|
xLayoutManager->requestElement( "private:resource/toolbar/toolbar" );
|
|
|
|
// #i12587# support for shapes in chart
|
|
xLayoutManager->createElement( "private:resource/toolbar/drawbar" );
|
|
xLayoutManager->requestElement( "private:resource/toolbar/drawbar" );
|
|
|
|
xLayoutManager->requestElement( "private:resource/statusbar/statusbar" );
|
|
xLayoutManager->unlock();
|
|
|
|
// add as listener to get notified when
|
|
m_xLayoutManagerEventBroadcaster.set( xLayoutManager, uno::UNO_QUERY );
|
|
if( m_xLayoutManagerEventBroadcaster.is())
|
|
m_xLayoutManagerEventBroadcaster->addLayoutManagerEventListener( this );
|
|
}
|
|
}
|
|
catch( const uno::Exception & ex )
|
|
{
|
|
ASSERT_EXCEPTION( ex );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//XModeChangeListener
|
|
void SAL_CALL ChartController::modeChanged( const util::ModeChangeEvent& rEvent )
|
|
throw (uno::RuntimeException, std::exception)
|
|
{
|
|
//adjust controller to view status changes
|
|
|
|
if( rEvent.NewMode == "dirty" )
|
|
{
|
|
//the view has become dirty, we should repaint it if we have a window
|
|
SolarMutexGuard aGuard;
|
|
if( m_pChartWindow )
|
|
m_pChartWindow->ForceInvalidate();
|
|
}
|
|
else if( rEvent.NewMode == "invalid" )
|
|
{
|
|
//the view is about to become invalid so end all actions on it
|
|
impl_invalidateAccessible();
|
|
SolarMutexGuard aGuard;
|
|
if( m_pDrawViewWrapper && m_pDrawViewWrapper->IsTextEdit() )
|
|
this->EndTextEdit();
|
|
if( m_pDrawViewWrapper )
|
|
{
|
|
m_pDrawViewWrapper->UnmarkAll();
|
|
m_pDrawViewWrapper->HideSdrPage();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
//the view was rebuild so we can start some actions on it again
|
|
if( !m_bConnectingToView )
|
|
{
|
|
if(m_pChartWindow && m_aModel.is() )
|
|
{
|
|
m_bConnectingToView = true;
|
|
|
|
GetDrawModelWrapper();
|
|
if(m_pDrawModelWrapper)
|
|
{
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
if( m_pDrawViewWrapper )
|
|
m_pDrawViewWrapper->ReInit();
|
|
}
|
|
|
|
//reselect object
|
|
if( m_aSelection.hasSelection() )
|
|
this->impl_selectObjectAndNotiy();
|
|
else
|
|
ChartModelHelper::triggerRangeHighlighting( getModel() );
|
|
|
|
impl_initializeAccessible();
|
|
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
if( m_pChartWindow )
|
|
m_pChartWindow->Invalidate();
|
|
}
|
|
}
|
|
|
|
m_bConnectingToView = false;
|
|
|
|
queryGL3DChart();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
sal_Bool SAL_CALL ChartController::attachModel( const uno::Reference< frame::XModel > & xModel )
|
|
throw(uno::RuntimeException, std::exception)
|
|
{
|
|
impl_invalidateAccessible();
|
|
|
|
//is called to attach the controller to a new model.
|
|
//return true if attach was successfully, false otherwise (e.g. if you do not work with a model)
|
|
|
|
SolarMutexClearableGuard aClearableGuard;
|
|
if( impl_isDisposedOrSuspended() ) //@todo? allow attaching a new model while suspended?
|
|
return sal_False; //behave passive if already disposed or suspended
|
|
aClearableGuard.clear();
|
|
|
|
TheModelRef aNewModelRef( new TheModel( xModel), m_aModelMutex);
|
|
TheModelRef aOldModelRef(m_aModel,m_aModelMutex);
|
|
m_aModel = aNewModelRef;
|
|
|
|
//--handle relations to the old model if any
|
|
if( aOldModelRef.is() )
|
|
{
|
|
uno::Reference< util::XModeChangeBroadcaster > xViewBroadcaster( m_xChartView, uno::UNO_QUERY );
|
|
if( xViewBroadcaster.is() )
|
|
xViewBroadcaster->removeModeChangeListener(this);
|
|
m_pDrawModelWrapper.reset();
|
|
|
|
aOldModelRef->removeListener( this );
|
|
#ifdef TEST_ENABLE_MODIFY_LISTENER
|
|
uno::Reference< util::XModifyBroadcaster > xMBroadcaster( aOldModelRef->getModel(),uno::UNO_QUERY );
|
|
if( xMBroadcaster.is())
|
|
xMBroadcaster->removeModifyListener( this );
|
|
#endif
|
|
}
|
|
|
|
//--handle relations to the new model
|
|
aNewModelRef->addListener( this );
|
|
|
|
// set new model at dispatchers
|
|
m_aDispatchContainer.setModel( aNewModelRef->getModel());
|
|
ControllerCommandDispatch * pDispatch = new ControllerCommandDispatch( m_xCC, this, &m_aDispatchContainer );
|
|
pDispatch->initialize();
|
|
|
|
// the dispatch container will return "this" for all commands returned by
|
|
// impl_getAvailableCommands(). That means, for those commands dispatch()
|
|
// is called here at the ChartController.
|
|
m_aDispatchContainer.setChartDispatch( pDispatch, impl_getAvailableCommands() );
|
|
|
|
DrawCommandDispatch* pDrawDispatch = new DrawCommandDispatch( m_xCC, this );
|
|
if ( pDrawDispatch )
|
|
{
|
|
pDrawDispatch->initialize();
|
|
m_aDispatchContainer.setDrawCommandDispatch( pDrawDispatch );
|
|
}
|
|
|
|
ShapeController* pShapeController = new ShapeController( m_xCC, this );
|
|
if ( pShapeController )
|
|
{
|
|
pShapeController->initialize();
|
|
m_aDispatchContainer.setShapeController( pShapeController );
|
|
}
|
|
|
|
#ifdef TEST_ENABLE_MODIFY_LISTENER
|
|
uno::Reference< util::XModifyBroadcaster > xMBroadcaster( aNewModelRef->getModel(),uno::UNO_QUERY );
|
|
if( xMBroadcaster.is())
|
|
xMBroadcaster->addModifyListener( this );
|
|
#endif
|
|
|
|
// #i119999# Do not do this per default to allow the user to deselect the chart OLE with a single press to ESC
|
|
// select chart area per default:
|
|
// select( uno::makeAny( ObjectIdentifier::createClassifiedIdentifier( OBJECTTYPE_PAGE, OUString() ) ) );
|
|
|
|
uno::Reference< lang::XMultiServiceFactory > xFact( getModel(), uno::UNO_QUERY );
|
|
if( xFact.is())
|
|
{
|
|
m_xChartView = xFact->createInstance( CHART_VIEW_SERVICE_NAME );
|
|
GetDrawModelWrapper();
|
|
uno::Reference< util::XModeChangeBroadcaster > xViewBroadcaster( m_xChartView, uno::UNO_QUERY );
|
|
if( xViewBroadcaster.is() )
|
|
xViewBroadcaster->addModeChangeListener(this);
|
|
}
|
|
|
|
//the frameloader is responsible to call xModel->connectController
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
if( m_pChartWindow )
|
|
m_pChartWindow->Invalidate();
|
|
}
|
|
|
|
uno::Reference< document::XUndoManagerSupplier > xSuppUndo( getModel(), uno::UNO_QUERY_THROW );
|
|
m_xUndoManager.set( xSuppUndo->getUndoManager(), uno::UNO_QUERY_THROW );
|
|
|
|
queryGL3DChart();
|
|
|
|
return sal_True;
|
|
}
|
|
|
|
uno::Reference< frame::XFrame > SAL_CALL ChartController::getFrame()
|
|
throw(uno::RuntimeException, std::exception)
|
|
{
|
|
//provides access to owner frame of this controller
|
|
//return the frame containing this controller
|
|
|
|
return m_xFrame;
|
|
}
|
|
|
|
uno::Reference< frame::XModel > SAL_CALL ChartController::getModel()
|
|
throw(uno::RuntimeException, std::exception)
|
|
{
|
|
//provides access to currently attached model
|
|
//returns the currently attached model
|
|
|
|
//return nothing, if you do not have a model
|
|
TheModelRef aModelRef( m_aModel, m_aModelMutex);
|
|
if(aModelRef.is())
|
|
return aModelRef->getModel();
|
|
|
|
return uno::Reference< frame::XModel > ();
|
|
}
|
|
|
|
uno::Any SAL_CALL ChartController::getViewData()
|
|
throw(uno::RuntimeException, std::exception)
|
|
{
|
|
//provides access to current view status
|
|
//set of data that can be used to restore the current view status at later time
|
|
// by using XController::restoreViewData()
|
|
|
|
SolarMutexGuard aGuard;
|
|
if( impl_isDisposedOrSuspended() )
|
|
return uno::Any(); //behave passive if already disposed or suspended //@todo? or throw an exception??
|
|
|
|
//-- collect current view state
|
|
uno::Any aRet;
|
|
//// @todo integrate specialized implementation
|
|
|
|
return aRet;
|
|
}
|
|
|
|
void SAL_CALL ChartController::restoreViewData(
|
|
const uno::Any& /* Value */ )
|
|
throw(uno::RuntimeException, std::exception)
|
|
{
|
|
//restores the view status using the data gotten from a previous call to XController::getViewData()
|
|
|
|
SolarMutexGuard aGuard;
|
|
if( impl_isDisposedOrSuspended() )
|
|
return; //behave passive if already disposed or suspended //@todo? or throw an exception??
|
|
|
|
//// @todo integrate specialized implementation
|
|
}
|
|
|
|
sal_Bool SAL_CALL ChartController::suspend( sal_Bool bSuspend )
|
|
throw(uno::RuntimeException, std::exception)
|
|
{
|
|
//is called to prepare the controller for closing the view
|
|
//bSuspend==true: force the controller to suspend his work
|
|
//bSuspend==false try to reactivate the controller
|
|
//returns true if request was accepted and of course successfully finished, false otherwise
|
|
|
|
//we may show dialogs here to ask the user for saving changes ... @todo?
|
|
|
|
SolarMutexGuard aGuard;
|
|
if( m_aLifeTimeManager.impl_isDisposed() )
|
|
return sal_False; //behave passive if already disposed, return false because request was not accepted //@todo? correct
|
|
|
|
if(bSuspend == (m_bSuspended ? 1 : 0))
|
|
{
|
|
OSL_FAIL( "new suspend mode equals old suspend mode" );
|
|
return sal_True;
|
|
}
|
|
|
|
//change suspend mode
|
|
if(bSuspend)
|
|
{
|
|
m_bSuspended = bSuspend;
|
|
return sal_True;
|
|
}
|
|
else
|
|
{
|
|
m_bSuspended = bSuspend;
|
|
}
|
|
return sal_True;
|
|
}
|
|
|
|
void ChartController::impl_createDrawViewController()
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
if(!m_pDrawViewWrapper)
|
|
{
|
|
if( m_pDrawModelWrapper )
|
|
{
|
|
m_pDrawViewWrapper = new DrawViewWrapper(&m_pDrawModelWrapper->getSdrModel(),m_pChartWindow,true);
|
|
m_pDrawViewWrapper->attachParentReferenceDevice( getModel() );
|
|
}
|
|
}
|
|
}
|
|
|
|
void ChartController::impl_deleteDrawViewController()
|
|
{
|
|
if( m_pDrawViewWrapper )
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
if( m_pDrawViewWrapper->IsTextEdit() )
|
|
this->EndTextEdit();
|
|
DELETEZ( m_pDrawViewWrapper );
|
|
}
|
|
}
|
|
|
|
// XComponent (base of XController)
|
|
|
|
void SAL_CALL ChartController::dispose()
|
|
throw(uno::RuntimeException, std::exception)
|
|
{
|
|
try
|
|
{
|
|
//This object should release all resources and references in the
|
|
//easiest possible manner
|
|
//This object must notify all registered listeners using the method
|
|
//<member>XEventListener::disposing</member>
|
|
|
|
//hold no mutex
|
|
if( !m_aLifeTimeManager.dispose() )
|
|
return;
|
|
|
|
// OSL_ENSURE( m_bSuspended, "dispose was called but controller is not suspended" );
|
|
|
|
this->stopDoubleClickWaiting();
|
|
|
|
//end range highlighting
|
|
if( m_aModel.is())
|
|
{
|
|
uno::Reference< view::XSelectionChangeListener > xSelectionChangeListener;
|
|
uno::Reference< chart2::data::XDataReceiver > xDataReceiver( getModel(), uno::UNO_QUERY );
|
|
if( xDataReceiver.is() )
|
|
xSelectionChangeListener = uno::Reference< view::XSelectionChangeListener >( xDataReceiver->getRangeHighlighter(), uno::UNO_QUERY );
|
|
if( xSelectionChangeListener.is() )
|
|
{
|
|
uno::Reference< frame::XController > xController( this );
|
|
uno::Reference< lang::XComponent > xComp( xController, uno::UNO_QUERY );
|
|
lang::EventObject aEvent( xComp );
|
|
xSelectionChangeListener->disposing( aEvent );
|
|
}
|
|
}
|
|
|
|
//--release all resources and references
|
|
{
|
|
uno::Reference< util::XModeChangeBroadcaster > xViewBroadcaster( m_xChartView, uno::UNO_QUERY );
|
|
if( xViewBroadcaster.is() )
|
|
xViewBroadcaster->removeModeChangeListener(this);
|
|
|
|
impl_invalidateAccessible();
|
|
SolarMutexGuard aSolarGuard;
|
|
impl_deleteDrawViewController();
|
|
m_pDrawModelWrapper.reset();
|
|
|
|
m_apDropTargetHelper.reset();
|
|
|
|
//the accessible view is disposed within window destructor of m_pChartWindow
|
|
m_pChartWindow->clear();
|
|
m_pChartWindow = NULL;//m_pChartWindow is deleted via UNO due to dispose of m_xViewWindow (trigerred by Framework (Controller pretends to be XWindow also))
|
|
m_xViewWindow->dispose();
|
|
m_xChartView.clear();
|
|
}
|
|
|
|
// remove as listener to layout manager events
|
|
if( m_xLayoutManagerEventBroadcaster.is())
|
|
{
|
|
m_xLayoutManagerEventBroadcaster->removeLayoutManagerEventListener( this );
|
|
m_xLayoutManagerEventBroadcaster.set( 0 );
|
|
}
|
|
|
|
m_xFrame.clear();
|
|
m_xUndoManager.clear();
|
|
|
|
TheModelRef aModelRef( m_aModel, m_aModelMutex);
|
|
m_aModel = NULL;
|
|
|
|
if( aModelRef.is())
|
|
{
|
|
uno::Reference< frame::XModel > xModel( aModelRef->getModel() );
|
|
if(xModel.is())
|
|
xModel->disconnectController( uno::Reference< frame::XController >( this ));
|
|
|
|
aModelRef->removeListener( this );
|
|
#ifdef TEST_ENABLE_MODIFY_LISTENER
|
|
try
|
|
{
|
|
uno::Reference< util::XModifyBroadcaster > xMBroadcaster( aModelRef->getModel(),uno::UNO_QUERY );
|
|
if( xMBroadcaster.is())
|
|
xMBroadcaster->removeModifyListener( this );
|
|
}
|
|
catch( const uno::Exception & ex )
|
|
{
|
|
ASSERT_EXCEPTION( ex );
|
|
}
|
|
#endif
|
|
aModelRef->tryTermination();
|
|
}
|
|
|
|
//// @todo integrate specialized implementation
|
|
//e.g. release further resources and references
|
|
|
|
m_aDispatchContainer.DisposeAndClear();
|
|
}
|
|
catch( const uno::Exception & ex )
|
|
{
|
|
ASSERT_EXCEPTION( ex );
|
|
}
|
|
}
|
|
|
|
void SAL_CALL ChartController::addEventListener(
|
|
const uno::Reference<lang::XEventListener>& xListener )
|
|
throw(uno::RuntimeException, std::exception)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
if( impl_isDisposedOrSuspended() )//@todo? allow adding of listeners in suspend mode?
|
|
return; //behave passive if already disposed or suspended
|
|
|
|
//--add listener
|
|
m_aLifeTimeManager.m_aListenerContainer.addInterface( ::getCppuType((const uno::Reference< lang::XEventListener >*)0), xListener );
|
|
}
|
|
|
|
void SAL_CALL ChartController::removeEventListener(
|
|
const uno::Reference<lang::XEventListener>& xListener )
|
|
throw(uno::RuntimeException, std::exception)
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
if( m_aLifeTimeManager.impl_isDisposed(false) )
|
|
return; //behave passive if already disposed or suspended
|
|
|
|
//--remove listener
|
|
m_aLifeTimeManager.m_aListenerContainer.removeInterface( ::getCppuType((const uno::Reference< lang::XEventListener >*)0), xListener );
|
|
}
|
|
|
|
// util::XCloseListener
|
|
void SAL_CALL ChartController::queryClosing(
|
|
const lang::EventObject& rSource,
|
|
sal_Bool bGetsOwnership )
|
|
throw(util::CloseVetoException, uno::RuntimeException, std::exception)
|
|
{
|
|
//do not use the m_aControllerMutex here because this call is not allowed to block
|
|
|
|
TheModelRef aModelRef( m_aModel, m_aModelMutex);
|
|
|
|
if( !aModelRef.is() )
|
|
return;
|
|
|
|
if( !(aModelRef->getModel() == rSource.Source) )
|
|
{
|
|
OSL_FAIL( "queryClosing was called on a controller from an unknown source" );
|
|
return;
|
|
}
|
|
|
|
if( !m_bCanClose )//@todo tryaqcuire mutex
|
|
{
|
|
if( bGetsOwnership )
|
|
{
|
|
aModelRef->SetOwnership( bGetsOwnership );
|
|
}
|
|
|
|
throw util::CloseVetoException();
|
|
}
|
|
else
|
|
{
|
|
//@ todo prepare to to closing model -> don't start any further hindering actions
|
|
}
|
|
}
|
|
|
|
void SAL_CALL ChartController::notifyClosing(
|
|
const lang::EventObject& rSource )
|
|
throw(uno::RuntimeException, std::exception)
|
|
{
|
|
//Listener should deregister himself and relaese all references to the closing object.
|
|
|
|
TheModelRef aModelRef( m_aModel, m_aModelMutex);
|
|
if( impl_releaseThisModel( rSource.Source ) )
|
|
{
|
|
//--stop listening to the closing model
|
|
aModelRef->removeListener( this );
|
|
|
|
// #i79087# If the model using this controller is closed, the frame is
|
|
// expected to be closed as well
|
|
Reference< util::XCloseable > xFrameCloseable( m_xFrame, uno::UNO_QUERY );
|
|
if( xFrameCloseable.is())
|
|
{
|
|
try
|
|
{
|
|
xFrameCloseable->close( sal_False /* DeliverOwnership */ );
|
|
m_xFrame.clear();
|
|
}
|
|
catch( const util::CloseVetoException & )
|
|
{
|
|
// closing was vetoed
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
bool ChartController::impl_releaseThisModel(
|
|
const uno::Reference< uno::XInterface > & xModel )
|
|
{
|
|
bool bReleaseModel = false;
|
|
{
|
|
::osl::Guard< ::osl::Mutex > aGuard( m_aModelMutex );
|
|
if( m_aModel.is() && m_aModel->getModel() == xModel )
|
|
{
|
|
m_aModel = NULL;
|
|
m_xUndoManager.clear();
|
|
bReleaseModel = true;
|
|
}
|
|
}
|
|
if( bReleaseModel )
|
|
m_aDispatchContainer.setModel( 0 );
|
|
return bReleaseModel;
|
|
}
|
|
|
|
// util::XEventListener (base of XCloseListener)
|
|
void SAL_CALL ChartController::disposing(
|
|
const lang::EventObject& rSource )
|
|
throw(uno::RuntimeException, std::exception)
|
|
{
|
|
if( !impl_releaseThisModel( rSource.Source ))
|
|
{
|
|
if( rSource.Source == m_xLayoutManagerEventBroadcaster )
|
|
m_xLayoutManagerEventBroadcaster.set( 0 );
|
|
}
|
|
}
|
|
|
|
void SAL_CALL ChartController::layoutEvent(
|
|
const lang::EventObject& aSource,
|
|
sal_Int16 eLayoutEvent,
|
|
const uno::Any& /* aInfo */ )
|
|
throw (uno::RuntimeException, std::exception)
|
|
{
|
|
if( eLayoutEvent == frame::LayoutManagerEvents::MERGEDMENUBAR )
|
|
{
|
|
Reference< frame::XLayoutManager > xLM( aSource.Source, uno::UNO_QUERY );
|
|
if( xLM.is())
|
|
{
|
|
xLM->createElement( "private:resource/statusbar/statusbar" );
|
|
xLM->requestElement( "private:resource/statusbar/statusbar" );
|
|
}
|
|
}
|
|
}
|
|
|
|
// XDispatchProvider (required interface)
|
|
|
|
namespace
|
|
{
|
|
|
|
bool lcl_isFormatObjectCommand( const OString& aCommand )
|
|
{
|
|
if( aCommand == "MainTitle"
|
|
|| aCommand == "SubTitle"
|
|
|| aCommand == "XTitle"
|
|
|| aCommand == "YTitle"
|
|
|| aCommand == "ZTitle"
|
|
|| aCommand == "SecondaryXTitle"
|
|
|| aCommand == "SecondaryYTitle"
|
|
|| aCommand == "AllTitles"
|
|
|| aCommand == "DiagramAxisX"
|
|
|| aCommand == "DiagramAxisY"
|
|
|| aCommand == "DiagramAxisZ"
|
|
|| aCommand == "DiagramAxisA"
|
|
|| aCommand == "DiagramAxisB"
|
|
|| aCommand == "DiagramAxisAll"
|
|
|| aCommand == "DiagramGridXMain"
|
|
|| aCommand == "DiagramGridYMain"
|
|
|| aCommand == "DiagramGridZMain"
|
|
|| aCommand == "DiagramGridXHelp"
|
|
|| aCommand == "DiagramGridYHelp"
|
|
|| aCommand == "DiagramGridZHelp"
|
|
|| aCommand == "DiagramGridAll"
|
|
|
|
|| aCommand == "DiagramWall"
|
|
|| aCommand == "DiagramFloor"
|
|
|| aCommand == "DiagramArea"
|
|
|| aCommand == "Legend"
|
|
|
|
|| aCommand == "FormatWall"
|
|
|| aCommand == "FormatFloor"
|
|
|| aCommand == "FormatChartArea"
|
|
|| aCommand == "FormatLegend"
|
|
|
|
|| aCommand == "FormatTitle"
|
|
|| aCommand == "FormatAxis"
|
|
|| aCommand == "FormatDataSeries"
|
|
|| aCommand == "FormatDataPoint"
|
|
|| aCommand == "FormatDataLabels"
|
|
|| aCommand == "FormatDataLabel"
|
|
|| aCommand == "FormatXErrorBars"
|
|
|| aCommand == "FormatYErrorBars"
|
|
|| aCommand == "FormatMeanValue"
|
|
|| aCommand == "FormatTrendline"
|
|
|| aCommand == "FormatTrendlineEquation"
|
|
|| aCommand == "FormatStockLoss"
|
|
|| aCommand == "FormatStockGain"
|
|
|| aCommand == "FormatMajorGrid"
|
|
|| aCommand == "FormatMinorGrid"
|
|
)
|
|
return true;
|
|
|
|
// else
|
|
return false;
|
|
}
|
|
|
|
} // anonymous namespace
|
|
|
|
uno::Reference<frame::XDispatch> SAL_CALL
|
|
ChartController::queryDispatch(
|
|
const util::URL& rURL,
|
|
const OUString& rTargetFrameName,
|
|
sal_Int32 /* nSearchFlags */)
|
|
throw(uno::RuntimeException, std::exception)
|
|
{
|
|
if ( !m_aLifeTimeManager.impl_isDisposed() && getModel().is() )
|
|
{
|
|
if( !rTargetFrameName.isEmpty() && rTargetFrameName == "_self" )
|
|
return m_aDispatchContainer.getDispatchForURL( rURL );
|
|
}
|
|
return uno::Reference< frame::XDispatch > ();
|
|
}
|
|
|
|
uno::Sequence<uno::Reference<frame::XDispatch > >
|
|
ChartController::queryDispatches(
|
|
const uno::Sequence<frame::DispatchDescriptor>& xDescripts )
|
|
throw(uno::RuntimeException, std::exception)
|
|
{
|
|
if ( !m_aLifeTimeManager.impl_isDisposed() )
|
|
{
|
|
return m_aDispatchContainer.getDispatchesForURLs( xDescripts );
|
|
}
|
|
return uno::Sequence<uno::Reference<frame::XDispatch > > ();
|
|
}
|
|
|
|
// frame::XDispatch
|
|
|
|
void SAL_CALL ChartController::dispatch(
|
|
const util::URL& rURL,
|
|
const uno::Sequence< beans::PropertyValue >& rArgs )
|
|
throw (uno::RuntimeException, std::exception)
|
|
{
|
|
//@todo avoid OString
|
|
OString aCommand( OUStringToOString( rURL.Path, RTL_TEXTENCODING_ASCII_US ) );
|
|
|
|
if(aCommand == "Paste")
|
|
this->executeDispatch_Paste();
|
|
else if(aCommand == "Copy" )
|
|
this->executeDispatch_Copy();
|
|
else if(aCommand == "Cut" )
|
|
this->executeDispatch_Cut();
|
|
else if(aCommand == "DataRanges" )
|
|
this->executeDispatch_SourceData();
|
|
else if(aCommand == "Update" ) //Update Chart
|
|
{
|
|
ChartViewHelper::setViewToDirtyState( getModel() );
|
|
SolarMutexGuard aGuard;
|
|
if( m_pChartWindow )
|
|
m_pChartWindow->Invalidate();
|
|
}
|
|
else if(aCommand == "DiagramData" )
|
|
this->executeDispatch_EditData();
|
|
//insert objects
|
|
else if( aCommand == "InsertTitles"
|
|
|| aCommand == "InsertMenuTitles")
|
|
this->executeDispatch_InsertTitles();
|
|
else if( aCommand == "InsertMenuLegend" )
|
|
this->executeDispatch_OpenLegendDialog();
|
|
else if( aCommand == "InsertLegend" )
|
|
this->executeDispatch_InsertLegend();
|
|
else if( aCommand == "DeleteLegend" )
|
|
this->executeDispatch_DeleteLegend();
|
|
else if( aCommand == "InsertMenuDataLabels" )
|
|
this->executeDispatch_InsertMenu_DataLabels();
|
|
else if( aCommand == "InsertMenuAxes"
|
|
|| aCommand == "InsertRemoveAxes" )
|
|
this->executeDispatch_InsertAxes();
|
|
else if( aCommand == "InsertMenuGrids" )
|
|
this->executeDispatch_InsertGrid();
|
|
else if( aCommand == "InsertMenuTrendlines" )
|
|
this->executeDispatch_InsertMenu_Trendlines();
|
|
else if( aCommand == "InsertMenuMeanValues" )
|
|
this->executeDispatch_InsertMenu_MeanValues();
|
|
else if( aCommand == "InsertMenuXErrorBars" )
|
|
this->executeDispatch_InsertErrorBars(false);
|
|
else if( aCommand == "InsertMenuYErrorBars" )
|
|
this->executeDispatch_InsertErrorBars(true);
|
|
else if( aCommand == "InsertSymbol" )
|
|
this->executeDispatch_InsertSpecialCharacter();
|
|
else if( aCommand == "InsertTrendline" )
|
|
this->executeDispatch_InsertTrendline();
|
|
else if( aCommand == "DeleteTrendline" )
|
|
this->executeDispatch_DeleteTrendline();
|
|
else if( aCommand == "InsertMeanValue" )
|
|
this->executeDispatch_InsertMeanValue();
|
|
else if( aCommand == "DeleteMeanValue" )
|
|
this->executeDispatch_DeleteMeanValue();
|
|
else if( aCommand == "InsertXErrorBars" )
|
|
this->executeDispatch_InsertErrorBars(false);
|
|
else if( aCommand == "InsertYErrorBars" )
|
|
this->executeDispatch_InsertErrorBars(true);
|
|
else if( aCommand == "DeleteXErrorBars" )
|
|
this->executeDispatch_DeleteErrorBars(false);
|
|
else if( aCommand == "DeleteYErrorBars" )
|
|
this->executeDispatch_DeleteErrorBars(true);
|
|
else if( aCommand == "InsertTrendlineEquation" )
|
|
this->executeDispatch_InsertTrendlineEquation();
|
|
else if( aCommand == "DeleteTrendlineEquation" )
|
|
this->executeDispatch_DeleteTrendlineEquation();
|
|
else if( aCommand == "InsertTrendlineEquationAndR2" )
|
|
this->executeDispatch_InsertTrendlineEquation( true );
|
|
else if( aCommand == "InsertR2Value" )
|
|
this->executeDispatch_InsertR2Value();
|
|
else if( aCommand == "DeleteR2Value")
|
|
this->executeDispatch_DeleteR2Value();
|
|
else if( aCommand == "InsertDataLabels" )
|
|
this->executeDispatch_InsertDataLabels();
|
|
else if( aCommand == "InsertDataLabel" )
|
|
this->executeDispatch_InsertDataLabel();
|
|
else if( aCommand == "DeleteDataLabels")
|
|
this->executeDispatch_DeleteDataLabels();
|
|
else if( aCommand == "DeleteDataLabel" )
|
|
this->executeDispatch_DeleteDataLabel();
|
|
else if( aCommand == "ResetAllDataPoints" )
|
|
this->executeDispatch_ResetAllDataPoints();
|
|
else if( aCommand == "ResetDataPoint" )
|
|
this->executeDispatch_ResetDataPoint();
|
|
else if( aCommand == "InsertAxis" )
|
|
this->executeDispatch_InsertAxis();
|
|
else if( aCommand == "InsertMajorGrid" )
|
|
this->executeDispatch_InsertMajorGrid();
|
|
else if( aCommand == "InsertMinorGrid" )
|
|
this->executeDispatch_InsertMinorGrid();
|
|
else if( aCommand == "InsertAxisTitle" )
|
|
this->executeDispatch_InsertAxisTitle();
|
|
else if( aCommand == "DeleteAxis" )
|
|
this->executeDispatch_DeleteAxis();
|
|
else if( aCommand == "DeleteMajorGrid")
|
|
this->executeDispatch_DeleteMajorGrid();
|
|
else if( aCommand == "DeleteMinorGrid" )
|
|
this->executeDispatch_DeleteMinorGrid();
|
|
//format objects
|
|
else if( aCommand == "FormatSelection" )
|
|
this->executeDispatch_ObjectProperties();
|
|
else if( aCommand == "TransformDialog" )
|
|
{
|
|
if ( isShapeContext() )
|
|
{
|
|
this->impl_ShapeControllerDispatch( rURL, rArgs );
|
|
}
|
|
else
|
|
{
|
|
this->executeDispatch_PositionAndSize();
|
|
}
|
|
}
|
|
else if( lcl_isFormatObjectCommand(aCommand) )
|
|
this->executeDispatch_FormatObject(rURL.Path);
|
|
//more format
|
|
else if( aCommand == "DiagramType" )
|
|
this->executeDispatch_ChartType();
|
|
else if( aCommand == "View3D" )
|
|
this->executeDispatch_View3D();
|
|
else if ( aCommand == "Forward" )
|
|
{
|
|
if ( isShapeContext() )
|
|
{
|
|
this->impl_ShapeControllerDispatch( rURL, rArgs );
|
|
}
|
|
else
|
|
{
|
|
this->executeDispatch_MoveSeries( true );
|
|
}
|
|
}
|
|
else if ( aCommand == "Backward" )
|
|
{
|
|
if ( isShapeContext() )
|
|
{
|
|
this->impl_ShapeControllerDispatch( rURL, rArgs );
|
|
}
|
|
else
|
|
{
|
|
this->executeDispatch_MoveSeries( false );
|
|
}
|
|
}
|
|
else if( aCommand == "NewArrangement")
|
|
this->executeDispatch_NewArrangement();
|
|
else if( aCommand == "ToggleLegend" )
|
|
this->executeDispatch_ToggleLegend();
|
|
else if( aCommand == "ToggleGridHorizontal" )
|
|
this->executeDispatch_ToggleGridHorizontal();
|
|
else if( aCommand == "ToggleGridVertical" )
|
|
this->executeDispatch_ToggleGridVertical();
|
|
else if( aCommand == "ScaleText" )
|
|
this->executeDispatch_ScaleText();
|
|
else if( aCommand == "StatusBarVisible" )
|
|
{
|
|
// workaround: this should not be necessary.
|
|
uno::Reference< beans::XPropertySet > xPropSet( m_xFrame, uno::UNO_QUERY );
|
|
if( xPropSet.is() )
|
|
{
|
|
uno::Reference< ::com::sun::star::frame::XLayoutManager > xLayoutManager;
|
|
xPropSet->getPropertyValue( "LayoutManager" ) >>= xLayoutManager;
|
|
if ( xLayoutManager.is() )
|
|
{
|
|
bool bIsVisible( xLayoutManager->isElementVisible( "private:resource/statusbar/statusbar" ));
|
|
if( bIsVisible )
|
|
{
|
|
xLayoutManager->hideElement( "private:resource/statusbar/statusbar" );
|
|
xLayoutManager->destroyElement( "private:resource/statusbar/statusbar" );
|
|
}
|
|
else
|
|
{
|
|
xLayoutManager->createElement( "private:resource/statusbar/statusbar" );
|
|
xLayoutManager->showElement( "private:resource/statusbar/statusbar" );
|
|
}
|
|
// @todo: update menu state (checkmark next to "Statusbar").
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void SAL_CALL ChartController::addStatusListener(
|
|
const uno::Reference<frame::XStatusListener >& /* xControl */,
|
|
const util::URL& /* aURL */ )
|
|
throw (uno::RuntimeException, std::exception)
|
|
{
|
|
//@todo
|
|
}
|
|
|
|
void SAL_CALL ChartController::removeStatusListener(
|
|
const uno::Reference<frame::XStatusListener >& /* xControl */,
|
|
const util::URL& /* aURL */ )
|
|
throw (uno::RuntimeException, std::exception)
|
|
{
|
|
//@todo
|
|
}
|
|
|
|
// XContextMenuInterception (optional interface)
|
|
void SAL_CALL ChartController::registerContextMenuInterceptor(
|
|
const uno::Reference< ui::XContextMenuInterceptor >& /* xInterceptor */)
|
|
throw(uno::RuntimeException, std::exception)
|
|
{
|
|
//@todo
|
|
}
|
|
|
|
void SAL_CALL ChartController::releaseContextMenuInterceptor(
|
|
const uno::Reference< ui::XContextMenuInterceptor > & /* xInterceptor */)
|
|
throw(uno::RuntimeException, std::exception)
|
|
{
|
|
//@todo
|
|
}
|
|
|
|
// ____ XEmbeddedClient ____
|
|
// implementation see: ChartController_EditData.cxx
|
|
|
|
void SAL_CALL ChartController::executeDispatch_ChartType()
|
|
{
|
|
// using assignment for broken gcc 3.3
|
|
UndoLiveUpdateGuard aUndoGuard = UndoLiveUpdateGuard(
|
|
SCH_RESSTR( STR_ACTION_EDIT_CHARTTYPE ), m_xUndoManager );
|
|
|
|
SolarMutexGuard aSolarGuard;
|
|
//prepare and open dialog
|
|
ChartTypeDialog aDlg( m_pChartWindow, getModel(), m_xCC );
|
|
if( aDlg.Execute() == RET_OK )
|
|
{
|
|
impl_adaptDataSeriesAutoResize();
|
|
aUndoGuard.commit();
|
|
}
|
|
}
|
|
|
|
void SAL_CALL ChartController::executeDispatch_SourceData()
|
|
{
|
|
//convert properties to ItemSet
|
|
uno::Reference< XChartDocument > xChartDoc( getModel(), uno::UNO_QUERY );
|
|
OSL_ENSURE( xChartDoc.is(), "Invalid XChartDocument" );
|
|
if( !xChartDoc.is())
|
|
return;
|
|
|
|
UndoLiveUpdateGuard aUndoGuard = UndoLiveUpdateGuard(
|
|
SCH_RESSTR(STR_ACTION_EDIT_DATA_RANGES), m_xUndoManager );
|
|
if( xChartDoc.is())
|
|
{
|
|
SolarMutexGuard aSolarGuard;
|
|
::chart::DataSourceDialog aDlg( m_pChartWindow, xChartDoc, m_xCC );
|
|
if( aDlg.Execute() == RET_OK )
|
|
{
|
|
impl_adaptDataSeriesAutoResize();
|
|
aUndoGuard.commit();
|
|
}
|
|
}
|
|
}
|
|
|
|
void SAL_CALL ChartController::executeDispatch_MoveSeries( bool bForward )
|
|
{
|
|
ControllerLockGuardUNO aCLGuard( getModel() );
|
|
|
|
//get selected series
|
|
OUString aObjectCID(m_aSelection.getSelectedCID());
|
|
uno::Reference< XDataSeries > xGivenDataSeries( ObjectIdentifier::getDataSeriesForCID( //yyy todo also legendentries and labels?
|
|
aObjectCID, getModel() ) );
|
|
|
|
UndoGuardWithSelection aUndoGuard(
|
|
ActionDescriptionProvider::createDescription(
|
|
(bForward ? ActionDescriptionProvider::MOVE_TOTOP : ActionDescriptionProvider::MOVE_TOBOTTOM),
|
|
SCH_RESSTR(STR_OBJECT_DATASERIES)),
|
|
m_xUndoManager );
|
|
|
|
bool bChanged = DiagramHelper::moveSeries( ChartModelHelper::findDiagram( getModel() ), xGivenDataSeries, bForward );
|
|
if( bChanged )
|
|
{
|
|
m_aSelection.setSelection( ObjectIdentifier::getMovedSeriesCID( aObjectCID, bForward ) );
|
|
aUndoGuard.commit();
|
|
}
|
|
}
|
|
|
|
// ____ XMultiServiceFactory ____
|
|
uno::Reference< uno::XInterface > SAL_CALL
|
|
ChartController::createInstance( const OUString& aServiceSpecifier )
|
|
throw (uno::Exception,
|
|
uno::RuntimeException, std::exception)
|
|
{
|
|
uno::Reference< uno::XInterface > xResult;
|
|
|
|
if( aServiceSpecifier == CHART_ACCESSIBLE_TEXT_SERVICE_NAME )
|
|
xResult.set( impl_createAccessibleTextContext());
|
|
return xResult;
|
|
}
|
|
|
|
uno::Reference< uno::XInterface > SAL_CALL
|
|
ChartController::createInstanceWithArguments(
|
|
const OUString& ServiceSpecifier,
|
|
const uno::Sequence< uno::Any >& /* Arguments */ )
|
|
throw (uno::Exception, uno::RuntimeException, std::exception)
|
|
{
|
|
// ignore Arguments
|
|
return createInstance( ServiceSpecifier );
|
|
}
|
|
|
|
uno::Sequence< OUString > SAL_CALL
|
|
ChartController::getAvailableServiceNames()
|
|
throw (uno::RuntimeException, std::exception)
|
|
{
|
|
uno::Sequence< OUString > aServiceNames(1);
|
|
aServiceNames[0] = CHART_ACCESSIBLE_TEXT_SERVICE_NAME;
|
|
return aServiceNames;
|
|
}
|
|
|
|
// ____ XModifyListener ____
|
|
void SAL_CALL ChartController::modified(
|
|
const lang::EventObject& /* aEvent */ )
|
|
throw (uno::RuntimeException, std::exception)
|
|
{
|
|
// the source can also be a subobject of the ChartModel
|
|
// @todo: change the source in ChartModel to always be the model itself ?
|
|
//todo? update menu states ?
|
|
}
|
|
|
|
IMPL_LINK( ChartController, NotifyUndoActionHdl, SdrUndoAction*, pUndoAction )
|
|
{
|
|
ENSURE_OR_RETURN( pUndoAction, "invalid Undo action", 1L );
|
|
|
|
OUString aObjectCID = m_aSelection.getSelectedCID();
|
|
if ( aObjectCID.isEmpty() )
|
|
{
|
|
try
|
|
{
|
|
const Reference< document::XUndoManagerSupplier > xSuppUndo( getModel(), uno::UNO_QUERY_THROW );
|
|
const Reference< document::XUndoManager > xUndoManager( xSuppUndo->getUndoManager(), uno::UNO_QUERY_THROW );
|
|
const Reference< document::XUndoAction > xAction( new impl::ShapeUndoElement( *pUndoAction ) );
|
|
xUndoManager->addUndoAction( xAction );
|
|
}
|
|
catch( const uno::Exception& )
|
|
{
|
|
DBG_UNHANDLED_EXCEPTION();
|
|
}
|
|
}
|
|
return 0L;
|
|
}
|
|
|
|
DrawModelWrapper* ChartController::GetDrawModelWrapper()
|
|
{
|
|
if( !m_pDrawModelWrapper.get() )
|
|
{
|
|
ExplicitValueProvider* pProvider = ExplicitValueProvider::getExplicitValueProvider( m_xChartView );
|
|
if( pProvider )
|
|
m_pDrawModelWrapper = pProvider->getDrawModelWrapper();
|
|
if ( m_pDrawModelWrapper.get() )
|
|
{
|
|
m_pDrawModelWrapper->getSdrModel().SetNotifyUndoActionHdl( LINK( this, ChartController, NotifyUndoActionHdl ) );
|
|
}
|
|
}
|
|
return m_pDrawModelWrapper.get();
|
|
}
|
|
|
|
DrawViewWrapper* ChartController::GetDrawViewWrapper()
|
|
{
|
|
if ( !m_pDrawViewWrapper )
|
|
{
|
|
impl_createDrawViewController();
|
|
}
|
|
return m_pDrawViewWrapper;
|
|
}
|
|
|
|
void ChartController::queryGL3DChart()
|
|
{
|
|
m_bGL3DChart = false;
|
|
|
|
uno::Reference<frame::XModel> xModel = m_aModel->getModel();
|
|
if (!xModel.is())
|
|
return;
|
|
|
|
uno::Reference<XChartDocument> xChartDoc(xModel, uno::UNO_QUERY);
|
|
if (!xChartDoc.is())
|
|
return;
|
|
|
|
uno::Reference<chart2::XDiagram> xDiagram = xChartDoc->getFirstDiagram();
|
|
m_bGL3DChart = GL3DHelper::isGL3DDiagram(xDiagram);
|
|
}
|
|
|
|
void ChartController::executeGL3D_Tracking( const TrackingEvent& /*rTEvt*/ )
|
|
{
|
|
}
|
|
|
|
void ChartController::executeGL3D_Command( const CommandEvent& /*rCEvt*/ )
|
|
{
|
|
}
|
|
|
|
bool ChartController::executeGL3D_KeyInput( const KeyEvent& /*rKEvt*/ )
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void ChartController::executeGL3D_MouseButtonUp( const MouseEvent& /*rMEvt*/ )
|
|
{
|
|
}
|
|
|
|
void ChartController::executeGL3D_MouseButtonDown( const MouseEvent& /*rMEvt*/ )
|
|
{
|
|
}
|
|
|
|
void ChartController::executeGL3D_MouseMove( const MouseEvent& /*rMEvt*/ )
|
|
{
|
|
}
|
|
|
|
uno::Reference< XAccessible > ChartController::CreateAccessible()
|
|
{
|
|
uno::Reference< XAccessible > xResult = new AccessibleChartView( m_xCC, GetDrawViewWrapper() );
|
|
impl_initializeAccessible( uno::Reference< lang::XInitialization >( xResult, uno::UNO_QUERY ) );
|
|
return xResult;
|
|
}
|
|
|
|
void ChartController::impl_invalidateAccessible()
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
if( m_pChartWindow )
|
|
{
|
|
Reference< lang::XInitialization > xInit( m_pChartWindow->GetAccessible(false), uno::UNO_QUERY );
|
|
if(xInit.is())
|
|
{
|
|
uno::Sequence< uno::Any > aArguments(3);//empty arguments -> invalid accessible
|
|
xInit->initialize(aArguments);
|
|
}
|
|
}
|
|
}
|
|
void ChartController::impl_initializeAccessible()
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
if( m_pChartWindow )
|
|
this->impl_initializeAccessible( Reference< lang::XInitialization >( m_pChartWindow->GetAccessible(false), uno::UNO_QUERY ) );
|
|
}
|
|
void ChartController::impl_initializeAccessible( const uno::Reference< lang::XInitialization >& xInit )
|
|
{
|
|
if(xInit.is())
|
|
{
|
|
uno::Sequence< uno::Any > aArguments(5);
|
|
uno::Reference<view::XSelectionSupplier> xSelectionSupplier(this);
|
|
aArguments[0]=uno::makeAny(xSelectionSupplier);
|
|
uno::Reference<frame::XModel> xModel(getModel());
|
|
aArguments[1]=uno::makeAny(xModel);
|
|
aArguments[2]=uno::makeAny(m_xChartView);
|
|
uno::Reference< XAccessible > xParent;
|
|
{
|
|
SolarMutexGuard aGuard;
|
|
if( m_pChartWindow )
|
|
{
|
|
Window* pParentWin( m_pChartWindow->GetAccessibleParentWindow());
|
|
if( pParentWin )
|
|
xParent.set( pParentWin->GetAccessible());
|
|
}
|
|
}
|
|
aArguments[3]=uno::makeAny(xParent);
|
|
aArguments[4]=uno::makeAny(m_xViewWindow);
|
|
|
|
xInit->initialize(aArguments);
|
|
}
|
|
}
|
|
|
|
::std::set< OUString > ChartController::impl_getAvailableCommands()
|
|
{
|
|
return ::comphelper::MakeSet< OUString >
|
|
// commands for container forward
|
|
( "AddDirect" ) ( "NewDoc" ) ( "Open" )
|
|
( "Save" ) ( "SaveAs" ) ( "SendMail" )
|
|
( "EditDoc" ) ( "ExportDirectToPDF" ) ( "PrintDefault" )
|
|
|
|
// own commands
|
|
( "Cut" ) ( "Copy" ) ( "Paste" )
|
|
( "DataRanges" ) ( "DiagramData" )
|
|
// insert objects
|
|
( "InsertMenuTitles" ) ( "InsertTitles" )
|
|
( "InsertMenuLegend" ) ( "InsertLegend" ) ( "DeleteLegend" )
|
|
( "InsertMenuDataLabels" )
|
|
( "InsertMenuAxes" ) ( "InsertRemoveAxes" ) ( "InsertMenuGrids" )
|
|
( "InsertSymbol" )
|
|
( "InsertTrendlineEquation" ) ( "InsertTrendlineEquationAndR2" )
|
|
( "InsertR2Value" ) ( "DeleteR2Value" )
|
|
( "InsertMenuTrendlines" ) ( "InsertTrendline" )
|
|
( "InsertMenuMeanValues" ) ( "InsertMeanValue" )
|
|
( "InsertMenuXErrorBars" ) ( "InsertXErrorBars" )
|
|
( "InsertMenuYErrorBars" ) ( "InsertYErrorBars" )
|
|
( "InsertDataLabels" ) ( "InsertDataLabel" )
|
|
( "DeleteTrendline" ) ( "DeleteMeanValue" ) ( "DeleteTrendlineEquation" )
|
|
( "DeleteXErrorBars" ) ( "DeleteYErrorBars" )
|
|
( "DeleteDataLabels" ) ( "DeleteDataLabel" )
|
|
//format objects
|
|
( "FormatSelection" ) ( "TransformDialog" )
|
|
( "DiagramType" ) ( "View3D" )
|
|
( "Forward" ) ( "Backward" )
|
|
( "MainTitle" ) ( "SubTitle" )
|
|
( "XTitle" ) ( "YTitle" ) ( "ZTitle" )
|
|
( "SecondaryXTitle" ) ( "SecondaryYTitle" )
|
|
( "AllTitles" ) ( "Legend" )
|
|
( "DiagramAxisX" ) ( "DiagramAxisY" ) ( "DiagramAxisZ" )
|
|
( "DiagramAxisA" ) ( "DiagramAxisB" ) ( "DiagramAxisAll" )
|
|
( "DiagramGridXMain" ) ( "DiagramGridYMain" ) ( "DiagramGridZMain" )
|
|
( "DiagramGridXHelp" ) ( "DiagramGridYHelp" ) ( "DiagramGridZHelp" )
|
|
( "DiagramGridAll" )
|
|
( "DiagramWall" ) ( "DiagramFloor" ) ( "DiagramArea" )
|
|
|
|
//context menu - format objects entries
|
|
( "FormatWall" ) ( "FormatFloor" ) ( "FormatChartArea" )
|
|
( "FormatLegend" )
|
|
|
|
( "FormatAxis" ) ( "FormatTitle" )
|
|
( "FormatDataSeries" ) ( "FormatDataPoint" )
|
|
( "ResetAllDataPoints" ) ( "ResetDataPoint" )
|
|
( "FormatDataLabels" ) ( "FormatDataLabel" )
|
|
( "FormatMeanValue" ) ( "FormatTrendline" ) ( "FormatTrendlineEquation" )
|
|
( "FormatXErrorBars" ) ( "FormatYErrorBars" )
|
|
( "FormatStockLoss" ) ( "FormatStockGain" )
|
|
|
|
( "FormatMajorGrid" ) ( "InsertMajorGrid" ) ( "DeleteMajorGrid" )
|
|
( "FormatMinorGrid" ) ( "InsertMinorGrid" ) ( "DeleteMinorGrid" )
|
|
( "InsertAxis" ) ( "DeleteAxis" ) ( "InsertAxisTitle" )
|
|
|
|
// toolbar commands
|
|
( "ToggleGridHorizontal" ) ( "ToggleGridVertical" ) ( "ToggleLegend" ) ( "ScaleText" )
|
|
( "NewArrangement" ) ( "Update" )
|
|
( "DefaultColors" ) ( "BarWidth" ) ( "NumberOfLines" )
|
|
( "ArrangeRow" )
|
|
( "StatusBarVisible" )
|
|
( "ChartElementSelector" )
|
|
;
|
|
}
|
|
|
|
} //namespace chart
|
|
|
|
extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL
|
|
com_sun_star_comp_chart2_ChartController_get_implementation(css::uno::XComponentContext *context,
|
|
css::uno::Sequence<css::uno::Any> const &)
|
|
{
|
|
return cppu::acquire(new chart::ChartController(context));
|
|
}
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|