The QIdentityProxyModel class proxies its source model unmodified More...
#include <QIdentityProxyModel>
Inherits: QAbstractProxyModel.
This class was introduced in Qt 4.8.
QIdentityProxyModel ( QObject * parent = 0 ) | |
~QIdentityProxyModel () |
virtual int | columnCount ( const QModelIndex & parent = QModelIndex() ) const |
virtual bool | dropMimeData ( const QMimeData * data, Qt::DropAction action, int row, int column, const QModelIndex & parent ) |
virtual QModelIndex | index ( int row, int column, const QModelIndex & parent = QModelIndex() ) const |
virtual bool | insertColumns ( int column, int count, const QModelIndex & parent = QModelIndex() ) |
virtual bool | insertRows ( int row, int count, const QModelIndex & parent = QModelIndex() ) |
virtual QModelIndex | mapFromSource ( const QModelIndex & sourceIndex ) const |
virtual QItemSelection | mapSelectionFromSource ( const QItemSelection & selection ) const |
virtual QItemSelection | mapSelectionToSource ( const QItemSelection & selection ) const |
virtual QModelIndex | mapToSource ( const QModelIndex & proxyIndex ) const |
virtual QModelIndexList | match ( const QModelIndex & start, int role, const QVariant & value, int hits = 1, Qt::MatchFlags flags = Qt::MatchFlags( Qt::MatchStartsWith | Qt::MatchWrap ) ) const |
virtual QModelIndex | parent ( const QModelIndex & child ) const |
virtual bool | removeColumns ( int column, int count, const QModelIndex & parent = QModelIndex() ) |
virtual bool | removeRows ( int row, int count, const QModelIndex & parent = QModelIndex() ) |
virtual int | rowCount ( const QModelIndex & parent = QModelIndex() ) const |
virtual void | setSourceModel ( QAbstractItemModel * newSourceModel ) |
The QIdentityProxyModel class proxies its source model unmodified
QIdentityProxyModel can be used to forward the structure of a source model exactly, with no sorting, filtering or other transformation. This is similar in concept to an identity matrix where A.I = A.
Because it does no sorting or filtering, this class is most suitable to proxy models which transform the data() of the source model. For example, a proxy model could be created to define the font used, or the background colour, or the tooltip etc. This removes the need to implement all data handling in the same class that creates the structure of the model, and can also be used to create re-usable components.
This also provides a way to change the data in the case where a source model is supplied by a third party which can not be modified.
class DateFormatProxyModel : public QIdentityProxyModel { // ... void setDateFormatString(const QString &formatString) { m_formatString = formatString; } QVariant data(const QModelIndex &index, int role) { if (role != Qt::DisplayRole) return QIdentityProxyModel::data(index, role); const QDateTime dateTime = sourceModel()->data(SourceClass::DateRole).toDateTime(); return dateTime.toString(m_formatString); } private: QString m_formatString; };
See also QAbstractProxyModel, Model/View Programming, and QAbstractItemModel.
Constructs an identity model with the given parent.
Destroys this identity model.
Reimplemented from QAbstractItemModel::columnCount().
Reimplemented from QAbstractItemModel::dropMimeData().
Reimplemented from QAbstractItemModel::index().
Reimplemented from QAbstractItemModel::insertColumns().
Reimplemented from QAbstractItemModel::insertRows().
Reimplemented from QAbstractProxyModel::mapFromSource().
Reimplemented from QAbstractProxyModel::mapSelectionFromSource().
Reimplemented from QAbstractProxyModel::mapSelectionToSource().
Reimplemented from QAbstractProxyModel::mapToSource().
Reimplemented from QAbstractItemModel::match().
Reimplemented from QAbstractItemModel::parent().
Reimplemented from QAbstractItemModel::removeColumns().
Reimplemented from QAbstractItemModel::removeRows().
Reimplemented from QAbstractItemModel::rowCount().
Reimplemented from QAbstractProxyModel::setSourceModel().