3c01203ea6
Change-Id: I8e0889200d1a1c36e53022a74792728efd66c2fc
422 lines
23 KiB
C++
422 lines
23 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 .
|
|
*/
|
|
#ifndef INCLUDED_SW_INC_UNOCHART_HXX
|
|
#define INCLUDED_SW_INC_UNOCHART_HXX
|
|
|
|
#include <map>
|
|
#include <set>
|
|
|
|
#include <com/sun/star/lang/XUnoTunnel.hpp>
|
|
#include <com/sun/star/chart2/data/XDataProvider.hpp>
|
|
#include <com/sun/star/chart2/data/XDataSource.hpp>
|
|
#include <com/sun/star/chart2/data/XDataSequence.hpp>
|
|
#include <com/sun/star/chart2/data/XTextualDataSequence.hpp>
|
|
#include <com/sun/star/chart2/data/XNumericalDataSequence.hpp>
|
|
#include <com/sun/star/chart2/data/XLabeledDataSequence2.hpp>
|
|
#include <com/sun/star/chart2/data/XRangeXMLConversion.hpp>
|
|
#include <com/sun/star/chart2/data/DataSequenceRole.hpp>
|
|
#include <com/sun/star/lang/XServiceInfo.hpp>
|
|
#include <com/sun/star/beans/XPropertySet.hpp>
|
|
#include <com/sun/star/util/XCloneable.hpp>
|
|
#include <com/sun/star/lang/XComponent.hpp>
|
|
#include <com/sun/star/lang/XEventListener.hpp>
|
|
#include <com/sun/star/util/XModifiable.hpp>
|
|
#include <com/sun/star/util/XModifyBroadcaster.hpp>
|
|
#include <com/sun/star/util/XModifyListener.hpp>
|
|
#include <com/sun/star/chart/ChartDataRowSource.hpp>
|
|
|
|
#include <cppuhelper/interfacecontainer.h>
|
|
#include <cppuhelper/implbase2.hxx>
|
|
#include <cppuhelper/implbase4.hxx>
|
|
#include <cppuhelper/implbase6.hxx>
|
|
#include <cppuhelper/implbase10.hxx>
|
|
#include <cppuhelper/weakref.hxx>
|
|
|
|
#include <tools/link.hxx>
|
|
#include <vcl/timer.hxx>
|
|
|
|
#include <calbck.hxx>
|
|
|
|
|
|
class SfxItemPropertySet;
|
|
class SwDoc;
|
|
class SwTable;
|
|
class SwTableBox;
|
|
class SwUnoCrsr;
|
|
struct SwRangeDescriptor;
|
|
class SwSelBoxes;
|
|
class SwFrmFmt;
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
bool FillRangeDescriptor( SwRangeDescriptor &rDesc, const OUString &rCellRangeName );
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
class SwChartHelper
|
|
{
|
|
public:
|
|
static void DoUpdateAllCharts( SwDoc* pDoc );
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
class SwChartLockController_Helper
|
|
{
|
|
SwDoc *pDoc;
|
|
|
|
DECL_LINK( DoUnlockAllCharts, Timer * );
|
|
Timer aUnlockTimer; // timer to unlock chart controllers
|
|
bool bIsLocked;
|
|
|
|
|
|
// disallow use of d-tor, copy c-tor and assignment operator
|
|
SwChartLockController_Helper( const SwChartLockController_Helper & );
|
|
SwChartLockController_Helper & operator = ( const SwChartLockController_Helper & );
|
|
|
|
void LockUnlockAllCharts( sal_Bool bLock );
|
|
void LockAllCharts() { LockUnlockAllCharts( sal_True ); };
|
|
void UnlockAllCharts() { LockUnlockAllCharts( sal_False ); };
|
|
|
|
public:
|
|
SwChartLockController_Helper( SwDoc *pDocument );
|
|
~SwChartLockController_Helper();
|
|
|
|
void StartOrContinueLocking();
|
|
void Disconnect();
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
typedef cppu::WeakImplHelper4
|
|
<
|
|
::com::sun::star::chart2::data::XDataProvider,
|
|
::com::sun::star::chart2::data::XRangeXMLConversion,
|
|
::com::sun::star::lang::XComponent,
|
|
::com::sun::star::lang::XServiceInfo
|
|
>
|
|
SwChartDataProviderBaseClass;
|
|
|
|
class SwChartDataProvider :
|
|
public SwChartDataProviderBaseClass,
|
|
public SwClient
|
|
{
|
|
|
|
// used to keep weak-references to all data-sequences of a single table
|
|
// see set definition below...
|
|
struct lt_DataSequenceRef
|
|
{
|
|
bool operator()( ::com::sun::star::uno::WeakReference< ::com::sun::star::chart2::data::XDataSequence > xWRef1, ::com::sun::star::uno::WeakReference< ::com::sun::star::chart2::data::XDataSequence > xWRef2 ) const
|
|
{
|
|
::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSequence > xRef1( xWRef1 );
|
|
::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSequence > xRef2( xWRef2 );
|
|
return xRef1.get() < xRef2.get();
|
|
}
|
|
};
|
|
typedef std::set< ::com::sun::star::uno::WeakReference < ::com::sun::star::chart2::data::XDataSequence >, lt_DataSequenceRef > Set_DataSequenceRef_t;
|
|
|
|
// map of data-sequence sets for each table
|
|
struct lt_SwTable_Ptr
|
|
{
|
|
bool operator()( const SwTable *p1, const SwTable *p2 ) const
|
|
{
|
|
return p1 < p2;
|
|
}
|
|
};
|
|
typedef std::map< const SwTable *, Set_DataSequenceRef_t, lt_SwTable_Ptr > Map_Set_DataSequenceRef_t;
|
|
|
|
|
|
// map of all data-sequences provided directly or indirectly (e.g. via
|
|
// data-source) by this object. Since there is only one object of this type
|
|
// for each document it should hold references to all used data-sequences for
|
|
// all tables of the document.
|
|
mutable Map_Set_DataSequenceRef_t aDataSequences;
|
|
|
|
::cppu::OInterfaceContainerHelper aEvtListeners;
|
|
const SwDoc * pDoc;
|
|
sal_Bool bDisposed;
|
|
|
|
|
|
// disallow use of c-tor and assignment operator
|
|
SwChartDataProvider( const SwChartDataProvider & );
|
|
SwChartDataProvider & operator = ( const SwChartDataProvider & );
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSource > SAL_CALL Impl_createDataSource( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& aArguments, sal_Bool bTestOnly = sal_False ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
|
::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSequence > SAL_CALL Impl_createDataSequenceByRangeRepresentation( const OUString& aRangeRepresentation, sal_Bool bTestOnly = sal_False ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
|
|
|
OUString GetBrokenCellRangeForExport( const OUString &rCellRangeRepresentation );
|
|
|
|
protected:
|
|
//SwClient
|
|
virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew);
|
|
|
|
public:
|
|
SwChartDataProvider( const SwDoc* pDoc );
|
|
virtual ~SwChartDataProvider();
|
|
|
|
// XDataProvider
|
|
virtual ::sal_Bool SAL_CALL createDataSourcePossible( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& aArguments ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSource > SAL_CALL createDataSource( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& aArguments ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
|
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL detectArguments( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSource >& xDataSource ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual ::sal_Bool SAL_CALL createDataSequenceByRangeRepresentationPossible( const OUString& aRangeRepresentation ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSequence > SAL_CALL createDataSequenceByRangeRepresentation( const OUString& aRangeRepresentation ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::sheet::XRangeSelection > SAL_CALL getRangeSelection( ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
// XRangeXMLConversion
|
|
virtual OUString SAL_CALL convertRangeToXML( const OUString& aRangeRepresentation ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
|
virtual OUString SAL_CALL convertRangeFromXML( const OUString& aXMLRange ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
|
|
|
|
// XComponent
|
|
virtual void SAL_CALL dispose( ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual void SAL_CALL addEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual void SAL_CALL removeEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& aListener ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
// XServiceInfo
|
|
virtual OUString SAL_CALL getImplementationName( ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
SwFrmFmt* GetFrmFmt() const { return (SwFrmFmt*)GetRegisteredIn(); }
|
|
|
|
void AddDataSequence( const SwTable &rTable, ::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSequence > &rxDataSequence );
|
|
void RemoveDataSequence( const SwTable &rTable, ::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSequence > &rxDataSequence );
|
|
|
|
// will send modifdied events for all data-sequences of the table
|
|
void InvalidateTable( const SwTable *pTable );
|
|
sal_Bool DeleteBox( const SwTable *pTable, const SwTableBox &rBox );
|
|
void DisposeAllDataSequences( const SwTable *pTable );
|
|
|
|
// functionality needed to get notified about new added rows/cols
|
|
void AddRowCols( const SwTable &rTable, const SwSelBoxes& rBoxes, sal_uInt16 nLines, sal_Bool bBehind );
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
typedef cppu::WeakImplHelper2
|
|
<
|
|
::com::sun::star::chart2::data::XDataSource,
|
|
::com::sun::star::lang::XServiceInfo
|
|
>
|
|
SwChartDataSourceBaseClass;
|
|
|
|
class SwChartDataSource :
|
|
public SwChartDataSourceBaseClass
|
|
{
|
|
com::sun::star::uno::Sequence<
|
|
com::sun::star::uno::Reference<
|
|
com::sun::star::chart2::data::XLabeledDataSequence > > aLDS;
|
|
|
|
// disallow use of c-tor and assignment operator
|
|
SwChartDataSource( const SwChartDataSource & );
|
|
SwChartDataSource & operator = ( const SwChartDataSource & );
|
|
|
|
public:
|
|
SwChartDataSource( const com::sun::star::uno::Sequence< com::sun::star::uno::Reference< com::sun::star::chart2::data::XLabeledDataSequence > > &rLDS );
|
|
virtual ~SwChartDataSource();
|
|
|
|
// XDataSource
|
|
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XLabeledDataSequence > > SAL_CALL getDataSequences( ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
// XServiceInfo
|
|
virtual OUString SAL_CALL getImplementationName( ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException);
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
typedef cppu::WeakImplHelper10
|
|
<
|
|
::com::sun::star::chart2::data::XDataSequence,
|
|
::com::sun::star::chart2::data::XTextualDataSequence,
|
|
::com::sun::star::chart2::data::XNumericalDataSequence,
|
|
::com::sun::star::util::XCloneable,
|
|
::com::sun::star::beans::XPropertySet,
|
|
::com::sun::star::lang::XServiceInfo,
|
|
::com::sun::star::lang::XUnoTunnel,
|
|
::com::sun::star::util::XModifiable,
|
|
::com::sun::star::lang::XEventListener,
|
|
::com::sun::star::lang::XComponent
|
|
>
|
|
SwChartDataSequenceBaseClass;
|
|
|
|
class SwChartDataSequence :
|
|
public SwChartDataSequenceBaseClass,
|
|
public SwClient
|
|
{
|
|
::cppu::OInterfaceContainerHelper aEvtListeners;
|
|
::cppu::OInterfaceContainerHelper aModifyListeners;
|
|
::com::sun::star::chart2::data::DataSequenceRole aRole;
|
|
|
|
OUString aRowLabelText;
|
|
OUString aColLabelText;
|
|
|
|
// holds a reference to the data-provider to guarantee it's lifetime last as
|
|
// long as the pointer may be used.
|
|
::com::sun::star::uno::Reference< com::sun::star::chart2::data::XDataProvider > xDataProvider;
|
|
SwChartDataProvider * pDataProvider;
|
|
|
|
SwUnoCrsr* pTblCrsr; // cursor spanned over cells to use
|
|
SwDepend aCursorDepend; //the cursor is removed after the doc has been removed
|
|
|
|
const SfxItemPropertySet* _pPropSet;
|
|
|
|
sal_Bool bDisposed;
|
|
|
|
// disallow use of c-tor and assignment operator
|
|
SwChartDataSequence( const SwChartDataSequence &rObj );
|
|
SwChartDataSequence & operator = ( const SwChartDataSequence & );
|
|
|
|
protected:
|
|
//SwClient
|
|
virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew);
|
|
|
|
public:
|
|
SwChartDataSequence( SwChartDataProvider &rProvider,
|
|
SwFrmFmt &rTblFmt,
|
|
SwUnoCrsr *pTableCursor );
|
|
virtual ~SwChartDataSequence();
|
|
|
|
static const ::com::sun::star::uno::Sequence< sal_Int8 > & getUnoTunnelId();
|
|
|
|
//XUnoTunnel
|
|
virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw(::com::sun::star::uno::RuntimeException);
|
|
|
|
// XDataSequence
|
|
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any > SAL_CALL getData( ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual OUString SAL_CALL getSourceRangeRepresentation( ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL generateLabel( ::com::sun::star::chart2::data::LabelOrigin eLabelOrigin ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual ::sal_Int32 SAL_CALL getNumberFormatKeyByIndex( ::sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
|
|
|
|
// XTextualDataSequence
|
|
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getTextualData( ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
// XNumericalDataSequence
|
|
virtual ::com::sun::star::uno::Sequence< double > SAL_CALL getNumericalData( ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
// XCloneable
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::util::XCloneable > SAL_CALL createClone( ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
// XPropertySet
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const ::com::sun::star::uno::Any& aValue ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
|
|
virtual ::com::sun::star::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
|
|
virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyChangeListener >& xListener ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
|
|
virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyChangeListener >& aListener ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
|
|
virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XVetoableChangeListener >& aListener ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
|
|
virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XVetoableChangeListener >& aListener ) throw (::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException);
|
|
|
|
// XServiceInfo
|
|
virtual OUString SAL_CALL getImplementationName( ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
// XModifiable
|
|
virtual ::sal_Bool SAL_CALL isModified( ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual void SAL_CALL setModified( ::sal_Bool bModified ) throw (::com::sun::star::beans::PropertyVetoException, ::com::sun::star::uno::RuntimeException);
|
|
|
|
// XModifyBroadcaster
|
|
virtual void SAL_CALL addModifyListener( const ::com::sun::star::uno::Reference< ::com::sun::star::util::XModifyListener >& aListener ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual void SAL_CALL removeModifyListener( const ::com::sun::star::uno::Reference< ::com::sun::star::util::XModifyListener >& aListener ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
// XEventListener
|
|
virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
// XComponent
|
|
virtual void SAL_CALL dispose( ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual void SAL_CALL addEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual void SAL_CALL removeEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& aListener ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
SwFrmFmt* GetFrmFmt() const { return (SwFrmFmt*)GetRegisteredIn(); }
|
|
sal_Bool DeleteBox( const SwTableBox &rBox );
|
|
|
|
void FillRangeDesc( SwRangeDescriptor &rRangeDesc ) const;
|
|
bool ExtendTo( bool bExtendCol, sal_Int32 nFirstNew, sal_Int32 nCount );
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
typedef cppu::WeakImplHelper4
|
|
<
|
|
::com::sun::star::chart2::data::XLabeledDataSequence2,
|
|
::com::sun::star::lang::XServiceInfo,
|
|
::com::sun::star::util::XModifyListener,
|
|
::com::sun::star::lang::XComponent
|
|
>
|
|
SwChartLabeledDataSequenceBaseClass;
|
|
|
|
class SwChartLabeledDataSequence :
|
|
public SwChartLabeledDataSequenceBaseClass
|
|
{
|
|
::cppu::OInterfaceContainerHelper aEvtListeners;
|
|
::cppu::OInterfaceContainerHelper aModifyListeners;
|
|
|
|
::com::sun::star::uno::Reference<
|
|
::com::sun::star::chart2::data::XDataSequence > xData;
|
|
::com::sun::star::uno::Reference<
|
|
::com::sun::star::chart2::data::XDataSequence > xLabels;
|
|
|
|
sal_Bool bDisposed;
|
|
|
|
// disallow use of c-tor and assignment operator
|
|
SwChartLabeledDataSequence( const SwChartLabeledDataSequence & );
|
|
SwChartLabeledDataSequence & operator = ( const SwChartLabeledDataSequence & );
|
|
|
|
void SetDataSequence( ::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSequence >& rxDest, const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSequence >& rxSource );
|
|
|
|
|
|
public:
|
|
SwChartLabeledDataSequence();
|
|
virtual ~SwChartLabeledDataSequence();
|
|
|
|
// XLabeledDataSequence
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSequence > SAL_CALL getValues( ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual void SAL_CALL setValues( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSequence >& xSequence ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSequence > SAL_CALL getLabel( ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual void SAL_CALL setLabel( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XDataSequence >& xSequence ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
// XCloneable
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::util::XCloneable > SAL_CALL createClone( ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
// XServiceInfo
|
|
virtual OUString SAL_CALL getImplementationName( ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
// XEventListener
|
|
virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
// XModifyListener
|
|
virtual void SAL_CALL modified( const ::com::sun::star::lang::EventObject& aEvent ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
// XModifyBroadcaster
|
|
virtual void SAL_CALL addModifyListener( const ::com::sun::star::uno::Reference< ::com::sun::star::util::XModifyListener >& aListener ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual void SAL_CALL removeModifyListener( const ::com::sun::star::uno::Reference< ::com::sun::star::util::XModifyListener >& aListener ) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
// XComponent
|
|
virtual void SAL_CALL dispose( ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual void SAL_CALL addEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& xListener ) throw (::com::sun::star::uno::RuntimeException);
|
|
virtual void SAL_CALL removeEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& aListener ) throw (::com::sun::star::uno::RuntimeException);
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|