C&C++   发布时间:2022-04-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Qt C从QTableView中获取所选行的每个单元格中的数据大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法从表视图中的选定行中获取数据?我用过
QModelIndexList ids = ui-> tableView-> selectionModel() – > selectedRows();它返回所选行的索引列表.我不需要索引.我需要来自所选行的每个单元格的数据.

解决方法

QVariant data(const QModelIndex& index,int role) const

用于返回数据.如果您需要根据QModelIndex行和列在此处获取数据并从某个容器中检索它,也许

std::vector<std::vector<MyData> > data;

您必须定义此类映射并在data()和setData()函数中使用它来处理与底层模型数据的交互.

或者,QAbstractItemModel和QTreeView提供了将类(即TreeItem)分配给每个QModelIndex的方法,因此您可以使用从QModelIndex.internalPointer()函数返回的指针的static_cast来检索指向每个数据的指针:

TreeItem *item = static_cast<TreeItem*>(index.internalPointer());

那么你可以创建一些映射:

// sets the role data for the item at <index> to <value> and updates 
// affected TreeItems and ModuleInfo. returns true if successful
// otherwise returns false
bool ModuleEnablerDialogTreeModel::setData(const QModelIndex & index,const QVariant & value,int role) {
  if (role
      == Qt::CheckStateRole&& index.column()==ModuleEnablerDialog_CheckBoxColumn) {
    TreeItem *item = static_cast<TreeItem*>(index.internalPointer());
    Qt::CheckState checkedState;
    if (value == Qt::Checked) {
      checkedState = Qt::Checked;
    } else if (value == Qt::Unchecked) {
      checkedState = Qt::Unchecked;
    } else {
      checkedState = Qt::PartiallyChecked;
    }
    //set this item currentlyEnabled and check state
    if (item->hierarchy() == 1) { // the last level in the tree hierarchy
      item->mModuleInfo.currentlyEnabled = (
          checkedState == Qt::Checked ? true : false);
      item->setData(ModuleEnablerDialog_CheckBoxColumn,checkedState);
      if (mRoot_Systems != NULL) {
        updateModelItems(item);
      }
    } else { // every level other than last level
      if (checkedState == Qt::Checked || checkedState == Qt::Unchecked) {
        item->setData(index.column(),checkedState);
        // update children
        item->updateChildren(checkedState);
        // and parents
        updateParents(item);

example of implementation

大佬总结

以上是大佬教程为你收集整理的Qt C从QTableView中获取所选行的每个单元格中的数据全部内容,希望文章能够帮你解决Qt C从QTableView中获取所选行的每个单元格中的数据所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: