I am working with Qt I used to build GUI of my application,
I understand the Signals, witch I am connecting to my def (functions) and that is working how I want to. But beside Signals are Slot, and I don't really get, what is the difference between [signal - function] connection and the [signal - slot] connection
I'm using this stuff this way:
class theOne(QObject):
started = Signal()
def __init__(self):
...
def function(self):
self.started.connect(self.goStart)
self.started.emit()
def goStart(self):
"""some actions"""
Could somebody try to explain me, what are the Slots for? Its about they can take some parameters? But normal functions also does. Thanks for Your time.