Skip to content
Snippets Groups Projects
Commit 8ab37587 authored by David Li's avatar David Li Committed by Pospelov, Gennady
Browse files

TestVProxyModel "Feinschliff"

parent 4efe2c3f
No related branches found
No related tags found
No related merge requests found
......@@ -220,21 +220,6 @@ void TestProxyModel::setSourceModel(QAbstractItemModel *source)
this, SIGNAL(layoutChanged()));
}
QModelIndex TestProxyModel::mapFromSource(const QModelIndex &sourceIndex) const
{
return createIndex(sourceIndex.row(), sourceIndex.column(), sourceIndex.internalPointer());
}
QModelIndex TestProxyModel::mapToSource(const QModelIndex &proxyIndex) const
{
ParameterizedItem *item = static_cast<ParameterizedItem*>(proxyIndex.internalPointer());
if (!item) {
return QModelIndex();
}
return m_source->index(proxyIndex.row(), proxyIndex.column(),
item->parent()->index());
}
QModelIndex TestProxyModel::index(int row, int column, const QModelIndex &parent) const
{
const QModelIndex sourceParent = mapToSource(parent);
......
......@@ -49,8 +49,6 @@ class TestProxyModel : public QIdentityProxyModel
public:
TestProxyModel(QObject *parent = 0);
void setSourceModel(QAbstractItemModel *source);
QModelIndex mapFromSource(const QModelIndex& sourceIndex) const;
QModelIndex mapToSource(const QModelIndex& proxyIndex) const;
QModelIndex index(int row, int column, const QModelIndex& parent) const;
QModelIndex parent(const QModelIndex& child) const;
int rowCount(const QModelIndex& parent) const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment