将密钥与一行QStandardItemModel相关联

时间:2013-07-12 22:52:34

标签: c++ qt model-view qstandarditemmodel

我想知道如何将密钥与QstandardItemModel的条目相关联。这有助于我检索条目的行。

1 个答案:

答案 0 :(得分:0)

http://doc-snapshot.qt-project.org/4.8/qstandarditemmodel.html#details

所有数据使用的访问方法:

http://doc-snapshot.qt-project.org/4.8/qmodelindex.html

QModelIndex

http://doc-snapshot.qt-project.org/4.8/model-view-programming.html#model-indexes

http://doc-snapshot.qt-project.org/4.8/qpersistentmodelindex.html

  

QPersistentModelIndex类用于在数据模型中定位数据。

     

QPersistentModelIndex是一个模型索引,可以由应用程序存储,稍后用于访问模型中的信息。与QModelIndex类不同,存储QPersistentModelIndex是安全的,因为只要模型可以访问项目,模型将确保对项目的引用将继续有效。

     

优良作法是在使用之前检查持久模型索引是否有效。

希望有所帮助。