• PySide 模块
  • PySide.QtGui
  • 内容表

    上一话题

    QDirModel

    下一话题

    QSortFilterProxyModel

    QAbstractProxyModel

    继承者: QSortFilterProxyModel

    概要

    函数

    虚函数

    详细描述

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

    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 PySide.QtGui.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 PySide.QtGui.QSortFilterProxyModel .

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

    注意

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

    class PySide.QtGui. QAbstractProxyModel ( [ parent=None ] )
    参数: parent PySide.QtCore.QObject

    Constructs a proxy model with the given parent .

    PySide.QtGui.QAbstractProxyModel. mapFromSource ( sourceIndex )
    参数: sourceIndex PySide.QtCore.QModelIndex
    返回类型: PySide.QtCore.QModelIndex

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

    PySide.QtGui.QAbstractProxyModel. mapSelectionFromSource ( selection )
    参数: selection PySide.QtGui.QItemSelection
    返回类型: PySide.QtGui.QItemSelection

    Returns a proxy selection mapped from the specified sourceSelection .

    Reimplement this method to map source selections to proxy selections.

    PySide.QtGui.QAbstractProxyModel. mapSelectionToSource ( selection )
    参数: selection PySide.QtGui.QItemSelection
    返回类型: PySide.QtGui.QItemSelection

    Returns a source selection mapped from the specified proxySelection .

    Reimplement this method to map proxy selections to source selections.

    PySide.QtGui.QAbstractProxyModel. mapToSource ( proxyIndex )
    参数: proxyIndex PySide.QtCore.QModelIndex
    返回类型: PySide.QtCore.QModelIndex

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

    PySide.QtGui.QAbstractProxyModel. setSourceModel ( sourceModel )
    参数: sourceModel PySide.QtCore.QAbstractItemModel

    设置给定 sourceModel to be processed by the proxy model.

    PySide.QtGui.QAbstractProxyModel. sourceModel ( )
    返回类型: PySide.QtCore.QAbstractItemModel

    Returns the model that contains the data that is available through the proxy model.