I started with signals and slots follwing the exercise at zetcode

button.clicked.connect(self.onClicked)

button = QGui.QPushButton()

if button is the object created

then what is clicked and connect

from what i understand if clicked is an event that occurred, so is it method defined inside QPushButton ?

what is connect then ?