3

我想知道如何在 Qt 框架中实现自己的 QAbstractItemModel::span 函数?我知道 Qt5 还没有实现这个功能。

我尝试为我自己编写的模型重新实现该功能,并通过使用 span() 来利用 span 功能。第一次尝试根本没有成功。因此,我在该重新实现的函数中设置了一个断点。我意识到 Qt 永远不会触发该功能(断点未命中)。

可以帮助我如何实现该功能,这样我就不必在视图控制器中使用 setSpan 了吗?

4

1 回答 1

3

感谢 Daniel Castro,我通过以下方式解决了这个问题:

重新实现 QAbstractItemView 的 setModel:

void View_DndLinBatch::setModel(QAbstractItemModel *model)
{
    QTableView::setModel(model);

    for (int row = 0; row < this->model()->rowCount(); row++)
    {
        for (int col = 0; col < this->model()->columnCount(); col++)
        {
            QSize span = this->model()->span(this->model()->index(row, col));
            this->setSpan(row, col, span.height(), span.width());
        }
    }
}

并重新实现 QAbstractItemModel 的 span 函数:

QSize model_DndLinBatch::span(const QModelIndex &index) const
{
    if (index.column() == 0)
    {
        return QSize(2,1);
    }
    else
    {
        return QAbstractItemModel::span(index);
    }
}
于 2013-09-16T19:49:53.103 回答