![]() |
Qt 6.x
The Qt SDK
|
The QPaintEngineState class provides information about the active paint engine's current state. \reentrant. More...
#include <qpaintengine.h>
Public Member Functions | |
QPaintEngine::DirtyFlags | state () const |
Returns a combination of flags identifying the set of properties that need to be updated when updating the paint engine's state (i.e. | |
QPen | pen () const |
Returns the pen in the current paint engine state. | |
QBrush | brush () const |
Returns the brush in the current paint engine state. | |
QPointF | brushOrigin () const |
Returns the brush origin in the current paint engine state. | |
QBrush | backgroundBrush () const |
Returns the background brush in the current paint engine state. | |
Qt::BGMode | backgroundMode () const |
Returns the background mode in the current paint engine state. | |
QFont | font () const |
Returns the font in the current paint engine state. | |
QTransform | transform () const |
Qt::ClipOperation | clipOperation () const |
Returns the clip operation in the current paint engine state. | |
QRegion | clipRegion () const |
Returns the clip region in the current paint engine state. | |
QPainterPath | clipPath () const |
Returns the clip path in the current paint engine state. | |
bool | isClipEnabled () const |
Returns whether clipping is enabled or not in the current paint engine state. | |
QPainter::RenderHints | renderHints () const |
Returns the render hints in the current paint engine state. | |
QPainter::CompositionMode | compositionMode () const |
Returns the composition mode in the current paint engine state. | |
qreal | opacity () const |
QPainter * | painter () const |
Returns a pointer to the painter currently updating the paint engine. | |
bool | brushNeedsResolving () const |
bool | penNeedsResolving () const |
Protected Attributes | |
QPaintEngine::DirtyFlags | dirtyFlags |
Friends | |
class | QPaintEngine |
class | QRasterPaintEngine |
class | QWidget |
class | QPainter |
class | QPainterPrivate |
class | QMacPrintEnginePrivate |
The QPaintEngineState class provides information about the active paint engine's current state. \reentrant.
QPaintEngineState records which properties that have changed since the last time the paint engine was updated, as well as their current value.
Which properties that have changed can at any time be retrieved using the state() function. This function returns an instance of the QPaintEngine::DirtyFlags type which stores an OR combination of QPaintEngine::DirtyFlag values. The QPaintEngine::DirtyFlag enum defines whether a property has changed since the last update or not.
If a property is marked with a dirty flag, its current value can be retrieved using the corresponding get function:
\target GetFunction
\table \header
The QPaintEngineState class also provide the painter() function which returns a pointer to the painter that is currently updating the paint engine.
An instance of this class, representing the current state of the active paint engine, is passed as argument to the QPaintEngine::updateState() function. The only situation in which you will have to use this class directly is when implementing your own paint engine.
Definition at line 231 of file qpaintengine.h.
QBrush QPaintEngineState::backgroundBrush | ( | ) | const |
Returns the background brush in the current paint engine state.
This variable should only be used when the state() returns a combination which includes the QPaintEngine::DirtyBackground flag.
Definition at line 7632 of file qpainter.cpp.
Referenced by QPicturePaintEngine::updateState().
Qt::BGMode QPaintEngineState::backgroundMode | ( | ) | const |
Returns the background mode in the current paint engine state.
This variable should only be used when the state() returns a combination which includes the QPaintEngine::DirtyBackgroundMode flag.
Definition at line 7647 of file qpainter.cpp.
Referenced by QPicturePaintEngine::updateState().
QBrush QPaintEngineState::brush | ( | ) | const |
Returns the brush in the current paint engine state.
This variable should only be used when the state() returns a combination which includes the QPaintEngine::DirtyBrush flag.
Definition at line 7604 of file qpainter.cpp.
Referenced by QCoreGraphicsPaintEngine::updateState(), QPicturePaintEngine::updateState(), QPdfEngine::updateState(), QX11PaintEngine::updateState(), QAlphaPaintEngine::updateState(), QWin32PrintEngine::updateState(), and QSvgPaintEngine::updateState().
bool QPaintEngineState::brushNeedsResolving | ( | ) | const |
Returns whether the coordinate of the fill have been specified as bounded by the current rendering operation and have to be resolved (about the currently rendered primitive).
Definition at line 7710 of file qpainter.cpp.
References needsResolving().
Referenced by QPaintEngine::drawRects().
QPointF QPaintEngineState::brushOrigin | ( | ) | const |
Returns the brush origin in the current paint engine state.
This variable should only be used when the state() returns a combination which includes the QPaintEngine::DirtyBrushOrigin flag.
Definition at line 7618 of file qpainter.cpp.
References brushOrigin().
Referenced by brushOrigin(), QCoreGraphicsPaintEngine::updateState(), QPicturePaintEngine::updateState(), QPdfEngine::updateState(), and QX11PaintEngine::updateState().
Qt::ClipOperation QPaintEngineState::clipOperation | ( | ) | const |
Returns the clip operation in the current paint engine state.
This variable should only be used when the state() returns a combination which includes either the QPaintEngine::DirtyClipPath or the QPaintEngine::DirtyClipRegion flag.
Definition at line 7698 of file qpainter.cpp.
References clipOperation().
Referenced by clipOperation(), QSvgPaintEngine::updateClipState(), QCoreGraphicsPaintEngine::updateState(), QPicturePaintEngine::updateState(), QPdfEngine::updateState(), QX11PaintEngine::updateState(), and QWin32PrintEngine::updateState().
QPainterPath QPaintEngineState::clipPath | ( | ) | const |
Returns the clip path in the current paint engine state.
This variable should only be used when the state() returns a combination which includes the QPaintEngine::DirtyClipPath flag.
Definition at line 7753 of file qpainter.cpp.
References clipPath().
Referenced by clipPath(), QCoreGraphicsPaintEngine::updateState(), QPicturePaintEngine::updateState(), QPdfEngine::updateState(), QX11PaintEngine::updateState(), and QWin32PrintEngine::updateState().
QRegion QPaintEngineState::clipRegion | ( | ) | const |
Returns the clip region in the current paint engine state.
This variable should only be used when the state() returns a combination which includes the QPaintEngine::DirtyClipRegion flag.
Definition at line 7739 of file qpainter.cpp.
References clipRegion().
Referenced by clipRegion(), QCoreGraphicsPaintEngine::updateState(), QPicturePaintEngine::updateState(), QPdfEngine::updateState(), QX11PaintEngine::updateState(), and QWin32PrintEngine::updateState().
QPainter::CompositionMode QPaintEngineState::compositionMode | ( | ) | const |
Returns the composition mode in the current paint engine state.
This variable should only be used when the state() returns a combination which includes the QPaintEngine::DirtyCompositionMode flag.
Definition at line 7799 of file qpainter.cpp.
Referenced by QCoreGraphicsPaintEngine::drawEllipse(), QCoreGraphicsPaintEngine::drawImage(), QCoreGraphicsPaintEngine::drawLines(), QCoreGraphicsPaintEngine::drawPath(), QCoreGraphicsPaintEngine::drawPixmap(), QCoreGraphicsPaintEngine::drawPoints(), QCoreGraphicsPaintEngine::drawPolygon(), QCoreGraphicsPaintEngine::drawRects(), QCoreGraphicsPaintEngine::drawTextItem(), QCoreGraphicsPaintEngine::drawTiledPixmap(), QCoreGraphicsPaintEngine::updateState(), QPicturePaintEngine::updateState(), and QX11PaintEngine::updateState().
QFont QPaintEngineState::font | ( | ) | const |
Returns the font in the current paint engine state.
This variable should only be used when the state() returns a combination which includes the QPaintEngine::DirtyFont flag.
Definition at line 7662 of file qpainter.cpp.
References font().
Referenced by font(), QCoreGraphicsPaintEngine::updateState(), QPicturePaintEngine::updateState(), QX11PaintEngine::updateState(), and QSvgPaintEngine::updateState().
bool QPaintEngineState::isClipEnabled | ( | ) | const |
Returns whether clipping is enabled or not in the current paint engine state.
This variable should only be used when the state() returns a combination which includes the QPaintEngine::DirtyClipEnabled flag.
Definition at line 7769 of file qpainter.cpp.
Referenced by QSvgPaintEngine::updateClipState(), QCoreGraphicsPaintEngine::updateState(), QPicturePaintEngine::updateState(), QPdfEngine::updateState(), QX11PaintEngine::updateState(), and QWin32PrintEngine::updateState().
qreal QPaintEngineState::opacity | ( | ) | const |
Returns the opacity in the current paint engine state.
Definition at line 7822 of file qpainter.cpp.
References opacity().
Referenced by opacity(), QCoreGraphicsPaintEngine::updateState(), QPicturePaintEngine::updateState(), QPdfEngine::updateState(), QX11PaintEngine::updateState(), QAlphaPaintEngine::updateState(), and QSvgPaintEngine::updateState().
QPainter * QPaintEngineState::painter | ( | ) | const |
Returns a pointer to the painter currently updating the paint engine.
Definition at line 7810 of file qpainter.cpp.
References painter().
Referenced by QAlphaPaintEngine::flushAndInit(), QPaintEngine::painter(), and painter().
QPen QPaintEngineState::pen | ( | ) | const |
Returns the pen in the current paint engine state.
This variable should only be used when the state() returns a combination which includes the QPaintEngine::DirtyPen flag.
Definition at line 7590 of file qpainter.cpp.
References pen().
Referenced by QSvgPaintEngine::drawEllipse(), QPaintEngine::drawLines(), QSvgPaintEngine::drawPath(), QSvgPaintEngine::drawPolygon(), QSvgPaintEngine::drawRects(), QWin32PrintEngine::drawTextItem(), pen(), penNeedsResolving(), QCoreGraphicsPaintEngine::updateState(), QPicturePaintEngine::updateState(), QPdfEngine::updateState(), QX11PaintEngine::updateState(), QAlphaPaintEngine::updateState(), QWin32PrintEngine::updateState(), and QSvgPaintEngine::updateState().
bool QPaintEngineState::penNeedsResolving | ( | ) | const |
Returns whether the coordinate of the stroke have been specified as bounded by the current rendering operation and have to be resolved (about the currently rendered primitive).
Definition at line 7724 of file qpainter.cpp.
References QPen::brush(), needsResolving(), and pen().
Referenced by QPaintEngine::drawRects().
QPainter::RenderHints QPaintEngineState::renderHints | ( | ) | const |
Returns the render hints in the current paint engine state.
This variable should only be used when the state() returns a combination which includes the QPaintEngine::DirtyHints flag.
Definition at line 7784 of file qpainter.cpp.
References renderHints().
Referenced by QSvgPaintEngine::drawImage(), QCoreGraphicsPaintEngine::drawPoints(), QCoreGraphicsPaintEngine::drawTextItem(), renderHints(), QCoreGraphicsPaintEngine::updateState(), QPicturePaintEngine::updateState(), QPdfEngine::updateState(), and QX11PaintEngine::updateState().
|
inline |
Returns a combination of flags identifying the set of properties that need to be updated when updating the paint engine's state (i.e.
during a call to the QPaintEngine::updateState() function).
Definition at line 234 of file qpaintengine.h.
Referenced by QRasterPaintEnginePrivate::brushMatrix(), QRasterPaintEnginePrivate::canUseFastImageBlending(), QRasterPaintEnginePrivate::canUseImageBlitting(), QOpenGL2PaintEngineExPrivate::drawCachedGlyphs(), QRasterPaintEnginePrivate::getPenFunc(), QRasterPaintEnginePrivate::initializeRasterizer(), QRasterPaintEnginePrivate::isUnclipped(), QRasterPaintEnginePrivate::rasterize(), QRasterPaintEnginePrivate::rasterize(), QRasterPaintEnginePrivate::rasterizeLine_dashed(), QRasterPaintEnginePrivate::recalculateFastImages(), QOpenGL2PaintEngineExPrivate::stroke(), QRasterPaintEnginePrivate::updateClipping(), QSvgPaintEngine::updateClipState(), QCoreGraphicsPaintEngine::updateState(), QPicturePaintEngine::updateState(), QPdfEngine::updateState(), QX11PaintEngine::updateState(), QAlphaPaintEngine::updateState(), and QWin32PrintEngine::updateState().
QTransform QPaintEngineState::transform | ( | ) | const |
Returns the matrix in the current paint engine state.
This variable should only be used when the state() returns a combination which includes the QPaintEngine::DirtyTransform flag.
Definition at line 7679 of file qpainter.cpp.
References QPainterState::matrix.
Referenced by QCoreGraphicsPaintEngine::updateState(), QPicturePaintEngine::updateState(), QPdfEngine::updateState(), QX11PaintEngine::updateState(), QAlphaPaintEngine::updateState(), QWin32PrintEngine::updateState(), and QSvgPaintEngine::updateState().
|
friend |
Definition at line 264 of file qpaintengine.h.
|
friend |
Definition at line 259 of file qpaintengine.h.
|
friend |
Definition at line 262 of file qpaintengine.h.
|
friend |
Definition at line 263 of file qpaintengine.h.
|
friend |
Definition at line 260 of file qpaintengine.h.
|
friend |
Definition at line 261 of file qpaintengine.h.
|
protected |
Definition at line 266 of file qpaintengine.h.
Referenced by QPainterState::QPainterState(), QPainterState::init(), and QMacPrintEnginePrivate::newPage_helper().