如何查询open persistent delegate项

时间:2016-05-07 22:46:24

标签: python qt pyqt qtableview qabstracttablemodel

点击tableView's item会打开PersistentEditor:第一列默认为QSpinBox(自整数数据以来),其他两个默认为QLineEdit

onClick我想查询已为所点击的行打开了多少个持久性编辑器。

enter image description here

from PyQt4 import QtCore, QtGui
app = QtGui.QApplication([])

class Model(QtCore.QAbstractTableModel):
    def __init__(self):
        QtCore.QAbstractTableModel.__init__(self)
        self.items = [[1, 'one', 'ONE'], [2, 'two', 'TWO'], [3, 'three', 'THREE']]

    def flags(self, index):
        return QtCore.Qt.ItemIsEnabled | QtCore.Qt.ItemIsEditable

    def rowCount(self, parent=QtCore.QModelIndex()):
        return 3 
    def columnCount(self, parent=QtCore.QModelIndex()):
        return 3

    def data(self, index, role):
        if not index.isValid(): return 

        if role in [QtCore.Qt.DisplayRole, QtCore.Qt.EditRole]:
            return self.items[index.row()][index.column()]

def onClick(index):
    tableView.openPersistentEditor(tableView.model().index(index.row(), index.column()))
    print 'clicked index:  %s'%index

tableModel=Model()
tableView=QtGui.QTableView() 
tableView.setModel(tableModel)
tableView.clicked.connect(onClick)

tableView.show()
app.exec_()

1 个答案:

答案 0 :(得分:1)

QT可能提供一种方法来做你想要的。如果是这样,我认为你已经浏览了文档而没有找到任何内容。

我想知道在你的模型上定义一个editorCount()方法是否有用:

def editorCount(index):
    try:
        rval = self.editor_count[index]
        self.editor_count[index] += 1
    except AttributeError:
        self.editor_count = {}
        self.editor_count[index] = 1
        rval = 0
    except KeyError:
        self.editor_count[index] = 1
        rval = 0
    return rval

然后onClick调用它:

def onClick(index):
    tableView.openPersistentEditor(tableView.model().index(index.row(), index.column()))
    current_editors = tableView.model().editor_count()
    print 'clicked index:  %s'%index

理想情况下,您当然要在 init 中定义editor_count字典,并且在editorCount()方法本身中不需要那么多异常处理。