MM
Size: a a a
MM
MM
AS
AS
AS
AS
AS
MM
AS
AS
MM
AS
AS
MM
MM
MM
AS
MM
AS
Connecting Slots By Name
PyQt5 supports the connectSlotsByName() function that is most commonly used by pyuic5 generated Python code to automatically connect signals to slots that conform to a simple naming convention. However, where a class has overloaded Qt signals (ie. with the same name but with different arguments) PyQt5 needs additional information in order to automatically connect the correct signal.
For example the QSpinBox class has the following signals:
void valueChanged(int i);
void valueChanged(const QString &text);