使用 QTextDocument 时,Qt 提供迭代器(例如 QTextBlock.iterator)来移动内容。这里的文档显示了 C++ 代码,但显然++
操作符不起作用,而且 PyQt 版本似乎没有任何类似next()
函数的东西。
那么如何让迭代器迭代呢?
QTextFrame.begin (返回迭代器)的文档有一个到“STL-style-Iterators”的链接断开,但我找不到这些在 Python 中实现的任何细节。
使用 QTextDocument 时,Qt 提供迭代器(例如 QTextBlock.iterator)来移动内容。这里的文档显示了 C++ 代码,但显然++
操作符不起作用,而且 PyQt 版本似乎没有任何类似next()
函数的东西。
那么如何让迭代器迭代呢?
QTextFrame.begin (返回迭代器)的文档有一个到“STL-style-Iterators”的链接断开,但我找不到这些在 Python 中实现的任何细节。
文档显示在 PyQt 中,迭代器对象支持__iadd__
和__isub__
. 这允许您使用,例如,it += 1
而不是++it
.
这是一个小演示:
# from PyQt5.QtWidgets import QApplication, QTextEdit
from PyQt4.QtGui import QApplication, QTextEdit
app = QApplication(['test'])
edit = QTextEdit()
edit.setText('one<b>two</b>three<br>')
it = edit.document().firstBlock().begin()
while not it.atEnd():
fragment = it.fragment()
if fragment.isValid():
print(fragment.text())
it += 1
输出:
one
two
three
这似乎有效。
textEdit = QtWidgets.QTextEdit()
for i in range(10):
textEdit.append("Paragraph %i" % i)
doc = textEdit.document()
for blockIndex in range(doc.blockCount()):
block = doc.findBlockByNumber(blockIndex)
print(block.text())
对不起。我不知道QTextFrame
s。我尝试添加以下内容,但显然没有要迭代的帧。虽然它没有抛出任何错误。
rootFrame = doc.rootFrame()
for frame in rootFrame.childFrames():
cursor = frame.lastCursorPosition()
print("I don't know what frames are for, but the cursor is at %i" % cursor.positionInBlock())