8

有什么方法可以获取当前可见项目的列表QAbstractItemView吗?并且,如果可能的话,接收有关更改此列表的任何通知。

Upd:我问QAbstractItemViewQTreeView是非简单结构,而不是QTableView.

Upd2:我正在使用复选框实现树视图模型。我想要下一个行为(检查/取消检查相同):

  • 如果选中其中一个复选框 - 则必须选中所有子项
  • 如果所有子复选框都被选中 - 那么父复选框也应该被选中。对于父母的父母也是如此,依此类推......

检查状态由外部数据源监控/修改,因此我需要一种机制来更新所有更改的子/父。dataChanged信号对我来说是不够的,因为构建所有更改QModelIndex以进行更新的列表非常广泛。而且根本没有必要,因为所有新数据都将从QAbstractItemModel::data.

我发现下一个肮脏的黑客来更新所有项目:emit dataChanged( QModelIndex(), QModelIndex() );但它没有记录无效索引。

所以,我需要一种方法来强制所有可见项目用新数据重新绘制它们的内容。

4

5 回答 5

12

您可以通过调用获得左上角和右下角的单元格:

tableview->indexAt(tableview->rect().topLeft())
tableview->indexAt(tableview->rect().bottomRight())

要获得更改通知,请重新实现 qabstractscrollarea 的虚函数

scrollContentsBy

滚动视口时调用此函数。调用 QTableView::scrollContentsBy 然后做任何你需要的事情。

于 2013-04-04T17:44:20.143 回答
4

对于QTreeView,可以像这样遍历可见项的列表:

QTreeView& tv (yourTreeView);

// Get model index for first visible item
QModelIndex modelIndex = tv.indexAt(tv.rect().topLeft());

while (modelIndex.isValid())
{
    // do something with the item indexed by modelIndex
    ...
    // This navigates to the next visible item
    modelIndex = tv.indexBelow(modelIndex);
}
于 2014-03-13T19:58:54.777 回答
0

我认为没有需要可见项目列表的情况。如果模型实现正确,所有项目都会自动更新。实施的困难部分 - 迫使孩子和父母更新。我写了以下代码:

bool TreeModel::setData( const QModelIndex &index, const QVariant &value, int role )
case Qt::CheckStateRole:
        {
            TreeItemList updateRangeList;  // Filled with items, in which all childred must be updated
            TreeItemList updateSingleList; // Filled with items, which must be updated
            item->setCheckState( value.toBool(), updateRangeList, updateSingleList ); // All magic there
            foreach ( TreeAbstractItem *i, updateRangeList )
            {
                const int nRows = i->rowCount();
                QModelIndex topLeft = indexForItem( i->m_childs[0] );
                QModelIndex bottomRight = indexForItem( i->m_childs[nRows - 1] );
                emit dataChanged( topLeft, bottomRight );
            }
            foreach ( TreeAbstractItem *i, updateSingleList )
            {
                QModelIndex updateIndex = indexForItem( i );
                emit dataChanged( updateIndex, updateIndex );
            }
        }
于 2013-04-08T09:01:44.227 回答
0

我总是用以下内容更新整个 QAbstractTableModel:

emit dataChanged(index(0, 0), index(rowCount(), columnCount()-1)); // update whole view
于 2017-08-01T09:58:49.693 回答
0

方法一

i, j = table.indexAt(table.rect().topLeft()).row(), table.indexAt(table.rect().bottomLeft()).row() - 1

方法二

i, j = table.rowAt(0), table.rowAt(table.height()) - 1
于 2022-01-13T12:42:43.110 回答