- class QPaintEngine¶
The
QPaintEngine
class provides an abstract definition of howQPainter
draws to a given device on a given platform. More…Synopsis¶
Methods¶
def
__init__()
def
clearDirty()
def
hasFeature()
def
isActive()
def
isExtended()
def
paintDevice()
def
painter()
def
setActive()
def
setDirty()
def
setSystemClip()
def
setSystemRect()
def
syncState()
def
systemClip()
def
systemRect()
def
testDirty()
Virtual methods¶
def
begin()
def
createPixmap()
def
drawEllipse()
def
drawImage()
def
drawLines()
def
drawPath()
def
drawPixmap()
def
drawPoints()
def
drawPolygon()
def
drawRects()
def
drawTextItem()
def
end()
def
type()
def
updateState()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description¶
Qt provides several premade implementations of
QPaintEngine
for the different painter backends we support. The primary paint engine provided is the raster paint engine, which contains a software rasterizer which supports the full feature set on all supported platforms. This is the default for painting on QWidget-based classes in e.g. on Windows, X11 and macOS, it is the backend for painting onQImage
and it is used as a fallback for paint engines that do not support a certain capability. In addition we provideQPaintEngine
implementations for OpenGL (accessible through QOpenGLWidget) and printing (which allows usingQPainter
to draw on a QPrinter object).If one wants to use
QPainter
to draw to a different backend, one must subclassQPaintEngine
and reimplement all its virtual functions. TheQPaintEngine
implementation is then made available by subclassingQPaintDevice
and reimplementing the virtual functionpaintEngine()
.QPaintEngine
is created and owned by theQPaintDevice
that created it.See also
- class PaintEngineFeature¶
(inherits
enum.Flag
) This enum is used to describe the features or capabilities that the paint engine has. If a feature is not supported by the engine,QPainter
will do a best effort to emulate that feature through other means and pass on an alpha blendedQImage
to the engine with the emulated results. Some features cannot be emulated: AlphaBlend and PorterDuff.Constant
Description
QPaintEngine.AlphaBlend
The engine can alpha blend primitives.
QPaintEngine.Antialiasing
The engine can use antialiasing to improve the appearance of rendered primitives.
QPaintEngine.BlendModes
The engine supports blending modes.
QPaintEngine.BrushStroke
The engine supports drawing strokes that contain brushes as fills, not just solid colors (e.g. a dashed gradient line of width 2).
QPaintEngine.ConicalGradientFill
The engine supports conical gradient fills.
QPaintEngine.ConstantOpacity
The engine supports the feature provided by
setOpacity()
.QPaintEngine.LinearGradientFill
The engine supports linear gradient fills.
QPaintEngine.MaskedBrush
The engine is capable of rendering brushes that has a texture with an alpha channel or a mask.
QPaintEngine.ObjectBoundingModeGradients
The engine has native support for gradients with coordinate mode
ObjectBoundingMode
. Otherwise, if QPaintEngine::PatternTransform is supported, object bounding mode gradients are converted to gradients with coordinate modeLogicalMode
and a brush transform for the coordinate mapping.QPaintEngine.PainterPaths
The engine has path support.
QPaintEngine.PaintOutsidePaintEvent
The engine is capable of painting outside of paint events.
QPaintEngine.PatternBrush
The engine is capable of rendering brushes with the brush patterns specified in Qt::BrushStyle.
QPaintEngine.PatternTransform
The engine has support for transforming brush patterns.
QPaintEngine.PerspectiveTransform
The engine has support for performing perspective transformations on primitives.
QPaintEngine.PixmapTransform
The engine can transform pixmaps, including rotation and shearing.
QPaintEngine.PorterDuff
The engine supports Porter-Duff operations
QPaintEngine.PrimitiveTransform
The engine has support for transforming drawing primitives.
QPaintEngine.RadialGradientFill
The engine supports radial gradient fills.
QPaintEngine.RasterOpModes
The engine supports bitwise raster operations.
QPaintEngine.AllFeatures
All of the above features. This enum value is usually used as a bit mask.
- class DirtyFlag¶
Constant
Description
QPaintEngine.DirtyPen
(inherits
enum.Flag
) The pen is dirty and needs to be updated.QPaintEngine.DirtyBrush
The brush is dirty and needs to be updated.
QPaintEngine.DirtyBrushOrigin
The brush origin is dirty and needs to updated.
QPaintEngine.DirtyFont
The font is dirty and needs to be updated.
QPaintEngine.DirtyBackground
The background is dirty and needs to be updated.
QPaintEngine.DirtyBackgroundMode
The background mode is dirty and needs to be updated.
QPaintEngine.DirtyTransform
The transform is dirty and needs to be updated.
QPaintEngine.DirtyClipRegion
The clip region is dirty and needs to be updated.
QPaintEngine.DirtyClipPath
The clip path is dirty and needs to be updated.
QPaintEngine.DirtyHints
The render hints is dirty and needs to be updated.
QPaintEngine.DirtyCompositionMode
The composition mode is dirty and needs to be updated.
QPaintEngine.DirtyClipEnabled
Whether clipping is enabled or not is dirty and needs to be updated.
QPaintEngine.DirtyOpacity
The constant opacity has changed and needs to be updated as part of the state change in
updateState()
.QPaintEngine.AllDirty
Convenience enum used internally.
These types are used by
QPainter
to trigger lazy updates of the various states in theQPaintEngine
usingupdateState()
.A paint engine must update every dirty state.
- class PolygonDrawMode¶
Constant
Description
QPaintEngine.OddEvenMode
The polygon should be drawn using OddEven fill rule.
QPaintEngine.WindingMode
The polygon should be drawn using Winding fill rule.
QPaintEngine.ConvexMode
The polygon is a convex polygon and can be drawn using specialized algorithms where available.
QPaintEngine.PolylineMode
Only the outline of the polygon should be drawn.
- class Type¶
Constant
Description
QPaintEngine.X11
QPaintEngine.Windows
QPaintEngine.MacPrinter
QPaintEngine.CoreGraphics
macOS’s Quartz2D (CoreGraphics)
QPaintEngine.QuickDraw
macOS’s QuickDraw
QPaintEngine.QWindowSystem
Qt for Embedded Linux
QPaintEngine.OpenGL
QPaintEngine.Picture
QPicture
formatQPaintEngine.SVG
Scalable Vector Graphics XML format
QPaintEngine.Raster
QPaintEngine.Direct3D
Windows only, Direct3D based engine
QPaintEngine.Pdf
Portable Document Format
QPaintEngine.OpenVG
QPaintEngine.User
First user type ID
QPaintEngine.MaxUser
Last user type ID
QPaintEngine.OpenGL2
QPaintEngine.PaintBuffer
QPaintEngine.Blitter
QPaintEngine.Direct2D
Windows only, Direct2D based engine
- PySide6.QtGui.QPaintEngine.state¶
- PySide6.QtGui.QPaintEngine.gccaps¶
- PySide6.QtGui.QPaintEngine.active¶
- PySide6.QtGui.QPaintEngine.selfDestruct¶
- PySide6.QtGui.QPaintEngine.extended¶
- __init__([features=QPaintEngine.PaintEngineFeatures()])¶
- Parameters:
features – Combination of
PaintEngineFeature
Creates a paint engine with the featureset specified by
caps
.- abstract begin(pdev)¶
- Parameters:
pdev –
QPaintDevice
- Return type:
bool
Reimplement this function to initialise your paint engine when painting is to start on the paint device
pdev
. Return true if the initialization was successful; otherwise return false.See also
- createPixmapFromImage(image[, flags=Qt.AutoColor])¶
- Parameters:
image –
QImage
flags – Combination of
ImageConversionFlag
- Return type:
This is an overloaded function.
The default implementation of this function calls the floating point version of this function
- drawEllipse(r)
- Parameters:
r –
QRectF
Reimplement this function to draw the largest ellipse that can be contained within rectangle
rect
.The default implementation calls
drawPolygon()
.- drawImage(r, pm, sr[, flags=Qt.AutoColor])¶
- Parameters:
r –
QRectF
pm –
QImage
sr –
QRectF
flags – Combination of
ImageConversionFlag
Reimplement this function to draw the part of the
image
specified by thesr
rectangle in the givenrectangle
using the given conversion flagsflags
, to convert it to a pixmap.This is an overloaded function.
The default implementation converts the first
lineCount
lines inlines
to a QLineF and calls the floating point version of this function.- drawLines(lines, lineCount)
- Parameters:
lines –
QLineF
lineCount – int
The default implementation splits the list of lines in
lines
intolineCount
separate calls todrawPath()
ordrawPolygon()
depending on the feature set of the paint engine.- drawPath(path)¶
- Parameters:
path –
QPainterPath
The default implementation ignores the
path
and does nothing.Reimplement this function to draw the part of the
pm
specified by thesr
rectangle in the givenr
.Draws the first
pointCount
points in the bufferpoints
The default implementation converts the first
pointCount
QPoints inpoints
to QPointFs and calls the floating point version of drawPoints.- drawPoints(points, pointCount)
- Parameters:
points –
QPointF
pointCount – int
Draws the first
pointCount
points in the bufferpoints
- drawPolygon(points, pointCount, mode)¶
- Parameters:
points –
QPoint
pointCount – int
mode –
PolygonDrawMode
This is an overloaded function.
Reimplement this virtual function to draw the polygon defined by the
pointCount
first points inpoints
, using modemode
.Note
At least one of the
drawPolygon()
functions must be reimplemented.- drawPolygon(points, pointCount, mode)
- Parameters:
points –
QPointF
pointCount – int
mode –
PolygonDrawMode
Reimplement this virtual function to draw the polygon defined by the
pointCount
first points inpoints
, using modemode
.Note
At least one of the drawPolygon() functions must be reimplemented.
This is an overloaded function.
The default implementation converts the first
rectCount
rectangles in the bufferrects
to a QRectF and calls the floating point version of this function.- drawRects(rects, rectCount)
- Parameters:
rects –
QRectF
rectCount – int
Draws the first
rectCount
rectangles in the bufferrects
. The default implementation of this function callsdrawPath()
ordrawPolygon()
depending on the feature set of the paint engine.This function draws the text item
textItem
at positionp
. The default implementation of this function converts the text to aQPainterPath
and paints the resulting path.Reimplement this function to draw the
pixmap
in the givenrect
, starting at the givenp
. The pixmap will be drawn repeatedly until therect
is filled.- abstract end()¶
- Return type:
bool
Reimplement this function to finish painting on the current paint device. Return true if painting was finished successfully; otherwise return false.
See also
- hasFeature(feature)¶
- Parameters:
feature – Combination of
PaintEngineFeature
- Return type:
bool
Returns
true
if the paint engine supports the specifiedfeature
; otherwise returnsfalse
.- isActive()¶
- Return type:
bool
Returns
true
if the paint engine is actively drawing; otherwise returnsfalse
.See also
- isExtended()¶
- Return type:
bool
- paintDevice()¶
- Return type:
Returns the device that this engine is painting on, if painting is active; otherwise returns
None
.Returns the paint engine’s painter.
- setActive(newState)¶
- Parameters:
newState – bool
Sets the active state of the paint engine to
state
.See also
- syncState()¶
Reimplement this function to return the paint engine
Type
.- abstract updateState(state)¶
- Parameters:
state –
QPaintEngineState
Reimplement this function to update the state of a paint engine.
When implemented, this function is responsible for checking the paint engine’s current
state
and update the properties that are changed. Use thestate()
function to find out which properties that must be updated, then use the correspondingget function
to retrieve the current values for the given properties.See also