I'm not clear on how to make an object emit a signal without
subclassing, with the new style emits.

ie, old style:

    myscene.emit(
        QtCore.SIGNAL("itemClicked(QGraphicsSceneMouseEvent*)"
        ,ev
        )

Where as if I subclass:

    class MyScene(QtGui.QGraphicsScene):
        touchedItem = QtCore.pyqtSignal( QtGui.QGraphicsSceneMouseEvent)
        def __init__(self,parent=None):
            QtGui.QGraphicsScene.__init__(self,parent)

then I could use

myscene.touchedItem.emit(ev)





_______________________________________________
PyQt mailing list    [email protected]
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Reply via email to