Reputation: 17253
I wanted to know if its possible to display an image instead of text in QGroupBox I want to achieve the following style
Any suggestions ?
Upvotes: 0
Views: 2329
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