手机版

Qt ModelView 学习笔记(19)

发布时间:2021-06-08   来源:未知    
字号:

qt相关资料

selectionModel->select(columnSelection,

QItemSelectionModel::Select | QItemSelectionModel::Columns); QItemSelection rowSelection;

topLeft = model->index(0, 0, QModelIndex());

bottomRight = model->index(1, 0, QModelIndex());

rowSelection.select(topLeft, bottomRight);

selectionModel->select(rowSelection,

QItemSelectionModel::Select | QItemSelectionModel::Rows); 结果如下

选择模型中所有项

为了选择model中的所有项,必须先得创建一个选择,它包括当前层次上的所有项:

QModelIndex topLeft = model->index(0, 0, parent);

QModelIndex bottomRight = model->index(model->rowCount(parent)-1, model->columnCount(parent)-1, parent);

QItemSelection selection(topLeft, bottomRight);

selectionModel->select(selection, QItemSelectionModel::Select); 顶级index可以这样:

QModelIndex parent = QModelIndex();

对具有层次结构的model来说,可以使用hasChildren()函数来决定给定项是否是其它项的父项。

Qt Model/View 学习笔记 (七)

清源游民 gameogre@

Delegate 类

概念

与MVC模式不同,model/view结构没有用于与用户交互的完全独立的组件。一般来讲, view负责把数据展示

给用户,也处理用户的输入。为了获得更多的灵性性,交互通过delegagte执行。它既提供输入功能又负责渲染view中的每个数据项。 控制delegates的标准接

Qt ModelView 学习笔记(19).doc 将本文的Word文档下载到电脑,方便复制、编辑、收藏和打印
×
二维码
× 游客快捷下载通道(下载后可以自由复制和排版)
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
注:下载文档有可能出现无法下载或内容有问题,请联系客服协助您处理。
× 常见问题(客服时间:周一到周五 9:30-18:00)