若涉及最后一行,QPlainTextEdit中的Dedenting函数将导致segfault



我正在开发一个应该具有智能缩进/dedent行为的源代码编辑器。然而,我的dedenting方法似乎导致了分割错误。如果有人能找出原因,我会非常高兴。

这里有一个最小的例子:

#!/usr/bin/env python
import sip
sip.setapi('QString', 2)
sip.setapi('QVariant', 2)
from PyQt4 import QtGui
from PyQt4.QtCore import Qt
class Editor(QtGui.QPlainTextEdit):
    def keyPressEvent(self, event):
        key = event.key()
        if key == Qt.Key_Backtab:
            cursor = self.textCursor()
            start, end = cursor.selectionStart(), cursor.selectionEnd()
            cursor.beginEditBlock()
            b = self.document().findBlock(start)
            while b.isValid() and b.position() <= end:
                t = b.text()
                p1 = b.position()
                p2 = p1 + min(4, len(t) - len(t.lstrip()))
                cursor.setPosition(p1)
                cursor.setPosition(p2, QtGui.QTextCursor.KeepAnchor)
                cursor.removeSelectedText()
                b = b.next()
            cursor.endEditBlock()
        else:
            super(Editor, self).keyPressEvent(event)
class Window(QtGui.QMainWindow):
    """
    New GUI for editing ``.mmt`` files.
    """
    def __init__(self, filename=None):
        super(Window, self).__init__()
        self.e = Editor()
        self.e.setPlainText('Line 1n    Line 2n    Line 3')
        self.setCentralWidget(self.e)
        self.e.setFocus()
if __name__ == '__main__':
    a = QtGui.QApplication([])
    w = Window()
    w.show()
    a.exec_()

要重新创建,请从第二行开始选择,到第三行结束,然后按Shift+Tab以dedent,按End以触发segfault。

平台:

  • 在Fedora(linux)上运行
  • Python 2.7.8(默认值,2014年11月10日08:19:18)【GCC 4.9.2 20141101(Red Hat 4.9.2-1)】
  • PyQt 4.8.6(但它也发生在PySide中)

更新:

  • 似乎只有在使用cursor.beginEditBlock()cursor.endEditBlock()时才会出现此错误,另请参阅:QTextCursor和beginEditBlock

感谢

这似乎是Qt:中的一个错误

https://bugreports.qt.io/browse/QTBUG-30051

显然,从QTextCursor.beginEditBlock()中编辑多个块会导致最后一个块的布局中断,在我的情况下,这会导致segfault。

解决方法可能是将去标记代码重写为单个操作(在去标记后确定文本,删除所有选定行,用新文本替换)

如果有人知道更好的解决方法,请告诉我!

相关内容

  • 没有找到相关文章

最新更新