我有2个型号:
MyModel
(inherits QAbstractItemModel
,其树)和MyProxyModel
(inherits QSortFilterProxyModel
)。
MyModel的列数为1,MyModel中的项包含应使用MyProxyModel在QTableView中显示的信息。我将MyProxyModel与MyProxyModel::columnCount() == 5
一起使用。
我重载了函数MyProxyModel::data()
。但表视图仅显示第1列(MyModel::columnCount
)的数据。
调试后,我发现MyProxyModel::data()
仅获得column < MyModel::columnCount()
的索引(似乎它使用MyModel::columnCount()
并忽略MyProxyModel::columnCount()
)。
在表格视图中,标题部分的数量等于MyProxyModel::columnCount()
(没关系;))。
如何在column > MyModel::columnCount()
?
MyModel.cpp:
int MyModel::columnCount(const QModelIndex& parent) const
{
return 1;
}
MyProxyModel.cpp:
int MyProxyModel::columnCount(const QModelIndex& parent) const
{
return 5;
}
QVariant MyProxyModel::data(const QModelIndex& index, int role) const
{
const int r = index.row(),
c = index.column();
QModelIndex itemIndex = itemIndex = this->index(r, 0, index.parent());
itemIndex = mapToSource(itemIndex);
MyModel model = dynamic_cast<ItemsModel*>(sourceModel());
Item* item = model->getItem(itemIndex);
if(role == Qt::DisplayRole)
{
if(c == 0)
{
return model->data(itemIndex, role);
}
return item->infoForColumn(c);
}
return QSortFilterProxyModel::data(index, role)
}
答案 0 :(得分:1)
正如Krzysztof Ciebiera所说的那样,没有多少话:你的data
和columnCount
方法从未被调用,因为它们没有被正确声明。您应该实现的虚拟方法具有签名
int columnCount(const QModelIndex&) const;
QVariant data(const QModelIndex&, int) const;
虽然您的方法有不同的签名
int columnCount(QModelIndex&) const;
QVariant data(QModelIndex&, int);
因此他们不会被召唤。请注意,您的方法错误地期望对模型索引的非const引用。您的data()
方法也需要非const对象实例。