KD Chart 2
[rev.2.5]
|
00001 /**************************************************************************** 00002 ** Copyright (C) 2001-2012 Klaralvdalens Datakonsult AB. All rights reserved. 00003 ** 00004 ** This file is part of the KD Chart library. 00005 ** 00006 ** Licensees holding valid commercial KD Chart licenses may use this file in 00007 ** accordance with the KD Chart Commercial License Agreement provided with 00008 ** the Software. 00009 ** 00010 ** 00011 ** This file may be distributed and/or modified under the terms of the 00012 ** GNU General Public License version 2 and version 3 as published by the 00013 ** Free Software Foundation and appearing in the file LICENSE.GPL.txt included. 00014 ** 00015 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 00016 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 00017 ** 00018 ** Contact info@kdab.com if any conditions of this licensing are not 00019 ** clear to you. 00020 ** 00021 **********************************************************************/ 00022 00023 #ifndef KDCHARTMEASURE_H 00024 #define KDCHARTMEASURE_H 00025 00026 #include <QDebug> 00027 #include <Qt> 00028 #include <QStack> 00029 #include "KDChartGlobal.h" 00030 #include "KDChartEnums.h" 00031 00038 QT_BEGIN_NAMESPACE 00039 class QObject; 00040 class QPaintDevice; 00041 QT_END_NAMESPACE 00042 00043 namespace KDChart { 00044 00051 class KDCHART_EXPORT Measure 00052 { 00053 public: 00054 Measure(); 00055 /*implicit*/ Measure( qreal value, 00056 KDChartEnums::MeasureCalculationMode mode = KDChartEnums::MeasureCalculationModeAuto, 00057 KDChartEnums::MeasureOrientation orientation = KDChartEnums::MeasureOrientationAuto ); 00058 Measure( const Measure& ); 00059 Measure &operator= ( const Measure& ); 00060 00061 void setValue( qreal val ){ mValue = val; } 00062 qreal value() const { return mValue; } 00063 00064 void setCalculationMode( KDChartEnums::MeasureCalculationMode mode ){ mMode = mode; } 00065 KDChartEnums::MeasureCalculationMode calculationMode() const { return mMode; } 00066 00071 void setRelativeMode( const QObject * area, 00072 KDChartEnums::MeasureOrientation orientation ) 00073 { 00074 mMode = KDChartEnums::MeasureCalculationModeRelative; 00075 mArea = area; 00076 mOrientation = orientation; 00077 } 00078 00089 void setAbsoluteValue( qreal val ) 00090 { 00091 mMode = KDChartEnums::MeasureCalculationModeAbsolute; 00092 mValue = val; 00093 } 00094 00099 void setReferenceArea( const QObject * area ){ mArea = area; } 00104 const QObject * referenceArea() const { return mArea; } 00105 00106 void setReferenceOrientation( KDChartEnums::MeasureOrientation orientation ){ mOrientation = orientation; } 00107 KDChartEnums::MeasureOrientation referenceOrientation() const { return mOrientation; } 00108 00113 qreal calculatedValue( const QObject * autoArea, KDChartEnums::MeasureOrientation autoOrientation ) const; 00114 qreal calculatedValue( const QSizeF& autoSize, KDChartEnums::MeasureOrientation autoOrientation ) const; 00115 const QSizeF sizeOfArea( const QObject* area ) const; 00116 00117 bool operator==( const Measure& ) const; 00118 bool operator!=( const Measure& other ) const { return !operator==(other); } 00119 00120 private: 00121 qreal mValue; 00122 KDChartEnums::MeasureCalculationMode mMode; 00123 const QObject* mArea; 00124 KDChartEnums::MeasureOrientation mOrientation; 00125 }; // End of class Measure 00126 00127 00128 00140 class GlobalMeasureScaling 00141 { 00142 public: 00143 static GlobalMeasureScaling* instance(); 00144 00145 GlobalMeasureScaling(); 00146 virtual ~GlobalMeasureScaling(); 00147 00148 public: 00153 static void setFactors(qreal factorX, qreal factorY); 00154 00159 static void resetFactors(); 00160 00164 static const QPair< qreal, qreal > currentFactors(); 00165 00169 static void setPaintDevice( QPaintDevice* paintDevice ); 00170 00174 static QPaintDevice* paintDevice(); 00175 00176 private: 00177 QStack< QPair< qreal, qreal > > mFactors; 00178 QPaintDevice* m_paintDevice; 00179 }; 00180 00181 } 00182 00183 #if !defined(QT_NO_DEBUG_STREAM) 00184 KDCHART_EXPORT QDebug operator<<(QDebug, const KDChart::Measure& ); 00185 #endif /* QT_NO_DEBUG_STREAM */ 00186 00187 #endif // KDCHARTMEASURE_H