<div dir="ltr"><div dir="ltr"><div>Hello,</div><div><br></div><div>As the doc of 'itemChanged' signal of QStandardItemModel class (<a href="http://doc.qt.io/qt-5/qstandarditemmodel.html#itemChanged">http://doc.qt.io/qt-5/qstandarditemmodel.html#itemChanged</a>) states: the parameter to be emitted is QStandardItem *item, which is the point to the item, and in the Python program, we usually can write the following slot to connect to:</div><div>def on_item_changed(self, item):</div><div>    pass</div><div><br></div><div>While not put decorator @pyqtSlot() atop, since @pyqtSlot(QStandardItem) is not right, @pyqtSlot('QStandardItem*') works. And here is my question: If I wanna trigger this signal emitting in a function, how can I pass the parameter to itemChanged?</div><div><br></div><div>Thanks,</div><div>Tong<br></div><div><br></div></div></div>