Functions or methods are executed in response to user’s actions like clicking
on a button, selecting an item from a collection or a mouse click etc., called events
.
Each PyQt widget, which is derived from QObject
class, is designed to emit signal in response to one or more events. The signal on its own does not perform any action. Instead, it is connected to a slot.
In the following example, two QPushButton
objects (b1
and b2
) are added in QDialog
window. We want to call functions b1_clicked()
and b2_clicked()
on clicking b1
and b2
respectively.
When b1
is clicked, the clicked()
signal is connected to b1_clicked()
function
b1.clicked.connect(b1_clicked())
When b2
is clicked, the clicked()
signal is connected to b2_clicked()
function
QObject.connect(b2, SIGNAL("clicked()"), b2_clicked)
Widgets used to build the GUI interface act as the source of such events.
Each PyQt widget, which is derived from QObject
class, is designed to emit signal in response to one or more events. The signal on its own does not perform any action. Instead, it is connected to a slot. The slot can be any callable Python function.