Christoph Acs
Christoph Acs

Reputation: 51

Access engine root context in dynamically created QQuickPaintedItem

Is it possible to access engine root context in dynamically created QQuickPaintedItem, without a global reference ?

class LiveStream(QQuickPaintedItem):

    def __init__(self):
        QQuickPaintedItem.__init__(self)
        self.backend = root_ctx.contextProperty("backend") # <- I want to remove/change this global reference
        # self.getRootContext() <- Is there such a function, I cant find such a function on documentaion 
        ...

if __name__ == "__main__":
    app = QApplication()
    engine = QQmlApplicationEngine()
    url = QUrl.fromLocalFile(MAIN_QML)
    root_ctx = engine.rootContext()
    main = MainWindow(root_ctx, engine)
    root_ctx.setContextProperty("backend", main)
    qmlRegisterType(LiveStream, "video", 1, 0, "LiveStream")
    engine.load(url)

On QML side i do this

function add_stream(camera, pane, pane_id) {
    Qt.createQmlObject(`
    import video 1.0
    LiveStream {
        width: ${pane.width}
        height: ${pane.height}
        stream_id: '${camera.id}'
        stream_name: '${camera.name}'
        anchors.fill: parent
    }`, pane);
}

I am very new to pyside or qt/qml so any help would be very nice. Thanks

Upvotes: 0

Views: 128

Answers (1)

Christoph
Christoph

Reputation: 1058

Add a Qt property to Livestream and reference this on qml side.

Upvotes: 1

Related Questions