QConcatenateTablesProxyModel#

The QConcatenateTablesProxyModel class proxies multiple source models, concatenating their rows. More

Inheritance diagram of PySide6.QtCore.QConcatenateTablesProxyModel

Synopsis#

Functions#

Note

This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE

Detailed Description#

QConcatenateTablesProxyModel takes multiple source models and concatenates their rows.

In other words, the proxy will have all rows of the first source model, followed by all rows of the second source model, and so on.

If the source models don’t have the same number of columns, the proxy will only have as many columns as the source model with the smallest number of columns. Additional columns in other source models will simply be ignored.

Source models can be added and removed at runtime, and the column count is adjusted accordingly.

This proxy does not inherit from QAbstractProxyModel because it uses multiple source models, rather than a single one.

Only flat models (lists and tables) are supported, tree models are not.

class PySide6.QtCore.QConcatenateTablesProxyModel([parent=None])#
Parameters:

parentPySide6.QtCore.QObject

Constructs a concatenate-rows proxy model with the given parent.

PySide6.QtCore.QConcatenateTablesProxyModel.addSourceModel(sourceModel)#
Parameters:

sourceModelPySide6.QtCore.QAbstractItemModel

Adds a source model sourceModel, below all previously added source models.

The ownership of sourceModel is not affected by this.

The same source model cannot be added more than once.

PySide6.QtCore.QConcatenateTablesProxyModel.mapFromSource(sourceIndex)#
Parameters:

sourceIndexPySide6.QtCore.QModelIndex

Return type:

PySide6.QtCore.QModelIndex

Returns the proxy index for a given sourceIndex, which can be from any of the source models.

PySide6.QtCore.QConcatenateTablesProxyModel.mapToSource(proxyIndex)#
Parameters:

proxyIndexPySide6.QtCore.QModelIndex

Return type:

PySide6.QtCore.QModelIndex

Returns the source index for a given proxyIndex.

PySide6.QtCore.QConcatenateTablesProxyModel.removeSourceModel(sourceModel)#
Parameters:

sourceModelPySide6.QtCore.QAbstractItemModel

Removes the source model sourceModel, which was previously added to this proxy.

The ownership of sourceModel is not affected by this.

PySide6.QtCore.QConcatenateTablesProxyModel.sourceModels()#
Return type:

.list of QAbstractItemModel

Returns a list of models that were added as source models for this proxy model.