我正在处理应该具有智能缩进/代理行为的源代码编辑器。但是,我的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 1\n Line 2\n 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
以触发段错误。
平台:
更新
cursor.beginEditBlock()
和cursor.endEditBlock()
时才会出现此错误,另请参阅:QTextCursor and beginEditBlock 由于
答案 0 :(得分:1)
这似乎是Qt中的一个错误:
https://bugreports.qt.io/browse/QTBUG-30051
显然,在QTextCursor.beginEditBlock()中编辑多个块会导致最后一个块的布局中断,这在我的情况下导致了段错误。
解决方法可能是将dedenting代码重写为单个操作(确定dedenting后的文本,删除所有选定的行,替换为新文本)
如果有人知道更好的解决方法,请告诉我!