在QStyledItemDelegate中使用信号closeEditor的正确方法是什么?

时间:2011-05-11 07:35:44

标签: python pyqt pyside

我重写了QStyledItemDelegate类并重新实现了eventFilter函数,因此我可以在检测到Tab按下时自定义编辑器行为。但是,以下情况不起作用。调用closeEditor信号的正确方法是什么?

class CustomDelegate(QStyledItemDelegate):
    def __init__(self, parent=None):
        super(CustomDelegate, self).__init__(parent)

    def eventFilter(self, editor, event):
        if (event.type() == QEvent.KeyPress and
            event.key() == Qt.Key_Tab):
            print "Tab captured in editor"
            self.commitData.emit(editor) #This is working
            self.closeEditor.emit(editor) #This does not seem to do anything??
            return True
        return QStyledItemDelegate.eventFilter(self,editor,event)

1 个答案:

答案 0 :(得分:4)

这是一个老问题,但我遇到了同样的问题并发现了这个问题。

我通过更改

解决了这个问题

self.closeEditor.emit(editor)

行到

self.closeEditor.emit(editor, QAbstractItemDelegate.NoHint)

commitData来电setModelData。如果您不致电closeEditor,则会再次调用setModelData,因为编辑器本身将关闭。