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

learn more… | top users | synonyms

0
votes
1answer
21 views

Need to display in qtextEdit real time

I have an arm board with a touchscreen display, where I want to display the output from a certain function, vcm_test(). The output of this function is saved to a file called test.txt . Now I am able ...
-5
votes
0answers
34 views

if someone decides to help me with pyqt error [closed]

Pastebin link if someone decides to help the first time you send a comment everything is fine, but when I try to send a message a second time, an error list index out of range!
1
vote
1answer
38 views

Qt, QTextEdit, how to turn all the content in QTextEdit into a image.

I want to creat a image that contain the QTextEdit. And I write the following code to create the image. QSize s = textEdit->frameSize(); QPixmap p(s); textEdit->render(&p); ...
0
votes
1answer
30 views

Qt Whenever pressed enter in QTextEdit

Whenever I pressed enter in my QTextEdit it'll perform a click on my login button. Somehow this causes a crash of my QtCreator. How can I change what'll happen If I press enter in my QTextEdit?
1
vote
1answer
31 views

Qt access TextEdit's text in other scope

I'm trying to create a simple IDE. At the moment I'm totally failing! I have some actions and when I click on the action "new" it should add a new page to my TabWidget and create a TextEdit inside. ...
0
votes
1answer
61 views

function to set text as bold in Qt

Hi I am trying to make a function in Qt that sets the font of a QTextEdit to bold: void TextEditor::setBold(){ if (editor->fontWeight() == 75) ...
0
votes
2answers
40 views

Slot/signal dynamics regarding QTextEdit

I'm fairly new at C++/Qt, and I only have some web development experience. I'm testing a few things with Qt for learning purposes and I'm failing miserably at it. I'm pretty sure it's because the ...
3
votes
3answers
135 views

Qt Text Edit with a fixed number of input lines

I have a Qt "Text Edit" widget in my Gui and this widget is used to log something. I add every line(s) this way: QString str; str = ... widget.textEdit_console->append(str); by this way the Text ...
2
votes
1answer
71 views

How to access QTextDocument pages

I am trying to build an application that would display rich text documents in paginated fashion - more or less like MS Word does. For now, I would like to have only one page displayed at a time. From ...
0
votes
1answer
84 views

Qt ignores CSS in QTextDocument

Here is a small snippet of my code, I don't know why but Qt is ignoring the css. QTextDocument *mTextDocument = new QTextDocument(0); QTextEdit *textEdit = new QTextEdit(0); ...
1
vote
2answers
70 views

Detecting Key Sequences

I am using pyqt's Qshortcut in trying to detect a key combination to trigger some action i.e when the user types -> into a QtextEdit widget, I would like to print "changing mode". I have seen other ...
9
votes
0answers
352 views

How to change row height in QTextTable

I'm writing the complicated rich text editor, derived from QTextEdit class. It must be able to insert, resize, and apply various formatting to embedded tables. I found function for setup column ...
1
vote
0answers
66 views

in QTextEdit ,can't respond to mouse click events

I want to use mouseDoubleClickEvent,but it does not work this is my code: textEdit->setMouseTracking(true); who can help me ? thank you sorry,my English is so bed
0
votes
2answers
122 views

PySide, QTextEdit Append adding blank lines

I have this simple code: basically a tool to send some commands to cmd, and display the output from cmd in a QTextEdit. Basically, it works. The only problem that I have is that each time I click on ...
0
votes
0answers
20 views

How to select contains Spaces string through the double click of mouse

in QTextEdit,How to select contains Spaces string through the double click of mouse?
2
votes
1answer
208 views

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 having issues attempting to highlight a string within my QTextEdit field. I ...
0
votes
1answer
72 views

How to disable shortcuts in QTextEdit

I'm working in a scientific calculator project using Qt5, I'm using the QTextEdit as the calculator's display. I want to disable the shortcuts like (Ctrl + A, and Ctrl + C) in the display, so How can ...
2
votes
1answer
72 views

Add custom HTML class property to selected block in a QTextEdit

I am not new to Qt, but I can't find how to add a custom css class to the selected block in a QTextEdit. As far as I know,format is changed whit code like this: QTextCursor cursor = ...
1
vote
1answer
77 views

Painting in a QTextEdit without affecting the text

I am trying to paint some lines in a QTextEdit but when paintEvent it is called the whole QTextEdit text clears, the lines are drawn, no further text input possible. If I scroll, the drawn lines act ...
2
votes
2answers
230 views

Get QTextEdit changes when textChanged() signal is emited

I'm working for a project in Qt. I have a QTextEdit and I connected the textChanged() slot to a signal. How can I find the changes when the signal is emited. For example, I want to save the cursor ...
0
votes
1answer
257 views

QTextEdit: scroll down automatically only if the scrollbar is at the bottom

There's a QTextEdit that displays quite a lot of text. It is NOT editable. Suppose I want to read something around the beginning, scroll up, but then a new line is added and the scrollbar ...
1
vote
1answer
137 views

QLineEdit::textEdited() equivalent in QTextEdit?

In QLineEdit, there is a textEdit() signal, which only emits if the user changes the text, but not when you call setText(), So what's the equivalent in QTextEdit? I only see a textChanged() signal, ...
3
votes
2answers
172 views

QScrollArea makes QTextEdit readonly

I'm trying to add a container for showing the line numbers of a QTextEdit. From what I have seen so far I need to add a QAbstractScrollArea at the first step. The problem is that when I add the ...
0
votes
1answer
103 views

QTextEdit with page break

I need to break in pages instead of scrolling rich text content in a QTextEdit. I tried to do this with QTextCursor and QFontmetrics but accuracy is not good enough. Somebody can help me? Thanks in ...
0
votes
1answer
83 views

QTextEdit change carriage position after setText

I can't find how to change carriage position on QTextEdit. I add text with setText(or setPlainText) methods, and after this carriage is at the beginning of QTextEdit input field, and I want it to be ...
0
votes
0answers
44 views

QTextEdit keeps switching to smaller font during paste

I have QTextEdit that has larger font set for it. It also has this function overloaded: void insertFromMimeData(const QMimeData *source) { QTextEdit::insertPlainText(source->text()); } ...
3
votes
1answer
151 views

PySide QTextEdit html table width

I am trying to set the width of my html table to acquire the total width of my QTextEdit by an inline stylesheet but the width of the table doesn't change. I've tried to give it values in the forms of ...
0
votes
1answer
101 views

Checking then Adding items to QСompleter model

I am currently working on a code editor written in Qt, I have managed to implement most of the features which I desire, i.e. auto completion and syntax highlighting but there is one problem which I ...
1
vote
0answers
81 views

PyQide-Qt QSyntaxHighlighter multiline

The highlightBlock(self, qtext) of QtGui.QSyntaxHighlighter treats each line in my QTextEdit widget as a different block (qtext). This brakes the multiline flag in my regular expression which is a ...
4
votes
1answer
171 views

QTextEdit; adjustSize() not working?

Setting text for QTextEdit: te->setPlainText(“Something”) ; te->adjustSize(); should wrap around “Something” only, instead the QTextEdit is expanding to its maximum Width-Height, can’t fix ...
0
votes
0answers
69 views

QTextEdit shift-tab wrong behaviour

shift+tab behaves as tab in QTextEdit/QPlainTextEdit. Looks like a common problem with no good solution. Is there any "classical" way to enable this functionality when tab increases indentation ...
1
vote
1answer
307 views

Custom text (code) areas in QTextEdit

I am interested in creating a text object type (inheriting QTextObjectInterface) that behaves like a code area: distinctive background border fixed-width font editable content the instances need to ...
0
votes
1answer
146 views

How to set the PlaceHolderText for QTextEdit

I just want to set a PlaceHolderText for a QTextEdit. I know how to set it for a QLineEdit. There is a Property, setPlaceHolderText for QLineEdit. But this Property is not available for QTextEdit. ...
0
votes
1answer
84 views

Why there is no zoom in and out slots in QPlainTextEdit?

I noticed that a QTextEdit has zoom in and zoom out slots and using them is very easy. However, I am using a widget that inherits from QPlainTextEdit and QPlainTextEdit has none of them which seems ...
3
votes
1answer
177 views

get size of each row in QTextEdit

Hi I'm new in Qt programming and I want to know how to get the size of each row in QTextEdit. Update: I need to get the width of each row (line) in the text, and not the width of all text in a ...
0
votes
1answer
108 views

Qt QTextEdit Qt4.2 Valid HTML String

I am trying to generate the correct HTML to render to a QTextEdit Using Qt 4.2 on RHEL 5.3. So far my algorithm generates the following html. I am not an expert web developer, but to me this string ...
2
votes
2answers
388 views

How to override tab width in qt?

I just need to know how to change the tab size in Qt in a QTextEdit. My Google and stackoverflow search returned me null. Thanks in advance.
0
votes
1answer
132 views

How to get column number in qtextedit?

I can get the line number of a cursor in a QTextEdit. but can't achieve to get the column number information. (Note: I use QTextBlock while getting line number info.) Isn't there an easy way to obtain ...
0
votes
2answers
459 views

Parse and Display HTML in a QTextEdit widget

I have a non-editable QTextEdit Widget in one of my apps. Basend on the selection of a combobox i want to display additional informations. My current approach is to load HTML files from a directory ...
0
votes
0answers
196 views

Detect Software input panel close event in Qml TextInput

I think the title itself explains my question. In Qml TextInput, there are functions to open & close software input panel. But is there any ways to detect the close event.? I tried "onAccepted" ...
2
votes
1answer
207 views

(Qt) How to check if a QTextEdit widget text was changed from a QTabWidget

I have a QTabWidget parented by a QMainWindow that manages QTextEdit widgets. I'd like to know when content was changed in one the tabs and to know which one. I've been trying to google a solution ...
1
vote
1answer
185 views

How to match tab length to a number of spaces in Qt

I'm having trouble making tabs in a QTextEdit be the same size as some number of spaces, say 4. I'm using Qt 4.8.1 on a mac and I've tried several different monospace fonts. In each case I try using ...
1
vote
1answer
312 views

Pyqt: 'dynamically' append to qtextedit from function

There is a button in my pyqt gui that when clicked runs a function that does some lengthy math calculations. Inside this function there were a lot of print statements like: print "finished ...
0
votes
0answers
70 views

Issue with QTextCursor, LineUnderCursor and a very long line

I am trying to insert a long text (about 100 words), content in a xml section, inside a QTextEdit with HTML rich text. Example Lorem ipsum ad his scripta blandit partiendo, eum fastidii accumsan ...
1
vote
1answer
352 views

Minimizing the size of a QTextEdit in a QTreeWidgetItem

I have a QTreeWidget filling with some itemwidgets, whose main widget will be a QTextEdit. The problem I'm having seems to be getting the size down to something managable. The usual method of setting ...
1
vote
2answers
552 views

Qt- How to display the Text Edit String in a List View?

I have a QTextEdit , 2 QPushButtons (Add n Remove Buttons) and a QListView. When i am entering the text in the Text Edit and click the Add Button, the Text should be added in the List View. Then, if ...
0
votes
0answers
179 views

Insert a horizontal black line into QTextEdit with HTML

I am using a loop to put things into a QString to then put into a QText Edit. I use HTML in the QString to make a table that is filled in during the loop then a new table is created at the start of ...
0
votes
0answers
485 views

qtextedit change font

I am using QTextEdit in my project I want to change the Font of the text edit area when user clicks on a button. I am using QTextEdit::setCurrentFont() function for this purpose. But, in order to ...
4
votes
2answers
568 views

A QWidget like QTextEdit that wraps its height automatically to its contents?

I am creating a form with some QTextEdit widgets. The default height of the QTextEdit exceeds a single line of text and as the contents' height exceeds the QTextEdit's height, it creates a scroll-bar ...
0
votes
2answers
420 views

Qt QTextEdit loading just half text file

I have a problem: my project is a very simple one with a QTextEdit and a QSyntaxHighlighter, I'm trying to load a .cpp file and highlighting just the eighth line of that file, but the QTextEdit can't ...

1 2 3