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 
18  QWidget wgt;
19  QSlider* psld = new QSlider(Qt::Horizontal);
20  QLabel* plbl = new QLabel("3");
21 
22  psld->setRange(0, 9);
23  psld->setPageStep(2);
24  psld->setValue(3);
25  psld->setTickInterval(2);
26  psld->setTickPosition(QSlider::TicksBelow);
27  QObject::connect(psld, SIGNAL(valueChanged(int)),
28  plbl, SLOT(setNum(int))
29  );
30 
31  //Layout setup
32  QHBoxLayout* phbxLayout = new QHBoxLayout;
33  phbxLayout->addWidget(psld);
34  phbxLayout->addWidget(plbl);
35  wgt.setLayout(phbxLayout);
36 
37  wgt.show();
38 
39  return app.exec();
40 }
int main(int argc, char **argv)
Definition: main.cpp:15