#include "KDChartRulerAttributes.h"
#include <limits>
#include <QPen>
#include <QDebug>
#include <KDABLibFakes>
Go to the source code of this file.
Defines | |
#define | d d_func() |
Functions | |
QDebug | operator<< (QDebug dbg, const KDChart::RulerAttributes &a) |
#define d d_func() |
Definition at line 35 of file KDChartRulerAttributes.cpp.
QDebug operator<< | ( | QDebug | dbg, | |
const KDChart::RulerAttributes & | a | |||
) |
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 }