Qt 4.8
Classes | Functions
qpaintengineex_p.h File Reference
#include <QtGui/qpaintengine.h>
#include <QtGui/qdrawutil.h>
#include <private/qpaintengine_p.h>
#include <private/qstroker_p.h>
#include <private/qpainter_p.h>
#include <private/qvectorpath_p.h>

Go to the source code of this file.

Classes

struct  QIntRect
 
class  QPaintEngineEx
 
class  QPaintEngineExPrivate
 
class  QRectVectorPath
 

Functions

QDebug Q_GUI_EXPORToperator<< (QDebug &, const QVectorPath &path)
 

Function Documentation

◆ operator<<()

QDebug Q_GUI_EXPORT& operator<< ( QDebug ,
const QVectorPath path 
)

Definition at line 136 of file qpaintengineex.cpp.

137 {
138  QRectF rf = path.controlPointRect();
139  s << "QVectorPath(size:" << path.elementCount()
140  << " hints:" << hex << path.hints()
141  << rf << ')';
142  return s;
143 }
int elementCount() const
QRectF controlPointRect() const
The QRectF class defines a rectangle in the plane using floating point precision. ...
Definition: qrect.h:511
uint hints() const
QTextStream & hex(QTextStream &stream)
Calls QTextStream::setIntegerBase(16) on stream and returns stream.