Hi everyone

I'm pretty much new to the QT world, so I'm trying to learn something by reading codes and stuff. My main problem now is that I need to set a wallpaper, showing it slowly from a black background.
I googled and tested some methods, but couldn't get it working.
So I'll just post my little code and ask if someone can explain me a way to make the effect I'm looking for

Qt Code:
  1. void Desk::set_wall() {
  2. setPixmap(wall_img);
  3. setScaledContents(true);
  4. setGeometry(0, 0, 1280, 1024);
  5. }
To copy to clipboard, switch view to plain text mode 


Thanks!