我正在创建一个QAbstractItemModel
要显示在QTreeView
.
我的index()
and函数使用继承parent()
的函数创建并为其提供,和需要的。在这里,出于测试目的,数据是 Python 字符串。QModelIndex
QAbstractItemModel
createIndex
row
column
data
class TestModel(QAbstractItemModel):
def __init__(self):
QAbstractItemModel.__init__(self)
def index(self, row, column, parent):
if parent.isValid():
return self.createIndex(row, column, "bar")
return self.createIndex(row, column, "foo")
def parent(self, index):
if index.isValid():
if index.data().data() == "bar": <--- NEVER TRUE
return self.createIndex(0, 0, "foo")
return QModelIndex()
def rowCount(self, index):
if index.isValid():
if index.data().data() == "bar": <--- NEVER TRUE
return 0
return 1
def columnCount(self, index):
return 1
def data(self, index, role):
if index.isValid():
return index.data().data() <--- CANNOT DO ANYTHING WITH IT
return "<None>"
在index()
、parent()
和data()
函数中,我需要取回我的数据。它以QVariant
. 如何从 QVariant 取回我的 Python 对象?