I think it won't work...

On one hand we set:
Qt Code:
  1. ImageLabel->setScaledContents(true);
To copy to clipboard, switch view to plain text mode 
and setting it we have an image label, which will expand to every free place not keeping the propotion. And then after resizeEvent:
1) Firstly - scaling the label image wont have any effect because we set ScaledContents earlier, so image wont keep proportion.
2) Secondly - we change the size of a label, so we couldn't shrink it...

How do you think?