Class: QgsMapViewsManager

class qgis.core.QgsMapViewsManager

Bases: PyQt5.QtCore.QObject

Manages storage of a set of views.

QgsMapViewsManager handles the storage, serializing and deserializing of views. Usually this class is not constructed directly, but rather accessed through a QgsProject via QgsProject.viewsManager().

New in version 3.24.

QgsMapViewsManager(project: QgsProject) Constructor for QgsMapViewsManager. The project will become the parent object for this manager.

Methods

childEvent

clear

Removes and deletes all views from the manager.

connectNotify

customEvent

disconnectNotify

isSignalConnected

readXml

Reads the manager's state from a DOM element, restoring all views present in the XML document

receivers

remove3DView

Removes the configuration of the 3D view named name

rename3DView

Renames the 3D view named oldTitle to newTitle

sender

senderSignalIndex

timerEvent

writeXml

Returns a DOM element representing the state of the manager.

Signals

views3DListChanged

Emitted when the views list has changed (whenever a view was removed, added, renamed..) [signal]

childEvent(self, QChildEvent)
clear(self)

Removes and deletes all views from the manager.

connectNotify(self, QMetaMethod)
customEvent(self, QEvent)
disconnectNotify(self, QMetaMethod)
isSignalConnected(self, QMetaMethod) bool
readXml(self, element: QDomElement, doc: QDomDocument) bool

Reads the manager’s state from a DOM element, restoring all views present in the XML document

See also

writeXml()

Parameters
  • element (QDomElement) –

  • doc (QDomDocument) –

Return type

bool

receivers(self, PYQT_SIGNAL) int
remove3DView(self, name: str)

Removes the configuration of the 3D view named name

Parameters

name (str) –

rename3DView(self, oldTitle: str, newTitle: str)

Renames the 3D view named oldTitle to newTitle

Parameters
  • oldTitle (str) –

  • newTitle (str) –

sender(self) QObject
senderSignalIndex(self) int
timerEvent(self, QTimerEvent)
views3DListChanged

Emitted when the views list has changed (whenever a view was removed, added, renamed..) [signal]

writeXml(self, doc: QDomDocument) QDomElement

Returns a DOM element representing the state of the manager.

See also

readXml()

Parameters

doc (QDomDocument) –

Return type

QDomElement