QAbstractProxyModel

The QAbstractProxyModel class provides a base class for proxy item models that can do sorting, filtering or other data processing tasks. More

Inheritance diagram of PySide2.QtCore.QAbstractProxyModel

Inherited by: QIdentityProxyModel, QSortFilterProxyModel, QTransposeProxyModel

Synopsis

Functions

Virtual functions

Detailed Description

This class defines the standard interface that proxy models must use to be able to interoperate correctly with other model/view components. It is not supposed to be instantiated directly.

All standard proxy models are derived from the QAbstractProxyModel class. If you need to create a new proxy model class, it is usually better to subclass an existing class that provides the closest behavior to the one you want to provide.

Proxy models that filter or sort items of data from a source model should be created by using or subclassing QSortFilterProxyModel .

To subclass QAbstractProxyModel , you need to implement mapFromSource() and mapToSource() . The mapSelectionFromSource() and mapSelectionToSource() functions only need to be reimplemented if you need a behavior different from the default behavior.

Note

If the source model is deleted or no source model is specified, the proxy model operates on a empty placeholder model.

class PySide2.QtCore.QAbstractProxyModel([parent=None])
param parent:

PySide2.QtCore.QObject

Constructs a proxy model with the given parent .

PySide2.QtCore.QAbstractProxyModel.mapFromSource(sourceIndex)
Parameters:

sourceIndexPySide2.QtCore.QModelIndex

Return type:

PySide2.QtCore.QModelIndex

Reimplement this function to return the model index in the proxy model that corresponds to the sourceIndex from the source model.

See also

mapToSource()

PySide2.QtCore.QAbstractProxyModel.mapSelectionFromSource(selection)
Parameters:

selectionPySide2.QtCore.QItemSelection

Return type:

PySide2.QtCore.QItemSelection

Returns a proxy selection mapped from the specified sourceSelection .

Reimplement this method to map source selections to proxy selections.

PySide2.QtCore.QAbstractProxyModel.mapSelectionToSource(selection)
Parameters:

selectionPySide2.QtCore.QItemSelection

Return type:

PySide2.QtCore.QItemSelection

Returns a source selection mapped from the specified proxySelection .

Reimplement this method to map proxy selections to source selections.

PySide2.QtCore.QAbstractProxyModel.mapToSource(proxyIndex)
Parameters:

proxyIndexPySide2.QtCore.QModelIndex

Return type:

PySide2.QtCore.QModelIndex

Reimplement this function to return the model index in the source model that corresponds to the proxyIndex in the proxy model.

See also

mapFromSource()

PySide2.QtCore.QAbstractProxyModel.setSourceModel(sourceModel)
Parameters:

sourceModelPySide2.QtCore.QAbstractItemModel

This property holds the source model of this proxy model..

PySide2.QtCore.QAbstractProxyModel.sourceModel()
Return type:

PySide2.QtCore.QAbstractItemModel

This property holds the source model of this proxy model..