How to setText for QPlainTextEdit?
Asked Answered
P

1

23

Qt5's documentation doesn't mention that QPlainTextEdit has setText(QString) like QTextEdit does. But, I don't think it's impossible. The only way I found is to use QTextDocument which can has setPlainText(const QString& text). So I have to do this:

plain_text_edit->setDocument(text_document);

The problem is text_document should be a pointer. Not like QTextEdit's setText which can take a local variable as it's parameter. So, is there anyway to do setText like to QPlainTextEdit?

Pavior answered 23/5, 2015 at 4:49 Comment(0)
I
39

It's very simple, just get the current document and set its text:

plain_text_edit->document()->setPlainText(text);

Alternative way, just call this method:

plain_text_edit->setPlainText(text);

You could also use text cursor of the editor in many ways to achieve this, most simply by selecting entire existing text (assuming the editor is not empty), then doing plain_text_edit->TextCursor().insertText(text); (which replaces currently selected text with usual paste semantics), but for the simple case of replacing all text, that's overcomplicated.

Intellectualism answered 23/5, 2015 at 4:57 Comment(2)
plain_text_edit->setPlainText(text); also seems to workGentleness
@Gentleness Interesting that I missed that, yet found appendPlainText... it doesn't seem to be a recent addition either.Intellectualism

© 2022 - 2024 — McMap. All rights reserved.