How To Use Pyqt Signals And Slots

Posted onby

And now we will go deeper into the work with Qt using PyQt5, taking advantage of modern Qt features. By such possibilities I mean QtQuick and QML. PyQt5 allows you to use Qt classes that can process QML code, and therefore you can write an interface to QML, and also send signals to the QML layer and invoke slots of objects inherited from QObject from the QML layer.

PyQt5 - Lesson 007. Works with QML QtQuick (Signals and slots). And now we will go deeper into the work with Qt using PyQt5, taking advantage of modern Qt features. By such possibilities I mean QtQuick and QML. PyQt5 allows you to use Qt classes that can. Sending Python values with signals and slots On the #pyqt channel on Freenode, Khertan asked about sending Python values via Qt's signals and slots mechanism. The following example uses the PyQtPyObject value declaration with an old-style signal-slot connection, and again when the signal is emitted, to communicate a Python dictionary. 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.

To get meet with such possibilities of PyQt5, we will write a program that implements the following tasks:

  • The program interface should be written in QML
  • A class inherited from QObject and written in python must be implemented, with which we will interact from QML
  • An application using this class will need to add and subtract integers

Appearance of the application should look like this:

Project structure

There will be only two files in the project:

  • __main__.py - File application in python, there will also be a class for calculations
  • main.qml - Interface file on QML

How To Use Pyqt Signals And Slots Using

Signals in PyQt5

How To Use Pyqt Signals And Slots

The signal signature in the general case will look like this:

PyQt5.QtCore.pyqtSignal ( types [, name [, revision=0 [, arguments=[] ]]])

Create one or more overloaded unbound signals as a class attribute.

Parameters:
  • types – the types that define the C++ signature of the signal. Each type may be a Python type object or a string that is the name of a C++ type. Alternatively each may be a sequence of type arguments. In this case each sequence defines the signature of a different signal overload. The first overload will be the default.
  • name – the name of the signal. If it is omitted then the name of the class attribute is used. This may only be given as a keyword argument.
  • revision – the revision of the signal that is exported to QML. This may only be given as a keyword argument.
  • arguments – the sequence of the names of the signal’s arguments that is exported to QML. This may only be given as a keyword argument.

Slots in PyQt5

To define slots in PyQt5, a special decorator is used.

PyQt5.QtCore.pyqtSlot ( types [, name [, result [, revision=0 ]]])

Parameters:
  • types – the types that define the C++ signature of the slot. Each type may be a Python type object or a string that is the name of a C++ type.
  • name – the name of the slot that will be seen by C++. If omitted the name of the Python method being decorated will be used. This may only be given as a keyword argument.
  • revision – the revision of the slot that is exported to QML. This may only be given as a keyword argument.
  • result – the type of the result and may be a Python type object or a string that specifies a C++ type. This may only be given as a keyword argument.

__main__.py

main.qml

QGIS Tutorials

This tutorial is part of our QGIS tutorial series:

This is a brief explanation of the concept of signal and slot in PyQt5, which is the GUI framework for QGIS plugins.

In summary, this very much resembles events and callbacks in JavaScript. It's an asynchronous mechanism to let one part of a program know when another part of a program was updated, which is a most crucial concept in GUI programming. You master signal/slot, you master a whole lot about plugin development in QGIS.

General concept

Generally a signal is a trigger which can be emitted (hence the term signal) and carry an arbitrary amount of information when it is emitted.

The signal can be connected to a slot, which needs to be Python callable (in other words, a method or a class, anything implementing the __call__ magic), which can be any arbitrary function. The slot can accept the information which is emitted by the signal to process it further.

This is useful when one object needs to know about the actions of another object. For instance, if your plugin features a button that should paste the clipboard contents into a text field, then your plugin would need to know which function to call once the button is clicked. This is typically done via signal and slot.

Signal

A signalhas to be a class attribute of a descendant of QObject. Any QGIS widget and almost all GUI classes are descendants of QObject (i.e. have QObject as the very basic parent class) and they all come with predefined signals, such as QgsFilterLineEdit's valueChanged signal, which is triggered when a user changes the text of the widget.

Definition

A signal has the general definition of PyQt5.QtCore.pyqtSignal(types), where types will be the data type(s) a signal can emit:

  • any basic Python data type (int, str, list etc.) or C++ type. In the latter case it needs to be defined as a string, e.g. pyqtSignal(int) or pyqtSignal('QgsPointXY')
  • multiple Python or C++ types, which will emit several values, e.g. pyqtSignal(int, str) will take two arguments
  • multiple sequences, which will create multiple versions of the signal, i.e. signal overloads, e.g. pyqtSignal([int], ['QgsPointXY'])

The first two options are fairly easy to grasp. However, the latter is a little more mysterious. Basically, overloaded signatures are a way to define the same object or class in multiple ways (you might call it Schrödinger's signal). The concept of overloaded class definitions is not really a thing in Python, though it can be done. If you define a signal with overloaded signatures, it's like you're creating the same object multiple times with different arguments, e.g. the example above would translate to:

How to use pyqt signals and slots free

This method to define a signal is a little more elaborate as we'll see soon, but very handy.

Methods

connect()

This method connects the signal to a slot. I.e. the signal can connect to a function, which takes its arguments and does something with them. For all practical purposes, you'll only need to pass the slot function to connect(). Each signal can connect to an arbitrary amount of slot functions.

disconnect()

Often you want to disconnect a slot from its signal to control whether the slot function should still be executed when the signal is triggered. You can either pass the specific slot function or nothing, in which case all slots for the signal will be disconnected.

emit()

When called, it emits values of the data types you specified when defining the signal (if any). These values have to be in the same order as in the definition, i.e. if pyqtSignal(int, str) was the definition, the signal needs to e.g. emit(4, 'blabla'), not emit('blabla', 4).

Examples

How To Use Pyqt Signals And Slots

Let's see how this would work with more practical examples. To more relate to QGIS plugins, I'll use a similar (harshly abstracted) barebone structure as in our Interactive QGIS Plugin tutorial to depict the general usage when e.g. defining a new Map Tool (QgsMapTool).

Simple Example

This is only non-working pseudo-code, which will just demonstrate the general usage. A map tool is created which implements a canvasReleaseEvent event emitting a custom signal when triggered. This signal connects to a custom slot function in the main plugin code.

So, this hypothetical plugin would capture the point clicked by a user upon releasing the mouse button and print the WKT (Well Known Text) representation of that point to the Python console. Not very useful, I know, but I hope it gets the point across.

Overloaded signal example

How To Use Pyqt Signals And Slots Free

Let's get a little fancier and say we want to print the distance of that point to our location when we click the mouse, but the WKT representation when we release the mouse button.

We can achieve this with the exact same signal if we define it with an overloaded signature. Yep, finally seeing how a Schrödinger's signal can work:

We now defined another canvasPressEvent, which will be triggered if the user presses the map canvas while the NewMapTool is active.

Since we defined our canvasClicked event now with the overloaded signature pyqtSignal([int], ['QgsPointXY']), we need to watch out that we only call the right signature for connect() and emit(). If we would omit the specific signature when calling these functions, they would use the first signature they find, which would be int in this case.

We connected both signatures to separate functions. Now, when the user clicks in the map canvas, the distance of the point to 13.413513, 52.491019 will be printed (*), when he releases the mouse button, the point's WKT representation will be printed.

How To Use Pyqt Signals And Slots Games

Be aware however, that overloaded signatures have a catch: the Python data types in the pyqtSignal definition are converted to C++ types and some combinations can lead to undesired outcomes. E.g. pyqtSignal(, [dict]) will be converted to the same C++ data type. Calling emit() or connect() on the dict signature will be interpreted as calling the method on the list signature instead.

Pyqt Signals And Slots

(*) Note, that those coordinates are in X, Y WGS84. The point captured by the canvasPressEvent depends on the map canvas CRS which is likely different, so you'd need to transform. Even if it were WGS84, the distance would be in degrees.