1*cde9e8dcSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*cde9e8dcSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*cde9e8dcSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*cde9e8dcSAndrew Rist  * distributed with this work for additional information
6*cde9e8dcSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*cde9e8dcSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*cde9e8dcSAndrew Rist  * "License"); you may not use this file except in compliance
9*cde9e8dcSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*cde9e8dcSAndrew Rist  *
11*cde9e8dcSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*cde9e8dcSAndrew Rist  *
13*cde9e8dcSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*cde9e8dcSAndrew Rist  * software distributed under the License is distributed on an
15*cde9e8dcSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*cde9e8dcSAndrew Rist  * KIND, either express or implied.  See the License for the
17*cde9e8dcSAndrew Rist  * specific language governing permissions and limitations
18*cde9e8dcSAndrew Rist  * under the License.
19*cde9e8dcSAndrew Rist  *
20*cde9e8dcSAndrew Rist  *************************************************************/
21*cde9e8dcSAndrew Rist 
22*cde9e8dcSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_chart2.hxx"
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #include "ColorPerPointHelper.hxx"
28cdf0e10cSrcweir #include "macros.hxx"
29cdf0e10cSrcweir #include <com/sun/star/chart2/XDataSeries.hpp>
30cdf0e10cSrcweir #include <com/sun/star/beans/XPropertyState.hpp>
31cdf0e10cSrcweir 
32cdf0e10cSrcweir #include <algorithm>
33cdf0e10cSrcweir 
34cdf0e10cSrcweir //.............................................................................
35cdf0e10cSrcweir namespace chart
36cdf0e10cSrcweir {
37cdf0e10cSrcweir //.............................................................................
38cdf0e10cSrcweir using namespace ::com::sun::star;
39cdf0e10cSrcweir using namespace ::com::sun::star::chart2;
40cdf0e10cSrcweir 
hasPointOwnColor(const::com::sun::star::uno::Reference<::com::sun::star::beans::XPropertySet> & xDataSeriesProperties,sal_Int32 nPointIndex,const::com::sun::star::uno::Reference<::com::sun::star::beans::XPropertySet> & xDataPointProperties)41cdf0e10cSrcweir bool ColorPerPointHelper::hasPointOwnColor(
42cdf0e10cSrcweir         const ::com::sun::star::uno::Reference<
43cdf0e10cSrcweir               ::com::sun::star::beans::XPropertySet >& xDataSeriesProperties
44cdf0e10cSrcweir         , sal_Int32 nPointIndex
45cdf0e10cSrcweir         , const ::com::sun::star::uno::Reference<
46cdf0e10cSrcweir               ::com::sun::star::beans::XPropertySet >& xDataPointProperties //may be NULL this is just for performance
47cdf0e10cSrcweir          )
48cdf0e10cSrcweir {
49cdf0e10cSrcweir     if( !xDataSeriesProperties.is() )
50cdf0e10cSrcweir         return false;
51cdf0e10cSrcweir 
52cdf0e10cSrcweir     if( hasPointOwnProperties( xDataSeriesProperties, nPointIndex ))
53cdf0e10cSrcweir     {
54cdf0e10cSrcweir         uno::Reference< beans::XPropertyState > xPointState( xDataPointProperties, uno::UNO_QUERY );
55cdf0e10cSrcweir         if( !xPointState.is() )
56cdf0e10cSrcweir         {
57cdf0e10cSrcweir             uno::Reference< XDataSeries > xSeries( xDataSeriesProperties, uno::UNO_QUERY );
58cdf0e10cSrcweir             if(xSeries.is())
59cdf0e10cSrcweir                 xPointState.set( xSeries->getDataPointByIndex( nPointIndex ), uno::UNO_QUERY );
60cdf0e10cSrcweir         }
61cdf0e10cSrcweir         if( !xPointState.is() )
62cdf0e10cSrcweir             return false;
63cdf0e10cSrcweir 
64cdf0e10cSrcweir         return (xPointState->getPropertyState( C2U("Color")) != beans::PropertyState_DEFAULT_VALUE );
65cdf0e10cSrcweir     }
66cdf0e10cSrcweir 
67cdf0e10cSrcweir     return false;
68cdf0e10cSrcweir }
69cdf0e10cSrcweir 
hasPointOwnProperties(const::com::sun::star::uno::Reference<::com::sun::star::beans::XPropertySet> & xSeriesProperties,sal_Int32 nPointIndex)70cdf0e10cSrcweir bool ColorPerPointHelper::hasPointOwnProperties(
71cdf0e10cSrcweir     const ::com::sun::star::uno::Reference<
72cdf0e10cSrcweir         ::com::sun::star::beans::XPropertySet >& xSeriesProperties
73cdf0e10cSrcweir     , sal_Int32 nPointIndex )
74cdf0e10cSrcweir {
75cdf0e10cSrcweir     if( xSeriesProperties.is() )
76cdf0e10cSrcweir     {
77cdf0e10cSrcweir         uno::Sequence< sal_Int32 > aIndexList;
78cdf0e10cSrcweir         if( xSeriesProperties->getPropertyValue( C2U( "AttributedDataPoints" ) ) >>= aIndexList )
79cdf0e10cSrcweir         {
80cdf0e10cSrcweir             const sal_Int32 * pBegIt = aIndexList.getConstArray();
81cdf0e10cSrcweir             const sal_Int32 * pEndIt = pBegIt + aIndexList.getLength();
82cdf0e10cSrcweir             return ( ::std::find( pBegIt, pEndIt, nPointIndex ) != pEndIt );
83cdf0e10cSrcweir         }
84cdf0e10cSrcweir     }
85cdf0e10cSrcweir 
86cdf0e10cSrcweir     return false;
87cdf0e10cSrcweir }
88cdf0e10cSrcweir 
89cdf0e10cSrcweir //.............................................................................
90cdf0e10cSrcweir } //namespace chart
91cdf0e10cSrcweir //.............................................................................
92