QItemSelectionModel获取QModelIndexList程序崩溃
2021/12/17 22:20:31
本文主要是介绍QItemSelectionModel获取QModelIndexList程序崩溃,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
工作中没有小事:点石成金,滴水成河,只有认真对待自己所做的一切事情,才能克服万难,取得成功。
转载:https://blog.csdn.net/ljqiankun/article/details/50970423
在项目中使用QT的QItemSelectionModel获取QModelIndexList时程序崩溃。
使用场景:
QItemSelectionModel *selections =pTreeView->selectionModel(); QModelIndexList selectedindexes = selections->selectedRows();
这样调用后就会报错。
解决方法:找到selectedRows的源码,自己实现当前选中项
QItemSelectionModel *selections = pTreeView->selectionModel(); QModelIndexList selectedindexes; //the QSet contains pairs of parent modelIndex //and row number QSet<QPair<QModelIndex, int>> rowsSeen; const QItemSelection ranges = selections->selection(); for (int i = 0; i < ranges.count(); ++i) { const QItemSelectionRange& range = ranges.at(i); QModelIndex parent = range.parent(); for (int row = 0; i < range.top(); row <= range.bottom(); row++) { QPair<QModelIndex, int> rowDef = qMakePair(parent, row); if (!rowsSeen.contains(rowDef)) { rowsSeen << rowDef; if (selections->isRowSelected(row, parent)) { selectedindexes.append(pModel->index(row, 0, parent)); } } } }
这篇关于QItemSelectionModel获取QModelIndexList程序崩溃的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-01lip-sync公司指南:一文读懂主要玩家和技术
- 2024-11-01Anthropic的新RAG方法——提升大型语言模型在特定领域的表现
- 2024-11-01UniApp 中组件的生命周期是多少-icode9专业技术文章分享
- 2024-11-01如何使用Svg Sprite Icon简化网页图标管理
- 2024-10-31Excel数据导出课程:新手从入门到精通的实用教程
- 2024-10-31Excel数据导入课程:新手入门指南
- 2024-10-31RBAC的权限课程:新手入门教程
- 2024-10-31Svg Sprite Icon课程:新手入门必备指南
- 2024-10-31怎么配置 L2TP 允许多用户连接-icode9专业技术文章分享
- 2024-10-31怎么在FreeBSD上 安装 OpenResty-icode9专业技术文章分享