Signal¶
Synopsis¶
Functions¶
def connect (receiver) |
def disconnect (receiver) |
def emit (*args) |
Detailed Description¶
The
Signal
class provides a way to declare and connect Qt signals in a pythonic way.PySide adopt PyQt’s new signal and slot syntax as-is. The PySide implementation is functionally compatible with the PyQt 4.5 one, with the exceptions listed bellow.
-
Signal.
connect
(receiver[, type=Qt.AutoConnection])¶ Create a connection between this signal and a receiver, the receiver can be a Python callable, a
Slot
or aSignal
.
-
Signal.
disconnect
(receiver)¶ Disconnect this signal from a receiver, the receiver can be a Python callable, a
Slot
or aSignal
.
-
Signal.
emit
(*args)¶ args is the arguments to pass to any connected slots, if any.