6

我注意到 QML 可以使用 Connections 对象接收从 Python 发出的信号。不幸的是,我不知道如何让该对象接收该信号的参数。

我创建了一个最小的测试用例来演示我想要做什么:

最小的.py

from PySide import QtCore, QtGui, QtDeclarative
import sys

# init Qt
app = QtGui.QApplication(sys.argv)

# set up the signal
class Signaller(QtCore.QObject):
    emitted = QtCore.Signal(str)

signaller = Signaller()

# Load the QML
qt_view = QtDeclarative.QDeclarativeView()
context = qt_view.rootContext()
context.setContextProperty('signaller', signaller)
qt_view.setResizeMode(QtDeclarative.QDeclarativeView.SizeRootObjectToView)
qt_view.setSource('min.qml')
qt_view.show()

# launch the signal
signaller.emitted.emit("Please display THIS text!")

# Run!
app.exec_()

和 min.qml

import QtQuick 1.0

Rectangle {
    width:300; height:100

    Text {
        id: display
        text: "No signal yet detected!"

        Connections {
            target: signaller
            onEmitted: {
                display.text = "???" //how to get the argument?
            }
        }
    }
}
4

3 回答 3

6

从 Qt for Python 5.12.5、5.13.1 开始,它的工作方式与 PyQt 中的相同:

from PySide2.QtCore import Signal

sumResult = Signal(int, arguments=['sum'])
sumResult.emit(42)

质量管理体系:

onSumResult: console.log(sum)
于 2019-09-13T18:02:23.633 回答
5

从 Qt 4.8 开始,PySide 根本不处理信号参数名称。

但是您可以使用命名参数创建一个 QML 信号,并使用 Javascript 将您的 python 信号连接到它:

import QtQuick 1.0

Rectangle {
    width:300; height:100


    Text {
        id: display
        text: "No signal yet detected!"

        signal reemitted(string text)
        Component.onCompleted: signaller.emitted.connect(reemitted)

        onReemitted: {
          display.text = text;        
        }
    }
}
于 2012-05-08T22:35:18.820 回答
0

对不起,我不能发表评论,因为我需要有更高的声誉。响应“无法分配给不存在的属性”,这是由您初始化应用程序的顺序引起的。您的根上下文对象需要在引擎之前创建。

好的:

context = Context() engine = QQmlApplicationEngine() engine.rootContext().setContextProperty("context", context)

不好:

engine = QQmlApplicationEngine() context = Context() engine.rootContext().setContextProperty("context", context)

于 2020-04-14T21:14:28.057 回答