KDChartTextAttributes.cpp File Reference

#include "KDChartTextAttributes.h"
#include <QFont>
#include <QPen>
#include <qglobal.h>
#include <QApplication>
#include <KDABLibFakes>

Include dependency graph for KDChartTextAttributes.cpp:

Go to the source code of this file.

Defines

#define d   d_func()

Functions

QDebug operator<< (QDebug dbg, const KDChart::TextAttributes &ta)


Define Documentation

#define d   d_func()

Definition at line 34 of file KDChartTextAttributes.cpp.


Function Documentation

QDebug operator<< ( QDebug  dbg,
const KDChart::TextAttributes ta 
)

Definition at line 243 of file KDChartTextAttributes.cpp.

References KDChart::TextAttributes::autoRotate(), KDChart::TextAttributes::autoShrink(), KDChart::TextAttributes::font(), KDChart::TextAttributes::fontSize(), KDChart::TextAttributes::isVisible(), KDChart::TextAttributes::minimalFontSize(), KDChart::TextAttributes::pen(), and KDChart::TextAttributes::rotation().

00244 {
00245     dbg << "KDChart::TextAttributes("
00246         << "visible="<<ta.isVisible()
00247         << "font="<<ta.font().toString() /* What? No QDebug for QFont? */
00248         << "fontsize="<<ta.fontSize()
00249         << "minimalfontsize="<<ta.minimalFontSize()
00250         << "autorotate="<<ta.autoRotate()
00251         << "autoshrink="<<ta.autoShrink()
00252         << "rotation="<<ta.rotation()
00253         << "pen="<<ta.pen()
00254         << ")";
00255     return dbg;
00256 }


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