Patches contributed by: Armin Le Grand.
#118558# Correcting OLE attributes of LO3.4 at load time by loading as OOo3.3, details see task.
http://svn.apache.org/viewvc?view=revision&revision=1195906
#118485# - Styles for OLEs are not saved.
http://svn.apache.org/viewvc?view=revision&revision=1182166
#118898# Adapted ImpGraphic::ImplGetBitmap to correctly convert metafiles
http://svn.apache.org/viewvc?view=revision&revision=1293316
#119337# Solves the wrong get/setPropertyValue calls in
SvxShapeText (and thus in SvxOle2Shape)
http://svn.apache.org/viewvc?view=revision&revision=1344156
Patches contributed by Mathias Bauer (and others)
gnumake4 work variously
http://svn.apache.org/viewvc?view=revision&revision=1394707
http://svn.apache.org/viewvc?view=revision&revision=1394326
cws mba34issues01: #i117717#: remove wrong assertion
http://svn.apache.org/viewvc?view=revision&revision=1172349
Patch contributed by Herbert Duerr
goodbye Registration and License dialogs, don't let the door hit you
http://svn.apache.org/viewvc?view=revision&revision=1172613
help gcc 4.6.0 on 32bit ubuntu 11.10"
http://svn.apache.org/viewvc?view=revision&revision=1245357
Do not add targets for junit tests when junit is disabled.
Patch contributed by Andre Fischer
http://svn.apache.org/viewvc?view=revision&revision=1241508
Revert "sb140: #i117082# avoid unncessary static class data members
commit 21d97438e2
.
remove obsolete FreeBSD visibility special case.
retain consolidated BSD bridge code, remove OS/2 pieces.
318 lines
11 KiB
C++
318 lines
11 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 _SCH_XMLPLOTAREACONTEXT_HXX_
|
|
#define _SCH_XMLPLOTAREACONTEXT_HXX_
|
|
|
|
#include "SchXMLImport.hxx"
|
|
#include "SchXMLChartContext.hxx"
|
|
#include <xmloff/xmlictxt.hxx>
|
|
#include <xmloff/shapeimport.hxx>
|
|
#include <com/sun/star/chart/ChartDataRowSource.hpp>
|
|
|
|
#include "transporttypes.hxx"
|
|
|
|
class SvXMLImport;
|
|
|
|
namespace com { namespace sun { namespace star {
|
|
namespace chart {
|
|
class XDiagram;
|
|
class X3DDisplay;
|
|
class XStatisticDisplay;
|
|
}
|
|
namespace chart2 {
|
|
class XChartDocument;
|
|
}
|
|
namespace xml { namespace sax {
|
|
class XAttributeList;
|
|
}}}}}
|
|
|
|
// ----------------------------------------
|
|
|
|
class SchXML3DSceneAttributesHelper : public SdXML3DSceneAttributesHelper
|
|
{
|
|
public:
|
|
SchXML3DSceneAttributesHelper( SvXMLImport& rImporter );
|
|
virtual ~SchXML3DSceneAttributesHelper();
|
|
|
|
void getCameraDefaultFromDiagram( const ::com::sun::star::uno::Reference< com::sun::star::chart::XDiagram >& xDiagram );
|
|
|
|
private:
|
|
SchXML3DSceneAttributesHelper();
|
|
};
|
|
|
|
// ----------------------------------------
|
|
|
|
class SchXMLPositonAttributesHelper
|
|
{
|
|
public:
|
|
SchXMLPositonAttributesHelper( SvXMLImport& rImporter );
|
|
~SchXMLPositonAttributesHelper();
|
|
|
|
bool readPositioningAttribute( sal_uInt16 nPrefix, const ::rtl::OUString& rLocalName, const ::rtl::OUString& rValue );
|
|
void readAutomaticPositioningProperties( XMLPropStyleContext* pPropStyleContext, const SvXMLStylesContext* pStylesCtxt );
|
|
|
|
bool hasPosSize() const;
|
|
bool isAutomatic() const;
|
|
::com::sun::star::awt::Rectangle getRectangle() const;
|
|
|
|
|
|
private:
|
|
bool hasSize() const;
|
|
bool hasPosition() const;
|
|
|
|
SvXMLImport& m_rImport;
|
|
|
|
::com::sun::star::awt::Point m_aPosition;
|
|
::com::sun::star::awt::Size m_aSize;
|
|
|
|
bool m_bHasSizeWidth;
|
|
bool m_bHasSizeHeight;
|
|
bool m_bHasPositionX;
|
|
bool m_bHasPositionY;
|
|
sal_Bool m_bAutoSize;
|
|
sal_Bool m_bAutoPosition;
|
|
};
|
|
|
|
// ----------------------------------------
|
|
|
|
class SchXMLPlotAreaContext : public SvXMLImportContext
|
|
{
|
|
public:
|
|
SchXMLPlotAreaContext( SchXMLImportHelper& rImpHelper,
|
|
SvXMLImport& rImport, const rtl::OUString& rLocalName,
|
|
const rtl::OUString& rXLinkHRefAttributeToIndicateDataProvider,
|
|
::rtl::OUString& rCategoriesAddress,
|
|
::rtl::OUString& rChartAddress,
|
|
bool& bHasRangeAtPlotArea,
|
|
sal_Bool & rAllRangeAddressesAvailable,
|
|
sal_Bool & rColHasLabels,
|
|
sal_Bool & rRowHasLabels,
|
|
::com::sun::star::chart::ChartDataRowSource & rDataRowSource,
|
|
SeriesDefaultsAndStyles& rSeriesDefaultsAndStyles,
|
|
const ::rtl::OUString& aChartTypeServiceName,
|
|
tSchXMLLSequencesPerIndex & rLSequencesPerIndex,
|
|
const ::com::sun::star::awt::Size & rChartSize );
|
|
virtual ~SchXMLPlotAreaContext();
|
|
|
|
virtual void StartElement( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
|
|
virtual SvXMLImportContext* CreateChildContext(
|
|
sal_uInt16 nPrefix,
|
|
const rtl::OUString& rLocalName,
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
|
|
virtual void EndElement();
|
|
|
|
private:
|
|
SchXMLImportHelper& mrImportHelper;
|
|
::com::sun::star::uno::Reference< com::sun::star::chart::XDiagram > mxDiagram;
|
|
::com::sun::star::uno::Reference< com::sun::star::chart2::XChartDocument > mxNewDoc;
|
|
::std::vector< SchXMLAxis > maAxes;
|
|
rtl::OUString& mrCategoriesAddress;
|
|
SeriesDefaultsAndStyles& mrSeriesDefaultsAndStyles;
|
|
sal_Int32 mnNumOfLinesProp;
|
|
sal_Bool mbStockHasVolume;
|
|
sal_Int32 mnSeries;
|
|
GlobalSeriesImportInfo m_aGlobalSeriesImportInfo;
|
|
|
|
SchXML3DSceneAttributesHelper maSceneImportHelper;
|
|
SchXMLPositonAttributesHelper m_aOuterPositioning;//including axes and axes titles
|
|
SchXMLPositonAttributesHelper m_aInnerPositioning;//excluding axes and axes titles
|
|
bool mbPercentStacked;
|
|
bool m_bAxisPositionAttributeImported;
|
|
::rtl::OUString msAutoStyleName;
|
|
const ::rtl::OUString& m_rXLinkHRefAttributeToIndicateDataProvider;
|
|
::rtl::OUString& mrChartAddress;
|
|
bool& m_rbHasRangeAtPlotArea;
|
|
sal_Bool & mrColHasLabels;
|
|
sal_Bool & mrRowHasLabels;
|
|
::com::sun::star::chart::ChartDataRowSource & mrDataRowSource;
|
|
::rtl::OUString maChartTypeServiceName;
|
|
|
|
tSchXMLLSequencesPerIndex & mrLSequencesPerIndex;
|
|
|
|
bool mbGlobalChartTypeUsedBySeries;
|
|
::com::sun::star::awt::Size maChartSize;
|
|
};
|
|
|
|
//----------------------------------------
|
|
|
|
class SchXMLDataPointContext : public SvXMLImportContext
|
|
{
|
|
private:
|
|
::std::list< DataRowPointStyle >& mrStyleList;
|
|
::com::sun::star::uno::Reference<
|
|
::com::sun::star::chart2::XDataSeries > m_xSeries;
|
|
sal_Int32& mrIndex;
|
|
bool mbSymbolSizeForSeriesIsMissingInFile;
|
|
|
|
public:
|
|
SchXMLDataPointContext( SvXMLImport& rImport, const rtl::OUString& rLocalName,
|
|
::std::list< DataRowPointStyle >& rStyleList,
|
|
const ::com::sun::star::uno::Reference<
|
|
::com::sun::star::chart2::XDataSeries >& xSeries, sal_Int32& rIndex,
|
|
bool bSymbolSizeForSeriesIsMissingInFile );
|
|
virtual ~SchXMLDataPointContext();
|
|
|
|
virtual void StartElement( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
|
|
};
|
|
|
|
// ----------------------------------------
|
|
|
|
class SchXMLCoordinateRegionContext : public SvXMLImportContext
|
|
{
|
|
public:
|
|
SchXMLCoordinateRegionContext(
|
|
SvXMLImport& rImport
|
|
, sal_uInt16 nPrefix
|
|
, const rtl::OUString& rLocalName
|
|
, SchXMLPositonAttributesHelper& rPositioning );
|
|
virtual ~SchXMLCoordinateRegionContext();
|
|
virtual void StartElement( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
|
|
|
|
private:
|
|
SchXMLPositonAttributesHelper& m_rPositioning;
|
|
};
|
|
|
|
// ----------------------------------------
|
|
|
|
class SchXMLWallFloorContext : public SvXMLImportContext
|
|
{
|
|
public:
|
|
enum ContextType
|
|
{
|
|
CONTEXT_TYPE_WALL,
|
|
CONTEXT_TYPE_FLOOR
|
|
};
|
|
|
|
private:
|
|
SchXMLImportHelper& mrImportHelper;
|
|
::com::sun::star::uno::Reference< ::com::sun::star::chart::X3DDisplay > mxWallFloorSupplier;
|
|
ContextType meContextType;
|
|
|
|
public:
|
|
SchXMLWallFloorContext( SchXMLImportHelper& rImportHelper,
|
|
SvXMLImport& rImport,
|
|
sal_uInt16 nPrefix,
|
|
const rtl::OUString& rLocalName,
|
|
::com::sun::star::uno::Reference< ::com::sun::star::chart::XDiagram >& xDiagram,
|
|
ContextType eContextType );
|
|
virtual ~SchXMLWallFloorContext();
|
|
virtual void StartElement( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
|
|
};
|
|
|
|
// ----------------------------------------
|
|
|
|
class SchXMLStockContext : public SvXMLImportContext
|
|
{
|
|
public:
|
|
enum ContextType
|
|
{
|
|
CONTEXT_TYPE_GAIN,
|
|
CONTEXT_TYPE_LOSS,
|
|
CONTEXT_TYPE_RANGE
|
|
};
|
|
|
|
private:
|
|
SchXMLImportHelper& mrImportHelper;
|
|
::com::sun::star::uno::Reference< ::com::sun::star::chart::XStatisticDisplay > mxStockPropProvider;
|
|
ContextType meContextType;
|
|
|
|
public:
|
|
SchXMLStockContext( SchXMLImportHelper& rImportHelper,
|
|
SvXMLImport& rImport,
|
|
sal_uInt16 nPrefix,
|
|
const rtl::OUString& rLocalName,
|
|
::com::sun::star::uno::Reference< ::com::sun::star::chart::XDiagram >& xDiagram,
|
|
ContextType eContextType );
|
|
virtual ~SchXMLStockContext();
|
|
virtual void StartElement( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
|
|
};
|
|
|
|
// ----------------------------------------
|
|
|
|
class SchXMLStatisticsObjectContext : public SvXMLImportContext
|
|
{
|
|
public:
|
|
enum ContextType
|
|
{
|
|
CONTEXT_TYPE_MEAN_VALUE_LINE,
|
|
CONTEXT_TYPE_REGRESSION_CURVE,
|
|
CONTEXT_TYPE_ERROR_INDICATOR
|
|
};
|
|
|
|
SchXMLStatisticsObjectContext(
|
|
SchXMLImportHelper& rImportHelper,
|
|
SvXMLImport& rImport,
|
|
sal_uInt16 nPrefix,
|
|
const rtl::OUString& rLocalName,
|
|
const rtl::OUString &rSeriesStyleName,
|
|
::std::list< DataRowPointStyle >& rStyleList,
|
|
const ::com::sun::star::uno::Reference<
|
|
::com::sun::star::chart2::XDataSeries >& xSeries,
|
|
ContextType eContextType,
|
|
const ::com::sun::star::awt::Size & rChartSize );
|
|
|
|
virtual ~SchXMLStatisticsObjectContext();
|
|
|
|
virtual void StartElement( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
|
|
virtual SvXMLImportContext* CreateChildContext(
|
|
sal_uInt16 nPrefix,
|
|
const rtl::OUString& rLocalName,
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
|
|
|
|
private:
|
|
SchXMLImportHelper & mrImportHelper;
|
|
::std::list< DataRowPointStyle > & mrStyleList;
|
|
::com::sun::star::uno::Reference<
|
|
::com::sun::star::chart2::XDataSeries > m_xSeries;
|
|
ContextType meContextType;
|
|
::com::sun::star::awt::Size maChartSize;
|
|
rtl::OUString maSeriesStyleName;
|
|
};
|
|
|
|
// ----------------------------------------
|
|
|
|
class SchXMLEquationContext : public SvXMLImportContext
|
|
{
|
|
public:
|
|
SchXMLEquationContext(
|
|
SchXMLImportHelper& rImportHelper,
|
|
SvXMLImport& rImport,
|
|
sal_uInt16 nPrefix,
|
|
const rtl::OUString& rLocalName,
|
|
const ::com::sun::star::uno::Reference<
|
|
::com::sun::star::chart2::XDataSeries >& xSeries,
|
|
const ::com::sun::star::awt::Size & rChartSize,
|
|
DataRowPointStyle & rRegressionStyle );
|
|
|
|
virtual ~SchXMLEquationContext();
|
|
|
|
virtual void StartElement( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList );
|
|
|
|
private:
|
|
SchXMLImportHelper & mrImportHelper;
|
|
DataRowPointStyle & mrRegressionStyle;
|
|
::com::sun::star::uno::Reference<
|
|
::com::sun::star::chart2::XDataSeries > m_xSeries;
|
|
::com::sun::star::awt::Size maChartSize;
|
|
};
|
|
|
|
#endif // _SCH_XMLPLOTAREACONTEXT_HXX_
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|