summaryrefslogtreecommitdiffstats
path: root/chart2/source/inc/ChartTypeHelper.hxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-05-22 17:13:06 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-05-22 17:13:06 +0000
commit181650ac29c7a9d48a74cb1b9fd08a3cb87a10b0 (patch)
tree15d953e7e80ae7b820fcb35c5796a1a9ec98da57 /chart2/source/inc/ChartTypeHelper.hxx
parentINTEGRATION: CWS chart2mst3 (1.4.4); FILE MERGED (diff)
downloadcore-181650ac29c7a9d48a74cb1b9fd08a3cb87a10b0.tar.gz
core-181650ac29c7a9d48a74cb1b9fd08a3cb87a10b0.zip
INTEGRATION: CWS chart2mst3 (1.6.4); FILE MERGED
2005/11/28 15:35:40 bm 1.6.4.7: BarConnectors implemented the old way (all series at once) but model offers the property ConnectDataPoints for each series independently 2005/11/23 15:13:12 iha 1.6.4.6: support BarOverlap and GapWidth 2005/10/07 11:39:06 bm 1.6.4.5: RESYNC: (1.6-1.7); FILE MERGED 2005/09/16 16:50:10 iha 1.6.4.4: no creation of dummy categories in model - instead trigger generation of missing labels and categories in view 2004/09/17 12:20:47 iha 1.6.4.3: implement api redesign - dimension property 2004/09/17 11:38:14 iha 1.6.4.2: implement api redesign - dimension property 2004/02/13 16:51:21 bm 1.6.4.1: join from changes on branch bm_post_chart01
Diffstat (limited to 'chart2/source/inc/ChartTypeHelper.hxx')
-rw-r--r--chart2/source/inc/ChartTypeHelper.hxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/chart2/source/inc/ChartTypeHelper.hxx b/chart2/source/inc/ChartTypeHelper.hxx
index 092c4d601105..5444e70e3b56 100644
--- a/chart2/source/inc/ChartTypeHelper.hxx
+++ b/chart2/source/inc/ChartTypeHelper.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: ChartTypeHelper.hxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 00:38:24 $
+ * last change: $Author: vg $ $Date: 2007-05-22 18:13:06 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -56,19 +56,19 @@ namespace chart
class ChartTypeHelper
{
public:
- static sal_Bool isSupportingGeometryProperties( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >& xChartType );
- static sal_Bool isSupportingStatisticProperties( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >& xChartType );
- static sal_Bool isSupportingRegressionProperties(const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >& xChartType );
- static sal_Bool isSupportingMainAxis( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >& xChartType, sal_Int32 nDimensionIndex );
- static sal_Bool isSupportingSecondaryAxis( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >& xChartType, sal_Int32 nDimensionIndex );
- static sal_Bool isSupportingAreaProperties( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >& xChartType );
- static sal_Bool isSupportingSymbolProperties( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >& xChartType );
+ static sal_Bool isSupportingGeometryProperties( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >& xChartType, sal_Int32 nDimensionCount );
+ static sal_Bool isSupportingStatisticProperties( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >& xChartType, sal_Int32 nDimensionCount );
+ static sal_Bool isSupportingRegressionProperties(const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >& xChartType, sal_Int32 nDimensionCount );
+ static sal_Bool isSupportingMainAxis( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >& xChartType, sal_Int32 nDimensionCount, sal_Int32 nDimensionIndex );
+ static sal_Bool isSupportingSecondaryAxis( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >& xChartType, sal_Int32 nDimensionCount, sal_Int32 nDimensionIndex );
+ static sal_Bool isSupportingAreaProperties( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >& xChartType, sal_Int32 nDimensionCount );
+ static sal_Bool isSupportingSymbolProperties( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >& xChartType, sal_Int32 nDimensionCount );
+ static sal_Bool isSupportingOverlapAndGapWidthProperties( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >& xChartType, sal_Int32 nDimensionCount );
+ static sal_Bool isSupportingBarConnectors( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >& xChartType, sal_Int32 nDimensionCount );
- static ::com::sun::star::chart2::AxisType
+ static sal_Int32 //one of ::com::sun::star::chart2::AxisType
getAxisType( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >& xChartType
, sal_Int32 nDimensionIndex );
-
- static sal_Int32 getDimensionCount( const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XChartType >& xChartType );
};
//.............................................................................