Hi, I have an image background and a palette, I set the image to the palette and then, I set a this palette to the QMainWindow.
1st Question ----------------------------------------------------------------------
The thing here is even when I use this:
background = new QPixmap(":Local/WoodenBack.png");
background->scaled(this->size(),Qt::IgnoreAspectRatio);
Rhe size of the Image remains the default size and the window shows just a half of it.
Example: Image size 600X600 / Window size 300X300

2nd Question -----------------------------------------------------------------------

Im going to make a Checker Game, its not the big deal, should I use QLabels using QMainWindow? I worked with QGraphicsScene and QGraphicsView before, and now I want to try something different. This its just an easy project (The checkers Game).