Qt developers! Is there are way to add image on the background of my midArea like on picture below?
I know I can use something like this
QImage img("logo.jpg");
mdiArea->setBackground(img);
But I don't need any repeat of my image on the background.
Thank you!
As I said in my comment above, you can sub-class the
QMdiArea
, override itspaintEvent()
function and draw your logo image yourself (in the bottom right corner). Here is the sample code that implements the mentioned idea:And finally use the custom mdi area in the main window: