KDChartRulerAttributes.h File Reference

#include <QMetaType>
#include "KDChartGlobal.h"
#include "KDChartEnums.h"

Include dependency graph for KDChartRulerAttributes.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  KDChart

Classes

class  KDChart::RulerAttributes
 A set of attributes controlling the appearance of axis rulers. More...

Functions

KDCHART_EXPORT QDebug operator<< (QDebug, const KDChart::RulerAttributes &)
 Q_DECLARE_TYPEINFO (KDChart::RulerAttributes, Q_MOVABLE_TYPE)


Function Documentation

KDCHART_EXPORT QDebug operator<< ( QDebug  ,
const KDChart::RulerAttributes  
)

Definition at line 225 of file KDChartRulerAttributes.cpp.

References KDChart::RulerAttributes::majorTickMarkPen(), KDChart::RulerAttributes::minorTickMarkPen(), KDChart::RulerAttributes::tickMarkPen(), and KDChart::RulerAttributes::tickMarkPens().

00226 {
00227     dbg << "KDChart::RulerAttributes("
00228             << "tickMarkPen=" << a.tickMarkPen()
00229             << "majorTickMarkPen=" << a.majorTickMarkPen()
00230             << "minorTickMarkPen=" << a.minorTickMarkPen();
00231     const RulerAttributes::TickMarkerPensMap pens( a.tickMarkPens() );
00232     QMapIterator<qreal, QPen> it( pens );
00233     while( it.hasNext() ) {
00234         it.next();
00235         dbg << "customTickMarkPen=(" << it.value() << " : " << it.key() << ")";
00236     }
00237     dbg << ")";
00238     return dbg;
00239 }

Q_DECLARE_TYPEINFO ( KDChart::RulerAttributes  ,
Q_MOVABLE_TYPE   
)


Generated on Thu Mar 4 23:22:46 2010 for KD Chart 2 by  doxygen 1.5.4