Hello,
I am developing a checkers game for Mac and Win.
I am displaying each piece in a QLabel in the following way
Qt Code:
  1. QLabel *piece = new QLabel("piece",this);
  2. piece->setPixmap(QPixmap("piece.png"));
To copy to clipboard, switch view to plain text mode 
Now I have to display kings and I would like to overlap two images (piece.png) in the same QLabel because I have to move the two pieces (king) together in my animations. How can I do that?

Tx a lot!!