我有QListView
显示来自自定义ListModel
的数据。在“常规”视图模式(ListMode
)中,一切似乎都正常工作 - 图标,标签,拖放等。一旦我将其更改为IconMode
,就不会显示任何内容。
这是相关代码。我已经把主窗口和任何其他的东西都遗漏了,但是如果有帮助的话我会把它包括在内。
# Model
class TheModel(QtCore.QAbstractListModel):
def __init__(self, items = [], parent = None):
QtCore.QAbstractListModel.__init__(self, parent)
self.__items = items
def appendItem(self, item):
self.__items.append(item)
# item was added to end of list, so get that index
index = len(self.__items) - 1
# data was changed, so notify
self.dataChanged.emit(index, index)
def rowCount(self, parent):
return len(self.__items)
def data(self, index, role):
image = self.__items[index.row()]
if role == QtCore.Qt.DisplayRole:
# name
return image.name
if role == QtCore.Qt.DecorationRole:
# icon
return QtGui.QIcon(image.path)
return None
# ListView
class TheListView(QtGui.QListView):
def __init__(self, parent=None):
super(Ui_DragDropListView, self).__init__(parent)
self.setDragDropMode(QtGui.QAbstractItemView.InternalMove)
self.setIconSize(QtCore.QSize(48, 48))
self.setViewMode(QtGui.QListView.IconMode)
# ...
答案 0 :(得分:3)
经过一些繁重的调试后,我发现data()
从未被调用过。问题在于我将数据插入模型的方式:beginInsertRows()
和endInsertRows()
应该被调用。新方法类似于以下内容:
def appendItem(self, item):
index = len(self.__items)
self.beginInsertRows(QtCore.QModelIndex(), index, index)
self.__items.append(item)
self.endInsertRows()
尽管旧方法未使用beginInsertRows()
和endInsertRows()
,但ListMode
工作正常。这就是让我失望的原因:我仍然不认为它应该有效。夸克?