0

リストself.tokensに保持されているカスタムオブジェクトをループし、各オブジェクトのプロパティを使用してQt TextEditウィジェットのフォントの色を変更するメソッド、show_spelling_errors()を作成しています。show_spelling_errors() は、Qt の textChanged シグナルに接続されている別のメソッドによって呼び出されるため、ユーザーがウィジェットに入力するたびに実行されます。メソッド定義を以下に示します。

def show_spelling_errors(self):
    try:
        cursor = self.textEdit.textCursor()
        incorrect_format = cursor.charFormat()
        incorrect_format.setForeground(QtCore.Qt.GlobalColor.red)
        for token in self.tokens:
            if not token.is_spelled_correctly:
                print("is spelled correctly: " + str(token.is_spelled_correctly))
                cursor.movePosition(cursor.MoveOperation.Start, cursor.MoveMode.MoveAnchor)
                cursor.movePosition(cursor.MoveOperation.NextWord, cursor.MoveMode.MoveAnchor, token.word_index)
                cursor.movePosition(cursor.MoveOperation.EndOfWord, cursor.MoveMode.KeepAnchor)
                print("selection start " + str(cursor.selectionStart()))
                print("selection end  " + str(cursor.selectionEnd()))
                # cursor.setCharFormat(incorrect_format)
                cursor.clearSelection()

上記のコードを正確に実行すると、期待どおりに動作します。ただし、最後から 2 番目の行 (実際にはフォントの色を変更する必要があります) のコメントを外すと、ループは終了せず、self.tokens の最初のメンバーを無限にループし、最終的にスタック オーバーフローを引き起こします。このステートメントをループに含めると、ループの動作 (関係ないと思っていた?) がこのように変化する可能性があることに非常に混乱しています。

編集:以下は、この動作を再現するために必要なコードです

from PyQt6.QtWidgets import QApplication, QWidget, QTextEdit, QVBoxLayout
from PyQt6 import QtCore
import sys
import re
import traceback
from spellchecker import SpellChecker


class Token:
    def __init__(self, chars, spell, start=0, word_index=0):
        self.word_index = word_index
        self.content = chars
        self.token_length = len(chars)
        self.start_pos = start
        self.end_pos = start + self.token_length
        self.is_spelled_correctly = len(spell.unknown([chars])) < 1

class TextEditDemo(QWidget):
    def __init__(self, parent=None):
        super().__init__(parent)

        self.setWindowTitle("QTextEdit")
        self.resize(300, 270)
        self.spell = SpellChecker()
        self.textEdit = QTextEdit()

        layout = QVBoxLayout()
        layout.addWidget(self.textEdit)
        self.setLayout(layout)

        self.tokens = None
        self.textEdit.textChanged.connect(self.handle_text)

    def handle_text(self):
        self.tokenize_text()
        self.show_spelling_errors()

    def show_spelling_errors(self):
        try:
            cursor = self.textEdit.textCursor()
            incorrect_format = cursor.charFormat()
            incorrect_format.setForeground(QtCore.Qt.GlobalColor.red)
            for token in self.tokens:
                if not token.is_spelled_correctly:
                    print("is spelled correctly: " + str(token.is_spelled_correctly))
                    cursor.movePosition(cursor.MoveOperation.Start, cursor.MoveMode.MoveAnchor)
                    cursor.movePosition(cursor.MoveOperation.NextWord, cursor.MoveMode.MoveAnchor, token.word_index)
                    cursor.movePosition(cursor.MoveOperation.EndOfWord, cursor.MoveMode.KeepAnchor)
                    print("selection start " + str(cursor.selectionStart()))
                    print("selection end  " + str(cursor.selectionEnd()))
                    cursor.setCharFormat(incorrect_format)
                    cursor.clearSelection()

        except:
            traceback.print_exc()

    def tokenize_text(self):
        try:
            print("tokenizing...")
            text = self.textEdit.toPlainText()
            text_seps = re.findall(' .', text)
            current_pos = 0
            start_positions = [current_pos]
            for sep in text_seps:
                current_pos = text.find(sep, current_pos) + 1
                start_positions.append(current_pos)

            self.tokens = [
                Token(string, self.spell, start, word_ind) for
                word_ind, (start, string) in
                enumerate(zip(start_positions, text.split()))
            ]
        except:
            traceback.print_exc()

app = QApplication([])
win = TextEditDemo()
win.show()
sys.exit(app.exec())
4

1 に答える 1