#include <QDebug>
#include <QMetaType>
#include "KDChartGlobal.h"
#include "KDChartMeasure.h"
Go to the source code of this file.
Namespaces | |
namespace | KDChart |
Classes | |
class | KDChart::TextAttributes |
A set of text attributes. More... | |
Functions | |
KDCHART_EXPORT QDebug | operator<< (QDebug, const KDChart::TextAttributes &) |
Q_DECLARE_TYPEINFO (KDChart::TextAttributes, Q_MOVABLE_TYPE) |
KDCHART_EXPORT QDebug operator<< | ( | QDebug | , | |
const KDChart::TextAttributes & | ||||
) |
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 }
Q_DECLARE_TYPEINFO | ( | KDChart::TextAttributes | , | |
Q_MOVABLE_TYPE | ||||
) |