How to give QTextFrame or QTextBlock a background-image in QTextEdit?

Qt Style Sheets are a perfect fit to achieve what you want.

The solution is to use a border image. Fortunately you can do that with style sheets and you can style QTextEdits.

About styling the QTextBlocks or QTextFrames: A QTextEdit is a widget that displays a QTextDocument which can contain QTextBlocks and QTextFrames. Frames and blocks are text containers that provide structure for the text in a document but they're not rendered by separate widgets. For that reason they can not be styled independently. What I recommend is to use a QTextEdit or other widget for each message and properly manage the consequent increase in memory use.

I'll expose how to style a text edit.

First, take a clean image of your desired border. With a little Photoshop I've prepared my own image (not as clean as it should for a production app):

bkg.png

Lets style objects of the class QTextEdit and its subclasses.

QTextEdit {
    background-color: #eaedf2;              /* Same gray in your background center */
    border-image: url(":/images/bkg.png");  /* The border image                    */
    border-top-width: 11px;
    border-right-width: 4px;
    border-bottom-width: 4px;
    border-left-width: 11px;
}

Setting the previous style sheet to the container of the text edits will turn all of them into this

enter image description here

Something quite similar to your desired look. Of course you have to prepare a good border image and better adjust the border dimensions but I think this could be of help.

If you want different styles for incoming and outgoing messages then you will have to properly differentiate and select them in the style sheet. Check this for reference.


You need to modify Qt's source code for this.

I've done this last year.

You could set a background image (the bubble image ) for a frame.

If you r using Qt 4.8.6, locate qtextdocumentlayout.cpp, at line 402:

The default fill fillBackground implementation is

 p->fillRect(rect, brush);

You could change to qDrawBorderPixmap instead to draw a bubble background.

Tags:

Qt

Qtextedit