これらは私が持っているウィジェットです。
self.recipient = QTextEdit(self)
self.document = QTextDocument(self)
self.recipient.setDocument(self.document)
self.cursor = QTextCursor(self.document)
私がやりたいことは、 を使用しQTextCursor
て、選択したテキストを にコピーすることQTextEdit
です。関数を試しましたselectedText()
が、空の文字列が返されます。これが私がそれを印刷しようとする方法です:
print('%s' % (self.cursor.selectedText()))