Class: QgsFieldMappingWidget

class qgis.gui.QgsFieldMappingWidget

Bases: QgsPanelWidget

The QgsFieldMappingWidget class creates a mapping from one set of QgsFields to another, for each set of “destination” fields an expression defines how to obtain the values of the “destination” fields.

New in version 3.14.

QgsFieldMappingWidget(parent: QWidget = None, sourceFields: QgsFields = QgsFields(), destinationFields: QgsFields = QgsFields(), expressions: Dict[str, str] = {}) Constructs a QgsFieldMappingWidget from a set of sourceFields and destinationFields, initial values for the expressions can be optionally specified through expressions which is a map from the original field name to the corresponding expression. A parent object can also be specified.

Methods

actionEvent

appendField

Appends a new field to the model, with an optional expression

changeEvent

childEvent

closeEvent

connectNotify

contextMenuEvent

create

customEvent

destinationEditable

Returns True if the destination fields are editable in the model

destroy

disconnectNotify

dragEnterEvent

dragLeaveEvent

dragMoveEvent

dropEvent

enterEvent

event

fieldPropertyMap

Returns a map of destination field name to QgsProperty definition for field value, representing the current status of the widget.

focusInEvent

focusNextChild

focusNextPrevChild

focusOutEvent

focusPreviousChild

hideEvent

initPainter

inputMethodEvent

isSignalConnected

keyPressEvent

Overridden key press event to handle the esc event on the widget.

keyReleaseEvent

leaveEvent

mapping

Returns a list of Field objects representing the current status of the underlying mapping model

metric

model

Returns the underlying mapping model

mouseDoubleClickEvent

mouseMoveEvent

mousePressEvent

mouseReleaseEvent

moveEvent

moveSelectedFieldsDown

Moves down the currently selected field

moveSelectedFieldsUp

Moves up currently selected field

nativeEvent

paintEvent

receivers

registerExpressionContextGenerator

Register an expression context generator class that will be used to retrieve an expression context for the widget.

removeSelectedFields

Removes the currently selected field from the model

resizeEvent

scrollTo

Scroll the fields view to index

selectionModel

Returns the selection model

sender

senderSignalIndex

setDestinationEditable

Sets the destination fields editable state to editable

setDestinationFields

Set destination fields to destinationFields in the underlying model, initial values for the expressions can be optionally specified through expressions which is a map from the original field name to the corresponding expression.

setFieldPropertyMap

Sets a map of destination field name to QgsProperty definition for field value.

setSourceFields

Set source fields of the underlying mapping model to sourceFields

setSourceLayer

Sets a source layer to use when generating expression previews in the widget.

sharedPainter

showEvent

sourceLayer

Returns the source layer for use when generating expression previews.

tabletEvent

timerEvent

updateMicroFocus

wheelEvent

Signals

changed

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

actionEvent(self, QActionEvent)
appendField(self, field: QgsField, expression: str = '')

Appends a new field to the model, with an optional expression

Parameters:
  • field (QgsField) –

  • expression (str = '') –

changeEvent(self, QEvent)
changed

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.

Parameters:
  • name (str = ...) –

  • revision (int = ...) –

  • arguments (Sequence = ...) –

Return type:

PYQT_SIGNAL

childEvent(self, QChildEvent)
closeEvent(self, QCloseEvent)
connectNotify(self, QMetaMethod)
contextMenuEvent(self, QContextMenuEvent)
create(self, window: PyQt5.sip.voidptr = 0, initializeWindow: bool = True, destroyOldWindow: bool = True)
customEvent(self, QEvent)
destinationEditable(self) bool

Returns True if the destination fields are editable in the model

Return type:

bool

destroy(self, destroyWindow: bool = True, destroySubWindows: bool = True)
disconnectNotify(self, QMetaMethod)
dragEnterEvent(self, QDragEnterEvent)
dragLeaveEvent(self, QDragLeaveEvent)
dragMoveEvent(self, QDragMoveEvent)
dropEvent(self, QDropEvent)
enterEvent(self, QEvent)
event(self, QEvent) bool
fieldPropertyMap(self) Dict[str, QgsProperty]

Returns a map of destination field name to QgsProperty definition for field value, representing the current status of the widget.

Return type:

Dict[str, QgsProperty]

focusInEvent(self, QFocusEvent)
focusNextChild(self) bool
focusNextPrevChild(self, bool) bool
focusOutEvent(self, QFocusEvent)
focusPreviousChild(self) bool
hideEvent(self, QHideEvent)
initPainter(self, QPainter)
inputMethodEvent(self, QInputMethodEvent)
isSignalConnected(self, QMetaMethod) bool
keyPressEvent(self, event: QKeyEvent)

Overridden key press event to handle the esc event on the widget.

Parameters:

event – The key event

keyReleaseEvent(self, QKeyEvent)
leaveEvent(self, QEvent)
mapping(self) List[QgsFieldMappingModel.Field]

Returns a list of Field objects representing the current status of the underlying mapping model

Return type:

List[QgsFieldMappingModel.Field]

metric(self, QPaintDevice.PaintDeviceMetric) int
model(self) QgsFieldMappingModel

Returns the underlying mapping model

Return type:

QgsFieldMappingModel

mouseDoubleClickEvent(self, QMouseEvent)
mouseMoveEvent(self, QMouseEvent)
mousePressEvent(self, QMouseEvent)
mouseReleaseEvent(self, QMouseEvent)
moveEvent(self, QMoveEvent)
moveSelectedFieldsDown(self) bool

Moves down the currently selected field

Return type:

bool

moveSelectedFieldsUp(self) bool

Moves up currently selected field

Return type:

bool

nativeEvent(self, Union[QByteArray, bytes, bytearray], PyQt5.sip.voidptr) Tuple[bool, int]
paintEvent(self, QPaintEvent)
receivers(self, PYQT_SIGNAL) int
registerExpressionContextGenerator(self, generator: QgsExpressionContextGenerator)

Register an expression context generator class that will be used to retrieve an expression context for the widget.

Parameters:

generator (QgsExpressionContextGenerator) –

removeSelectedFields(self) bool

Removes the currently selected field from the model

Return type:

bool

resizeEvent(self, QResizeEvent)
scrollTo(self, index: QModelIndex)

Scroll the fields view to index

Parameters:

index (QModelIndex) –

selectionModel(self) QItemSelectionModel

Returns the selection model

Return type:

QItemSelectionModel

sender(self) QObject
senderSignalIndex(self) int
setDestinationEditable(self, editable: bool)

Sets the destination fields editable state to editable

Parameters:

editable (bool) –

setDestinationFields(self, destinationFields: QgsFields, expressions: Dict[str, str] = {})

Set destination fields to destinationFields in the underlying model, initial values for the expressions can be optionally specified through expressions which is a map from the original field name to the corresponding expression.

Parameters:
  • destinationFields (QgsFields) –

  • expressions (Dict[str) –

setFieldPropertyMap(self, map: Dict[str, QgsProperty])

Sets a map of destination field name to QgsProperty definition for field value.

Parameters:

map (Dict[str) –

setSourceFields(self, sourceFields: QgsFields)

Set source fields of the underlying mapping model to sourceFields

Parameters:

sourceFields (QgsFields) –

setSourceLayer(self, layer: QgsVectorLayer)

Sets a source layer to use when generating expression previews in the widget.

New in version 3.16.

Parameters:

layer (QgsVectorLayer) –

sharedPainter(self) QPainter
showEvent(self, QShowEvent)
sourceLayer(self) QgsVectorLayer

Returns the source layer for use when generating expression previews.

Returned value may be None.

New in version 3.16.

Return type:

QgsVectorLayer

tabletEvent(self, QTabletEvent)
timerEvent(self, QTimerEvent)
updateMicroFocus(self)
wheelEvent(self, QWheelEvent)