How to use both the properties of Qtextdocument
-
@ManiRon said in How to use both the properties of Qtextdocument:
@VRonin i tried the same way as yours (QTextCursor cursor(textDocument);) but it says
mainwindow.cpp:107: error: 'textDocument' was not declared in this scope
QTextCursor cursor(textDocument);
^The error message tells you exactly what is wrong with your code, nothing to add by showing screenshots. You cannot expect to copy @VRonin's suggestion verbatim without any attempt to understand what it is doing and what you need to do to complete it. Why don't you have a look in the docs at
QTextCursor
's constructors? He wants you to understand what is wrong and deal with it, for your own long-term benefit. -
@ManiRon said in How to use both the properties of Qtextdocument:
@JonB header has top left corner one image and top right corner one image and a title at the middle of the two images, and after that i want insert my texts. This much things i want to do . Is there any way ? :(
Assuming this has nothing to do with PDF (sometimes you talk about the PDF header or "inserting PDF", I'm never sure), this sounds like you want to insert an image into your document? Have a read of http://doc.qt.io/qt-5/richtext-cursor.html and http://doc.qt.io/qt-5/qtextcursor.html#insertImage-2 ? I really think you need to do some reading of this sort of stuff to get an idea of what you can do with
QTextDocument
&QTextCursor
. -
@ManiRon
Not viaQTextDocument
. You'd have to look at manipulating the PDF output, which is a different matter.Something like https://forum.qt.io/topic/74643/qtextdocument-to-pdf-with-watermarks-and-header-footer-filesize-too-large might give you some ideas. I do not guarantee whether that is good/the right approach, but it might be.
-
@ManiRon
If you don't want to do this via thepaint()
suggested in the link I posted above, you could try with eitherQTextCursor::insertImage()
or you could try writing the whole thing in HTML and seeing ifQTextCursor::insertHtml()
accepts it or not, I don't know. -