blob: bde7dd82bf868f1989ffa68ed57dc66825b463c7 [file] [log] [blame]
/**************************************************************
*
* 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
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
#ifndef OOX_DRAWINGML_CHART_TYPEGROUPCONVERTER_HXX
#define OOX_DRAWINGML_CHART_TYPEGROUPCONVERTER_HXX
#include "oox/drawingml/chart/converterbase.hxx"
namespace com { namespace sun { namespace star {
namespace chart2 { class XChartType; }
namespace chart2 { class XCoordinateSystem; }
namespace chart2 { class XDataSeries; }
namespace chart2 { class XDiagram; }
namespace chart2 { namespace data { class XLabeledDataSequence; } }
} } }
namespace oox {
namespace drawingml {
namespace chart {
// ============================================================================
/** Enumerates different chart types. */
enum TypeId
{
TYPEID_BAR, /// Vertical bar chart.
TYPEID_HORBAR, /// Horizontal bar chart.
TYPEID_LINE, /// Line chart.
TYPEID_AREA, /// Area chart.
TYPEID_STOCK, /// Stock chart.
TYPEID_RADARLINE, /// Linear radar chart.
TYPEID_RADARAREA, /// Filled radar chart.
TYPEID_PIE, /// Pie chart.
TYPEID_DOUGHNUT, /// Doughnut (ring) chart.
TYPEID_OFPIE, /// Pie-to-pie or pie-to-bar chart.
TYPEID_SCATTER, /// Scatter (XY) chart.
TYPEID_BUBBLE, /// Bubble chart.
TYPEID_SURFACE, /// Surface chart.
TYPEID_UNKNOWN /// Default for unknown chart types.
};
// ----------------------------------------------------------------------------
/** Enumerates different categories of similar chart types. */
enum TypeCategory
{
TYPECATEGORY_BAR, /// Bar charts (horizontal or vertical).
TYPECATEGORY_LINE, /// Line charts (line, area, stock charts).
TYPECATEGORY_RADAR, /// Radar charts (linear or filled).
TYPECATEGORY_PIE, /// Pie and donut charts.
TYPECATEGORY_SCATTER, /// Scatter and bubble charts.
TYPECATEGORY_SURFACE /// Surface charts.
};
// ----------------------------------------------------------------------------
/** Enumerates modes for varying point colors in a series. */
enum VarPointMode
{
VARPOINTMODE_NONE, /// No varied colors supported.
VARPOINTMODE_SINGLE, /// Only supported, if type group contains only one series.
VARPOINTMODE_MULTI /// Supported for multiple series in a chart type group.
};
// ============================================================================
/** Contains info for a chart type related to the OpenOffice.org chart module. */
struct TypeGroupInfo
{
TypeId meTypeId; /// Unique chart type identifier.
TypeCategory meTypeCategory; /// Category this chart type belongs to.
const sal_Char* mpcServiceName; /// Service name of the type.
VarPointMode meVarPointMode; /// Mode for varying point colors.
sal_Int32 mnDefLabelPos; /// Default data label position (API constant).
bool mbCombinable2d; /// True = types can be combined in one axes set.
bool mbSupports3d; /// True = 3D type allowed, false = only 2D type.
bool mbPolarCoordSystem; /// True = polar, false = cartesian.
bool mbSeriesIsFrame2d; /// True = 2D type series with area formatting.
bool mbSingleSeriesVis; /// True = only first series visible (e.g. pie charts).
bool mbCategoryAxis; /// True = X axis contains categories.
bool mbSwappedAxesSet; /// True = X axis and Y axis are swapped.
bool mbSupportsStacking; /// True = data points can be stacked on each other.
bool mbReverseSeries; /// True = insert unstacked series in reverse order.
bool mbTicksBetweenCateg; /// True = X axis ticks between categories.
bool mbPictureOptions; /// True = bitmaps support options from c:pictureOptions.
};
// ============================================================================
struct UpDownBarsModel;
class UpDownBarsConverter : public ConverterBase< UpDownBarsModel >
{
public:
explicit UpDownBarsConverter( const ConverterRoot& rParent, UpDownBarsModel& rModel );
virtual ~UpDownBarsConverter();
/** Converts the OOXML up/down bars. */
void convertFromModel(
const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >& rxChartType );
};
// ============================================================================
struct TypeGroupModel;
struct View3DModel;
class TypeGroupConverter : public ConverterBase< TypeGroupModel >
{
public:
explicit TypeGroupConverter( const ConverterRoot& rParent, TypeGroupModel& rModel );
virtual ~TypeGroupConverter();
/** Returns the type info struct that describes this chart type group. */
inline const TypeGroupInfo& getTypeInfo() const { return maTypeInfo; }
/** Returns true, if the series in this chart type group are stacked on each other (no percentage). */
bool isStacked() const;
/** Returns true, if the series in this chart type group are stacked on each other as percentage. */
bool isPercent() const;
/** Returns true, if the chart is three-dimensional. */
bool is3dChart() const;
/** Returns true, if chart type supports wall and floor format in 3D mode. */
bool isWall3dChart() const;
/** Returns true, if the series in this chart type group are ordered on the Z axis. */
bool isDeep3dChart() const;
/** Returns true, if this chart type supports area formatting for its series. */
bool isSeriesFrameFormat() const;
/** Returns the object type for a series depending on the chart type. */
ObjectType getSeriesObjectType() const;
/** Returns true, if this chart type has to reverse its series order. */
bool isReverseSeries() const;
/** Returns series title, if the chart type group contains only one single series. */
::rtl::OUString getSingleSeriesTitle() const;
/** Creates a coordinate system according to the contained chart type. */
::com::sun::star::uno::Reference< ::com::sun::star::chart2::XCoordinateSystem >
createCoordinateSystem();
/** Creates a labeled data sequence object for axis categories. */
::com::sun::star::uno::Reference< ::com::sun::star::chart2::data::XLabeledDataSequence >
createCategorySequence();
/** Converts the OOXML type group model into a chart2 coordinate system. */
void convertFromModel(
const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDiagram >& rxDiagram,
const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XCoordinateSystem >& rxCoordSystem,
sal_Int32 nAxesSetIdx, bool bSupportsVaryColorsByPoint );
/** Sets the passed OOXML marker style at the passed property set. */
void convertMarker( PropertySet& rPropSet, sal_Int32 nOoxSymbol, sal_Int32 nOoxSize ) const;
/** Sets the passed OOXML line smoothing at the passed property set. */
void convertLineSmooth( PropertySet& rPropSet, bool bOoxSmooth ) const;
/** Sets the passed OOXML bar 3D geometry at the passed property set. */
void convertBarGeometry( PropertySet& rPropSet, sal_Int32 nOoxShape ) const;
/** Sets the passed OOXML pie rotation at the passed property set. */
void convertPieRotation( PropertySet& rPropSet, sal_Int32 nOoxAngle ) const;
/** Sets the passed OOXML pie explosion at the passed property set. */
void convertPieExplosion( PropertySet& rPropSet, sal_Int32 nOoxExplosion ) const;
private:
/** Inserts the passed series into the chart type. Adds additional properties to the series. */
void insertDataSeries(
const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >& rxChartType,
const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataSeries >& rxSeries,
sal_Int32 nAxesSetIdx );
private:
TypeGroupInfo maTypeInfo; /// Extended type info for contained chart type model.
bool mb3dChart; /// True = type is a 3D chart type.
};
// ============================================================================
} // namespace chart
} // namespace drawingml
} // namespace oox
#endif