Qt 5.10 Book Examples
main.cpp
Go to the documentation of this file.
1 // ======================================================================
2 // main.cpp
3 // ======================================================================
4 // This file is a part of the book
5 // "Qt 5.10 Professional programming with C++"
6 // http://qt-book.com
7 // ======================================================================
8 // Copyright (c) 2017 by Max Schlee
9 // ======================================================================
10 
11 #include <QtWidgets>
12 
13 // ----------------------------------------------------------------------
14 int main(int argc, char** argv)
15 {
16  QApplication app(argc, argv);
17  QScrollArea sa;
18 
19  QWidget* pwgt = new QWidget;
20  QPixmap pix(":/img.jpg");
21 
22  QPalette pal;
23  pal.setBrush(pwgt->backgroundRole(), QBrush(pix));
24  pwgt->setPalette(pal);
25  pwgt->setAutoFillBackground(true);
26  pwgt->setFixedSize(pix.width(), pix.height());
27 
28  sa.setWidget(pwgt);
29  sa.resize(350, 150);
30  sa.show();
31 
32  return app.exec();
33 }
int main(int argc, char **argv)
Definition: main.cpp:15