RemoteGraphicsView

class pyqtgraph.widgets.RemoteGraphicsView.RemoteGraphicsView(parent=None, *args, **kwds)[source]

Replacement for GraphicsView that does all scene management and rendering on a remote process, while displaying on the local widget.

GraphicsItems must be created by proxy to the remote process.

__init__(parent=None, *args, **kwds)[source]

The keyword arguments ‘useOpenGL’ and ‘backgound’, if specified, are passed to the remote GraphicsView.__init__(). All other keyword arguments are passed to multiprocess.QtProcess.__init__().

close()[source]

Close the remote process. After this call, the widget will no longer be updated.

enterEvent(self, QEvent)[source]
leaveEvent(self, QEvent)[source]
mouseMoveEvent(self, QMouseEvent)[source]
mousePressEvent(self, QMouseEvent)[source]
mouseReleaseEvent(self, QMouseEvent)[source]
paintEvent(self, QPaintEvent)[source]
remoteProcess()[source]

Return the remote process handle. (see multiprocess.remoteproxy.RemoteEventHandler)

resizeEvent(self, QResizeEvent)[source]
sizeHint(self) → QSize[source]
wheelEvent(self, QWheelEvent)[source]