Tagged Questions

Widget available in Qt SQK. Implements WYSIWYG html editor functionality.

learn more… | top users | synonyms

4
votes
1answer
220 views

Qt kerning issue

In my application I'm using a QTextEdit to display some text, using HTML for formatting. The displayed document can be printed. And here's the issue: while on screen the kerning is correct, when ...
3
votes
4answers
830 views

How to set number of lines for an QTextEdit?

I use a QTextEdit for some inputs. But I want to adjust the height of the box. Can I set the height based on the number of lines I want to have visible at a time?
2
votes
1answer
99 views

How to access widgets using qt thread?

In my program I have a widget class with text box and qthread pointer. Using qthread pointer i want to update the textbox continously by text selection without affect the application. But i cant ...
2
votes
1answer
150 views

QTextEdit.find() doesn't work in Python

Simple code demonstrating the problem: #!/usr/bin/env python import sys from PyQt4.QtCore import QObject, SIGNAL from PyQt4.QtGui import QApplication, QTextEdit app = QApplication(sys.argv) def ...
2
votes
1answer
357 views

Getting visible text from a QTextEdit in PyQt

This is related to another question I found here that seems to be inactive for a few months, so I think it's worth asking again. I have created a simple QDialog that has a QTextEdit and a ...
2
votes
1answer
206 views

How to implement editor using QTextEdit with toolbar

I'm looking for an example on how to implement a typical rich text editor using QTextEdit. What I need to implement is a toolbar containing formating functions like: - bold, underline, intalic - font ...
2
votes
1answer
375 views

How do I get the currently visible text from a QTextEdit or QPlainTextEdit widget?

It seems like this would be a common thing to do, but I can't find how. I have a QTextEdit or QPlainTextEdit widget with a bunch of text. Enough that scrolling is necessary. I want another widget to ...
2
votes
3answers
809 views

How to serialize the rich text in QTextEdit?

I promise +10 upvotes to the answer of this question just from my side! Even more, if there is a way, I will give all my rating to the person who will answer with a correct answer, because I need to ...
2
votes
8answers
660 views

I want to make my own source code editor, what are the good choices to make?

I've had it of those dozens of editors which never provides simple things like: distinguish type keywords and instruction keywords so I can put different colors on them. being cross platform using a ...
2
votes
2answers
2k views

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 inside a QScrollArea that is the central widget for a window. My intent is that any ...
2
votes
2answers
130 views

Is there a way to set a fixed width for the characters in HTML?

Is there a way to set a fix size for the characters in HTML? That means, say … First row, 8th character is “Z” Second row’s 8th character is “A” I want to print out , when printed the “Z” has to be ...
2
votes
2answers
1k views

Streaming to QTextEdit via QTextStream

I have often wanted to use QTextEdit as a quick means of displaying what is being written to a stream. That is, rather than writing to QTextStream out(stdout), I want to do something like: ...
2
votes
2answers
1k views

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 that? e.g. If I have the sentence "the fish are coming" how would I put each word into its own ...
1
vote
2answers
105 views

Memory issues with QTextEdit

I'm trying to use a QTextEdit to output a QstringList e.g void CTextBox::AddText(QStringList list, QStringList animList) { //CGraphics* graphics = CGraphics::GetInst(); //QStandardItem ...
1
vote
2answers
147 views

Add QTextEdit objects to a QMainWindow

I seem to be having an issue. Objective: I want to dynamically add QTextEdit to a QMainWindow, I have a lot of data I wish to split amongst various QTextEdit objects. I've been looking at ...
1
vote
2answers
195 views

Horizontal line in QTextEdit

I'm trying to put an horizontal line in a QTextDocument. I'm using HTML for the formatting. To draw the line I want, I naturally used the <hr /> tag. But the line is drawn gray and and I'd like ...
1
vote
2answers
265 views

QTextEdit how to modify stylesheet elements from C++

I'm looking for the fastest way to modify css style for body element inside QTextEdit instance. I tried this but it doesn't work ui->textEdit->setStyleSheet("body {background-color: #aaa}"); ...
1
vote
1answer
124 views

qt: intercepting tab character in QTextEdit

I am writing a small editor. I would like to change default behaviour of QTextEdit, that inserts tabs when Tab is hit. Instead I would like to put 4 spaces. What is the recommended way of doing this? ...
1
vote
0answers
188 views

Qt - subclassing to provide an alternative view for a text widget?

Currently, I am in the design phase of a Qt widget like what one would see in a typical hex editor. It seemed simple enough to begin with, but as I dig into its implementation details I’m having some ...
1
vote
1answer
582 views

How to Set custom text Color in QTextEdit?

I have resisted asking this seemingly n00b question, but all my recent effort to achieve this task have failed. Here are the things I have tried already, all have failed! Could it be that my OpenSuse ...
1
vote
1answer
310 views

QSyntaxHighlighter: change background colour of the line where text cursor is

How to change the background colour of the line where text cursor (caret) is, using QSyntaxHighlighter and QTextEdit
1
vote
3answers
315 views

How to set cursor shape to '>' in a QTextEdit?

I am trying to mimic a command-line client. I wish to set the cursor shape to '>', to show messages to user. I don't see that shape in the options provided by QCursor. Is there a way to set custom ...
1
vote
1answer
428 views

Qt WYSIWYG editor - non-editable/generated regions

I am developing a WYSIWYG document editor. The editor is build around the Qt framework because Linux/KDE is the main platform it will run on. I have been using the QTextEdit widget so far and have ...
1
vote
1answer
915 views

How to format the selected text in a QTextEdit by pressing a button

I want to format a selected text in a QTextEdit by clicking a button. For axample I want to make it bold if it is not-bold, or not-bold if it is bold. Please help me with an example. EDIT: Actually ...
1
vote
1answer
277 views

Scroll QTextBrowser to the top

I have the following: QString html = ui->DetailsTextBrowser->document()->toHtml(); html = details.replace("#VERSION", "1.0"); ui->DetailsTextBrowser->document()->setHtml(details); ...
1
vote
1answer
957 views

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 QTextEdit? Paste is inactive! Also I would like to know how to drag-and-drop a picture. BTW I use the following ...
1
vote
2answers
414 views

Qt: QTextEdit::setTextFormat(Qt::LogText) does not exist anymore, what else can I use to log?

I need a text logger in my C++ application, QTextEdit used to have this feature until Qt 3.3 but unfortunately it has been removed. Is there an alternative that I could use? Tanks for your help!
1
vote
3answers
510 views

Qt - How to place a QTextEdit with left and right margins in a QVBoxLayout?

How to place a QTextEdit with left and right margins in a QVBoxLayout? I could use, of course, a QHBoxLayout, place the QTextEdit into that horizontal layout in between to spacings (addSpacing(40)) ...
1
vote
1answer
133 views

QTextEdit content into QDomDocument

i'm having QTextEdit widget with large content in it (content is XML). i want to take the content and set it into a QDomDocument, so i take the content using document = textEdit->document(); ...
1
vote
1answer
353 views

Qt + QTextEdit content into QDomDocument

i'm having QTextEdit widget with large content in it (content is XML). i want to take the content and set it into a QDomDocument, so i take the content using document = textEdit->document(); ...
1
vote
3answers
2k views

QTextEdit with different text colors (Qt / C++)

I have a QTextEdit box that displays text, and I'd like to be able to set the text color for different lines of text in the same QTextEditBox. (i.e. line 1 might be red, line 2 might be black, etc.) ...
1
vote
1answer
641 views

Determining object types in Qt

I have a series of QTextEdits and QLineEdits connected to a slot through a QSignalMapper(which emits a textChanged(QWidget*) signal). When the connected slot is called (pasted below), I need to be ...
1
vote
1answer
976 views

Connecting multiple signals to a single slot in Qt

I'm trying to keep track of the textChanged() signal on for handful of QTextEdits. I want to do the same thing regardless of the text edit emitting the signal: uncheck its associated checkbox in a ...
1
vote
1answer
437 views

QtRuby: loading HTML file into QTextEdit

How do I load a custom HTML-file into QTextEdit while in runtime?
0
votes
1answer
19 views

Qt Disable QTextEdit without disabling scroll bar

In qt how do you disable a QTextEdit without disabling the scroll bar? Its for previewing purposes.
0
votes
1answer
77 views

PyQt - sellectAll then Backspace to delete doesn't work

I have a text editor which converts latin keybord keypresses to russian characters. I have reimplemented a QTextEdit class: class MyTextEdit(QTextEdit): def __init__(self, *args): ...
0
votes
1answer
55 views

PyQt4 TextEdit.clear causes crash

I have a deque type list (a queue) which I'd like to show and update in QTextEdit. There is a function uuenda_kama in class MyForm which should do this (and some other s*** too). First pass of this ...
0
votes
1answer
88 views

syncing content between two qtextedits or a qtextedit and qscintilla with undo history

I'm writing a blog editor using pyqt4. My issue is this. There is a wysiwyg editor tab and a html code editor tab. A change done in one should reflect in the other. One option is to use the ...
0
votes
1answer
70 views

Find all strings wanted and select them with QPlainTextEdit::setExtraSelections()

I'm trying to highlight all strings find in a QPlainTextEdit widget , but find() will only return the first result. The following code isn't working out , why ? (textview is a class derivated from ...
0
votes
0answers
71 views

Pass QTextEdit to class for logging

Qt-based program have main window and custom class "A". QTextEdit instanse is placed on main form. A have a QTextEdit property with basic setter and getter: .h: private: QTextEdit *logEdit; ...
0
votes
0answers
72 views

Add XML to a Text Box

I want to add an xml to a QTextEdit, this is my code self.XMLField = QtGui.QTextEdit() # Alternative: QTextEdit self.XMLField.setReadOnly( True ) self.XMLField.setAcceptRichText( True ) ...
0
votes
1answer
130 views

How to make a QTextEdit fill its parent dialog?

I've been using Qt for some times, but I'm quite new to layouts. I would like to create a dialog with a QTextEdit inside, and the QTextEdit would resize to fill the whole dialog. How can I use layouts ...
0
votes
1answer
140 views

Qt “QTextEdit” Functions

Well, i'm doing an IDE System. Basically, everything works Fine. Though, but i have a problem. The class "QTextEdit" doesn't have the member "setCompleter" which is for autocomplete. Right? Well, is ...
0
votes
1answer
107 views

Qt QDialog choppy when calling move()

I'm trying to create a popup text editor in Qt. The problem I'm having is that since I'm making the dialog borderless, I have to call the move() function myself. This is causing some weird behaviors ...
0
votes
2answers
241 views

Piping output of a QIODevice to a QTextEdit

How to I make the output of a QIODevice (QProcess, specifically) go into a QTextEdit in real time?
0
votes
1answer
518 views

How to change current line format in QTextEdit without selection?

there! I want to find out how to change current line format in QTextEdit? In the document I read that "Formatting can be applied to the current text document using the setCharFormat(), ...
0
votes
1answer
223 views

Form input validation, multiple focus issues

I am having an issue trying to validate some input in QT4. I have a form with 2 textEdit fields. When one field loses focus, I want it to check if the field is empty, and if so, alert the user. ...
0
votes
2answers
576 views

How to program scrollbar to jump to bottom/top in case of change in QPlainTextEdit or QTextEdit area?

How to program scrollbar to jump to bottom/top in case of change in QPlainTextEdit or QTextEdit area? It looks like it doesn't have any controlling function.
0
votes
1answer
306 views

Replace image with another one in QTextEdit

Say there is a text and images in a QTextEdit. And say you extract HTML code of the QTextEdit. Now how it is posible to find the places in the HTML code where the images are instantiated () and ...
0
votes
1answer
204 views

QTextEdit and QTextDocument buffer problem?

I have a string. It has about 80000 line.I try to write QTextDocument * textDocument=new QTextDocument(); textDocument->setHtml(list); //list is my string txtEdit->setDocument(textDocument); ...

1 2