#include <QDebug>
#include <QMetaType>
#include <QPen>
#include "KDChartGlobal.h"
Go to the source code of this file.
Namespaces | |
namespace | KDChart |
Classes | |
class | KDChart::FrameAttributes |
A set of attributes for frames around items. More... | |
Functions | |
KDCHART_EXPORT QDebug | operator<< (QDebug, const KDChart::FrameAttributes &) |
Q_DECLARE_TYPEINFO (KDChart::FrameAttributes, Q_MOVABLE_TYPE) |
KDCHART_EXPORT QDebug operator<< | ( | QDebug | , | |
const KDChart::FrameAttributes & | ||||
) |
Definition at line 124 of file KDChartFrameAttributes.cpp.
References KDChart::FrameAttributes::isVisible(), KDChart::FrameAttributes::padding(), and KDChart::FrameAttributes::pen().
00125 { 00126 dbg << "KDChart::FrameAttributes(" 00127 << "visible="<<fa.isVisible() 00128 << "pen="<<fa.pen() 00129 << "padding="<<fa.padding() 00130 << ")"; 00131 return dbg; 00132 }
Q_DECLARE_TYPEINFO | ( | KDChart::FrameAttributes | , | |
Q_MOVABLE_TYPE | ||||
) |