QwtPlotDirectPainter — PythonQwt 0.14 Manual (original) (raw)

class qwt.plot_directpainter.QwtPlotDirectPainter(parent=None)[source]

Painter object trying to paint incrementally

Often applications want to display samples while they are collected. When there are too many samples complete replots will be expensive to be processed in a collection cycle.

QwtPlotDirectPainter offers an API to paint subsets (f.e all additions points) without erasing/repainting the plot canvas.

On certain environments it might be important to calculate a proper clip region before painting. F.e. for Qt Embedded only the clipped part of the backing store will be copied to a (maybe unaccelerated) frame buffer.

Warning

Incremental painting will only help when no replot is triggered by another operation (like changing scales) and nothing needs to be erased.

Paint attributes:

setAttribute(attribute, on=True)[source]

Change an attribute

Parameters:

testAttribute(attribute)[source]

Parameters:

attribute (int) – Attribute to be tested

Returns:

True, when attribute is enabled

setClipping(enable)[source]

En/Disables clipping

Parameters:

enable (bool) – Enables clipping is true, disable it otherwise

hasClipping()[source]

Returns:

Return true, when clipping is enabled

setClipRegion(region)[source]

Assign a clip region and enable clipping

Depending on the environment setting a proper clip region might improve the performance heavily. F.e. on Qt embedded only the clipped part of the backing store will be copied to a (maybe unaccelerated) frame buffer device.

Parameters:

region (QRegion) – Clip region

clipRegion()[source]

Returns:

Return Currently set clip region.

drawSeries(seriesItem, from_, to)[source]

Draw a set of points of a seriesItem.

When observing a measurement while it is running, new points have to be added to an existing seriesItem. drawSeries() can be used to display them avoiding a complete redraw of the canvas.

Setting plot().canvas().setAttribute(Qt.WA_PaintOutsidePaintEvent, True)will result in faster painting, if the paint engine of the canvas widget supports this feature.

Parameters:

reset()[source]

Close the internal QPainter

eventFilter(self, a0: QObject | None, a1: QEvent | None) → bool[source]