Cannot set header data with QTableView / custom table model

时间秒杀一切 提交于 2021-01-07 01:01:54

问题


I am on Maya / PySide2 / Python 2.7

I cannot set the header data with a custom table model.

I tried this:

from PySide2 import QtCore, QtGui, QtWidgets
from PySide2.QtCore import Qt


class TableModel(QtCore.QAbstractTableModel):
    def __init__(self, data):
        super(TableModel, self).__init__()
        
        self.setHeaderData(0, Qt.Horizontal, "Driver")
        self.setHeaderData(1, Qt.Horizontal, "Range")
        self.setHeaderData(2, Qt.Horizontal, "Driven")
        self.setHeaderData(3, Qt.Horizontal, "Range")
        
        self._data = data

    def data(self, index, role):
        if role == Qt.DisplayRole:
            return self._data[index.row()][index.column()]

    def rowCount(self, index):
        return len(self._data)

    def columnCount(self, index):
        return 4
        
    def addRow(self, row):
        self._data.append(row)
        self.layoutChanged.emit()  

class MainWindow(QtWidgets.QMainWindow):
    def __init__(self):
        super(MainWindow, self).__init__()

        self.table = QtWidgets.QTableView()

        data = [
        [
            "firstData", "[0, 100]", "secondData", "[0, 1]"],
        ]

        self.model = TableModel(data)
        self.table.setModel(self.model)
        
        self.setCentralWidget(self.table)

window=MainWindow()
window.show()

afterwards I tried setting the header after setting the model like this:

class MainWindow(QtWidgets.QMainWindow):
    def __init__(self):
        super(MainWindow, self).__init__()

        self.table = QtWidgets.QTableView()

        data = [
        [
            "firstData", "[0, 100]", "secondData", "[0, 1]"],
        ]

        self.model = TableModel(data)
        self.table.setModel(self.model)
        
        self.model.setHeaderData(0, Qt.Horizontal, "Driver")
        self.model.setHeaderData(1, Qt.Horizontal, "Range")
        self.model.setHeaderData(2, Qt.Horizontal, "Driven")
        self.model.setHeaderData(3, Qt.Horizontal, "Range")
        
        self.setCentralWidget(self.table)

window=MainWindow()
window.show()

Both of them throwing no errors but column headers are not getting renamed, they stay as 1,2,3,4

I appreciate any help or guidance. Thanks all.


回答1:


When implementing an abstract model, all the required methods should be implemented, otherwise the default ones will be used. In the case of header labels, the fallback is the headerData() (which returns None in the default implementation) and setHeaderData(). The latter is important, as it always returns a bool value indicating whether the data has been set or not: the default behavior of abstract models is that no data is set, because the method must be implemented.

In order to correctly implement both reading and writing of header data, you must override both methods:

class TableModel(QtCore.QAbstractTableModel):
    def __init__(self, data):
        super(TableModel, self).__init__()
        
        self.horizontalHeaders = [''] * 4

        self.setHeaderData(0, Qt.Horizontal, "Driver")
        self.setHeaderData(1, Qt.Horizontal, "Range")
        self.setHeaderData(2, Qt.Horizontal, "Driven")
        self.setHeaderData(3, Qt.Horizontal, "Range")
        
        self._data = data

    def setHeaderData(self, section, orientation, data, role=Qt.EditRole):
        if orientation == Qt.Horizontal and role in (Qt.DisplayRole, Qt.EditRole):
            try:
                self.horizontalHeaders[section] = data
                return True
            except:
                return False
        return super().setHeaderData(section, orientation, data, role)

    def headerData(self, section, orientation, role=Qt.DisplayRole):
        if orientation == Qt.Horizontal and role == Qt.DisplayRole:
            try:
                return self.horizontalHeaders[section]
            except:
                pass
        return super().headerData(section, orientation, role)

    # ...


来源:https://stackoverflow.com/questions/65179468/cannot-set-header-data-with-qtableview-custom-table-model

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!