【发布时间】:2013-11-10 13:01:38
【问题描述】:
我需要向 QFileSystemModel 添加一个额外的列。我在以下位置看到了答案:QT - adding own column to QFileSystemModel
有人能告诉我如何在 pyqt4 中正确定义子类吗?
【问题讨论】:
标签: python qt user-interface pyqt
我需要向 QFileSystemModel 添加一个额外的列。我在以下位置看到了答案:QT - adding own column to QFileSystemModel
有人能告诉我如何在 pyqt4 中正确定义子类吗?
【问题讨论】:
标签: python qt user-interface pyqt
您几乎可以复制粘贴 C++ 代码。这是pyqt的实现:
class YourSystemModel(QtGui.QFileSystemModel):
def columnCount(self, parent = QtCore.QModelIndex()):
return super(YourSystemModel, self).columnCount()+1
def data(self, index, role):
if index.column() == self.columnCount() - 1:
if role == QtCore.Qt.DisplayRole:
return QtCore.QString("YourText")
if role == QtCore.Qt.TextAlignmentRole:
return QtCore.Qt.AlignHCenter
return super(YourSystemModel, self).data(index, role)
【讨论】: