Class: QgsSensorGuiRegistry

Registry of available sensor GUI behavior.

QgsSensorGuiRegistry is not usually directly created, but rather accessed through QgsGui.sensorGuiRegistry().

This acts as a companion to QgsSensorRegistry, handling only the components related to the GUI behavior of sensors.

Added in version 3.32.

Class Hierarchy

Inheritance diagram of qgis.gui.QgsSensorGuiRegistry

Base classes

QObject

class qgis.gui.QgsSensorGuiRegistry[source]

Bases: QObject

__init__(parent: QObject | None = None)

Creates a new empty sensor GUI registry.

QgsSensorGuiRegistry is not usually directly created, but rather accessed through QgsGui.sensorGuiRegistry().

Parameters:

parent (Optional[QObject] = None)

addSensorGuiMetadata(self, metadata: QgsSensorAbstractGuiMetadata | None) bool[source]

Registers the GUI metadata for a new sensor type. Takes ownership of the metadata instance.

Parameters:

metadata (Optional[QgsSensorAbstractGuiMetadata])

Return type:

bool

createSensor(self, type: str | None, parent: QObject | None = None) QgsAbstractSensor | None[source]

Creates a new instance of a sensor given the type.

Parameters:
  • type (Optional[str])

  • parent (Optional[QObject] = None)

Return type:

Optional[QgsAbstractSensor]

createSensorWidget(self, sensor: QgsAbstractSensor | None) QgsAbstractSensorWidget | None[source]

Creates a new instance of a sensor configuration widget for the specified sensor. The sensor doesn’t need to live for the duration of the widget, it is only used when creating the configuration widget to match a sensor type and initiate the widget to match the sensor settings.

Parameters:

sensor (Optional[QgsAbstractSensor])

Return type:

Optional[QgsAbstractSensorWidget]

populate(self) bool[source]

Populates the registry with standard sensor types. If called on a non-empty registry then this will have no effect and will return False.

Return type:

bool

signal sensorAdded[source]

pyqtSignal(*types, name: str = …, revision: int = …, arguments: Sequence = …) -> PYQT_SIGNAL

types is normally a sequence of individual types. Each type is either a type object or a string that is the name of a C++ type. Alternatively each type could itself be a sequence of types each describing a different overloaded signal. name is the optional C++ name of the signal. If it is not specified then the name of the class attribute that is bound to the signal is used. revision is the optional revision of the signal that is exported to QML. If it is not specified then 0 is used. arguments is the optional sequence of the names of the signal’s arguments.

sensorMetadata(self, type: str | None) QgsSensorAbstractGuiMetadata | None[source]

Returns the metadata for the specified sensor type. Returns None if a corresponding sensor type was not found in the registry.

Parameters:

type (Optional[str])

Return type:

Optional[QgsSensorAbstractGuiMetadata]

sensorTypes(self) Dict[str, str]

Returns a list of sensor types handled by the registry.

Return type:

Dict[str, str]