如何使QAbstractTableModel的数据可检查(How to make QAbstract

2019-10-18 01:02发布

如何使QAbstractTableModel的数据可检查

我想在下面的代码中的每个单元可进行检查或由用户,如何修改代码未选中?

根据Qt文档:Qt的:: CheckStateRole并设置了Qt :: ItemIsUserCheckable可以使用,所以任何人都可以给一个小样本?

import sys                                 
from PyQt4.QtGui import *                              
from PyQt4.QtCore import *

class MyModel(QAbstractTableModel):   

    def __init__(self, parent=None):   

        super(MyModel, self).__init__(parent)   

    def rowCount(self, parent = QModelIndex()):   

        return 2

    def columnCount(self,parent = QModelIndex()) :   

        return 3

    def data(self,index, role = Qt.DisplayRole) :   

        if (role == Qt.DisplayRole):   

            return "Row{}, Column{}".format(index.row() + 1, index.column() +1)   

        return None

if __name__ == '__main__':   

    app =QApplication(sys.argv)   

    tableView=QTableView()   
    myModel = MyModel (None);    
    tableView.setModel( myModel );          
    tableView.show();   
    sys.exit(app.exec_())

Answer 1:

覆盖基于myModel标志功能。

def flags(self, index)
    return super(MyModel, self).flags(index)|QtCore.Qt.ItemIsUserCheckable

这表示,在模型中的指标是可检查的。

然后重写数据的功能。

def data(self,index, role = Qt.DisplayRole) :   
    if (role == Qt.DisplayRole):   
        return "Row{}, Column{}".format(index.row() + 1, index.column() +1)
    elif (role==Qt.CheckStateRole):
        # read from your data and return Qt.Checked or Unchecked
    return None

最后,你需要实现使用setData功能。

def setData(self, index, value, role = Qt.EditRole):
    if (role==Qt.CheckStateRole):
        # Modify your data.


文章来源: How to make QAbstractTableModel 's data checkable
标签: qt pyqt pyside