MistyD
MistyD

Reputation: 17253

How to place an image on the corner of QGroupBox - StyleSheet

I wanted to know if its possible to display an image instead of text in QGroupBox I want to achieve the following style

enter image description here

Any suggestions ?

Upvotes: 0

Views: 2329

Answers (1)

phyatt
phyatt

Reputation: 19142

http://qt-project.org/doc/qt-4.8/stylesheet-examples.html#customizing-qgroupbox

You could try something like:

groupBox->setStyleSheet(
    "QGroupBox::indicator {"
         "width: 13px;"
         "height: 13px;"
    "}"

    "QGroupBox::indicator:unchecked {"
         "image: url(:/images/checkbox_unchecked.png);"
    "}"
 );

Hope that helps.

Upvotes: 2

Related Questions