Top "Qtextedit" questions

QTextEdit is a class from the Qt Toolkit which provides a widget that is used to edit and display both plain and rich text.

Several ways of placing an image in a QTextEdit

I think this is a very simple question, but when I copy an image I can't paste it in a …

c++ image qt qtextedit
Qt rich text editor - is there an already-made one?

I need a rich text editor for Qt. I've been thinking about using QTextEdit since it's a rich text edit, …

c++ qt qtextedit richtext rich-text-editor
Get QTextEdit changes when textChanged() signal is emited

I have a QTextEdit and I connected the textChanged() slot to a signal. How can I find the changes when …

c++ qt notepad qtextedit
Aligning text in QTextEdit?

If I have a QTextEdit box, how can I align different pieces of text within the box in different ways? …

c++ qt text-alignment qtextedit
Resizing QT's QTextEdit to Match Text Height: maximumViewportSize()

I am trying to use a QTextEdit widget inside of a form containing several QT widgets. The form itself sits …

qt qtextedit
Print out python console output to Qtextedit

I have the output like this, when I press the button ['VERSION', 'ROMMON', 'HOSTNAME', 'UPTIME', 'RUNNING_IMAGE', 'HARDWARE', 'SERIAL', 'CONFIG_…

python pyqt pyqt4 qtextedit
How to highlight a string of text within a QTextEdit

I'm a student programmer currently developing an application for work using Qt4. I am building an equation editor and I'm …

c++ qt stylesheet qstring qtextedit
How do I use QTextBlock?

I'm completely new to C++ and Qt. I want to populate a QTextEdit object with QTextBlocks, how do I do …

c++ qt4 qtextedit
Use keyPressEvent to catch enter or return

I have a simple form with some combos, labels, buttons and a QTextEdit. I try to catch the enter or …

python pyqt pyside keyevent qtextedit
QTextEdit. How to select text manually?

There are functions like textEdit->textCursor()->selectionStart() and textEdit->textCursor()->selectionEnd(), but there are …

c++ qt selection qtextedit