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  QGraphicsScene scene(QRectF(-100, -100, 300, 300));
18  QGraphicsView view(&scene);
19 
20  QGraphicsRectItem* pRectItem =
21  scene.addRect(QRectF(-30, -30, 120, 80),
22  QPen(Qt::black),
23  QBrush(Qt::green)
24  );
25  pRectItem->setFlags(QGraphicsItem::ItemIsMovable);
26 
27  QGraphicsPixmapItem* pPixmapItem =
28  scene.addPixmap(QPixmap(":/haus.jpg"));
29  pPixmapItem->setFlags(QGraphicsItem::ItemIsMovable);
30 
31  QGraphicsTextItem* pTextItem =
32  scene.addText("Move us with your mouse");
33  pTextItem->setFlags(QGraphicsItem::ItemIsMovable);
34 
35  QGraphicsLineItem* pLineItem =
36  scene.addLine(QLineF(-10, -10, -80, -80), QPen(Qt::red, 2));
37  pLineItem->setFlags(QGraphicsItem::ItemIsMovable);
38 
39  view.show();
40 
41  return app.exec();
42 }
int main(int argc, char **argv)
Definition: main.cpp:15