
Originally Posted by
tinsuke
I don't know what it has to do with skins feature, but to put images on a QSplitter you could easily create a QLabel, set its Pixmap (image) with setPixmap and add it to the QSplitter. You could change the displayed image arbitrary by calling yourLabel->setPixmap(image).
It looks proposed sulution doesn't work for Qt3 
I tried this way:
l->setPixmap(pixmap);
QLabel* l = new QLabel(_splitter);
l->setPixmap(pixmap);
To copy to clipboard, switch view to plain text mode
and this:
_splitter->setPaletteBackgroundPixmap(pixmap)
_splitter->setPaletteBackgroundPixmap(pixmap)
To copy to clipboard, switch view to plain text mode
Bookmarks