1*b1cdbd2cSJim Jagielski /**************************************************************
2*b1cdbd2cSJim Jagielski  *
3*b1cdbd2cSJim Jagielski  * Licensed to the Apache Software Foundation (ASF) under one
4*b1cdbd2cSJim Jagielski  * or more contributor license agreements.  See the NOTICE file
5*b1cdbd2cSJim Jagielski  * distributed with this work for additional information
6*b1cdbd2cSJim Jagielski  * regarding copyright ownership.  The ASF licenses this file
7*b1cdbd2cSJim Jagielski  * to you under the Apache License, Version 2.0 (the
8*b1cdbd2cSJim Jagielski  * "License"); you may not use this file except in compliance
9*b1cdbd2cSJim Jagielski  * with the License.  You may obtain a copy of the License at
10*b1cdbd2cSJim Jagielski  *
11*b1cdbd2cSJim Jagielski  *   http://www.apache.org/licenses/LICENSE-2.0
12*b1cdbd2cSJim Jagielski  *
13*b1cdbd2cSJim Jagielski  * Unless required by applicable law or agreed to in writing,
14*b1cdbd2cSJim Jagielski  * software distributed under the License is distributed on an
15*b1cdbd2cSJim Jagielski  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*b1cdbd2cSJim Jagielski  * KIND, either express or implied.  See the License for the
17*b1cdbd2cSJim Jagielski  * specific language governing permissions and limitations
18*b1cdbd2cSJim Jagielski  * under the License.
19*b1cdbd2cSJim Jagielski  *
20*b1cdbd2cSJim Jagielski  *************************************************************/
21*b1cdbd2cSJim Jagielski 
22*b1cdbd2cSJim Jagielski 
23*b1cdbd2cSJim Jagielski #ifndef _CHART2_EXPLICITVALUEPROVIDER_HXX
24*b1cdbd2cSJim Jagielski #define _CHART2_EXPLICITVALUEPROVIDER_HXX
25*b1cdbd2cSJim Jagielski 
26*b1cdbd2cSJim Jagielski #include "ExplicitScaleValues.hxx"
27*b1cdbd2cSJim Jagielski 
28*b1cdbd2cSJim Jagielski #include <boost/shared_ptr.hpp>
29*b1cdbd2cSJim Jagielski #include <com/sun/star/chart2/XAxis.hpp>
30*b1cdbd2cSJim Jagielski #include <com/sun/star/chart2/XCoordinateSystem.hpp>
31*b1cdbd2cSJim Jagielski #include <com/sun/star/chart2/XDataSeries.hpp>
32*b1cdbd2cSJim Jagielski #include <com/sun/star/chart2/XDiagram.hpp>
33*b1cdbd2cSJim Jagielski #include <com/sun/star/awt/Rectangle.hpp>
34*b1cdbd2cSJim Jagielski #include <com/sun/star/frame/XModel.hpp>
35*b1cdbd2cSJim Jagielski #include <com/sun/star/drawing/XShape.hpp>
36*b1cdbd2cSJim Jagielski #include <com/sun/star/util/XNumberFormatsSupplier.hpp>
37*b1cdbd2cSJim Jagielski #include "chartviewdllapi.hxx"
38*b1cdbd2cSJim Jagielski 
39*b1cdbd2cSJim Jagielski //.............................................................................
40*b1cdbd2cSJim Jagielski namespace chart
41*b1cdbd2cSJim Jagielski {
42*b1cdbd2cSJim Jagielski //.............................................................................
43*b1cdbd2cSJim Jagielski 
44*b1cdbd2cSJim Jagielski //-----------------------------------------------------------------------------
45*b1cdbd2cSJim Jagielski /**
46*b1cdbd2cSJim Jagielski */
47*b1cdbd2cSJim Jagielski 
48*b1cdbd2cSJim Jagielski class DrawModelWrapper;
49*b1cdbd2cSJim Jagielski class OOO_DLLPUBLIC_CHARTVIEW ExplicitValueProvider
50*b1cdbd2cSJim Jagielski {
51*b1cdbd2cSJim Jagielski public:
52*b1cdbd2cSJim Jagielski     /** Gives calculated scale and increment values for a given xAxis in the current view.
53*b1cdbd2cSJim Jagielski         In contrast to the model data these explicit values are always complete as misssing auto properties are calculated.
54*b1cdbd2cSJim Jagielski         If the given Axis could not be found or for another reason no correct output can be given false is returned.
55*b1cdbd2cSJim Jagielski      */
56*b1cdbd2cSJim Jagielski     virtual sal_Bool getExplicitValuesForAxis(
57*b1cdbd2cSJim Jagielski         ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XAxis > xAxis
58*b1cdbd2cSJim Jagielski         , ExplicitScaleData&  rExplicitScale
59*b1cdbd2cSJim Jagielski         , ExplicitIncrementData& rExplicitIncrement )=0;
60*b1cdbd2cSJim Jagielski 
61*b1cdbd2cSJim Jagielski     /** for rotated objects the shape size and position differs from the visible rectangle
62*b1cdbd2cSJim Jagielski         if bSnapRect is set to true you get the resulting visible position (left-top) and size
63*b1cdbd2cSJim Jagielski     */
64*b1cdbd2cSJim Jagielski     virtual ::com::sun::star::awt::Rectangle
65*b1cdbd2cSJim Jagielski         getRectangleOfObject( const rtl::OUString& rObjectCID, bool bSnapRect=false )=0;
66*b1cdbd2cSJim Jagielski 
67*b1cdbd2cSJim Jagielski     virtual ::com::sun::star::awt::Rectangle getDiagramRectangleExcludingAxes()=0;
68*b1cdbd2cSJim Jagielski 
69*b1cdbd2cSJim Jagielski     virtual ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShape >
70*b1cdbd2cSJim Jagielski         getShapeForCID( const rtl::OUString& rObjectCID )=0;
71*b1cdbd2cSJim Jagielski 
72*b1cdbd2cSJim Jagielski     virtual ::boost::shared_ptr< DrawModelWrapper > getDrawModelWrapper() = 0;
73*b1cdbd2cSJim Jagielski 
74*b1cdbd2cSJim Jagielski     static const com::sun::star::uno::Sequence<sal_Int8>& getUnoTunnelId();
75*b1cdbd2cSJim Jagielski     static ExplicitValueProvider* getExplicitValueProvider( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& xChartView );
76*b1cdbd2cSJim Jagielski 
77*b1cdbd2cSJim Jagielski     static ::com::sun::star::awt::Rectangle
78*b1cdbd2cSJim Jagielski         addAxisTitleSizes(
79*b1cdbd2cSJim Jagielski             const ::com::sun::star::uno::Reference<
80*b1cdbd2cSJim Jagielski                 ::com::sun::star::frame::XModel >& xChartModel
81*b1cdbd2cSJim Jagielski             , const ::com::sun::star::uno::Reference<
82*b1cdbd2cSJim Jagielski                 ::com::sun::star::uno::XInterface >& xChartView
83*b1cdbd2cSJim Jagielski             , const ::com::sun::star::awt::Rectangle& rExcludingPositionAndSize );
84*b1cdbd2cSJim Jagielski 
85*b1cdbd2cSJim Jagielski     static ::com::sun::star::awt::Rectangle
86*b1cdbd2cSJim Jagielski         substractAxisTitleSizes(
87*b1cdbd2cSJim Jagielski             const ::com::sun::star::uno::Reference<
88*b1cdbd2cSJim Jagielski                 ::com::sun::star::frame::XModel >& xChartModel
89*b1cdbd2cSJim Jagielski             , const ::com::sun::star::uno::Reference<
90*b1cdbd2cSJim Jagielski                 ::com::sun::star::uno::XInterface >& xChartView
91*b1cdbd2cSJim Jagielski             , const ::com::sun::star::awt::Rectangle& rPositionAndSizeIncludingTitles );
92*b1cdbd2cSJim Jagielski 
93*b1cdbd2cSJim Jagielski     static sal_Int32 getExplicitNumberFormatKeyForAxis(
94*b1cdbd2cSJim Jagielski               const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XAxis >& xAxis
95*b1cdbd2cSJim Jagielski             , const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XCoordinateSystem > & xCorrespondingCoordinateSystem
96*b1cdbd2cSJim Jagielski             , const ::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormatsSupplier >& xNumberFormatsSupplier );
97*b1cdbd2cSJim Jagielski 
98*b1cdbd2cSJim Jagielski     static sal_Int32 getExplicitNumberFormatKeyForDataLabel(
99*b1cdbd2cSJim Jagielski             const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xSeriesOrPointProp
100*b1cdbd2cSJim Jagielski             , const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDataSeries >& xSeries
101*b1cdbd2cSJim Jagielski             , sal_Int32 nPointIndex /*-1 for whole series*/
102*b1cdbd2cSJim Jagielski             , const ::com::sun::star::uno::Reference< ::com::sun::star::chart2::XDiagram >& xDiagram );
103*b1cdbd2cSJim Jagielski 
104*b1cdbd2cSJim Jagielski     static sal_Int32 getExplicitPercentageNumberFormatKeyForDataLabel(
105*b1cdbd2cSJim Jagielski             const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& xSeriesOrPointProp
106*b1cdbd2cSJim Jagielski             , const ::com::sun::star::uno::Reference< ::com::sun::star::util::XNumberFormatsSupplier >& xNumberFormatsSupplier );
107*b1cdbd2cSJim Jagielski };
108*b1cdbd2cSJim Jagielski 
109*b1cdbd2cSJim Jagielski //.............................................................................
110*b1cdbd2cSJim Jagielski } //namespace chart
111*b1cdbd2cSJim Jagielski //.............................................................................
112*b1cdbd2cSJim Jagielski #endif
113