| 20 | #include "IPProcessGridScene.h" |
| 21 | |
| 22 | IPProcessGridScene::IPProcessGridScene(QObject *parent) : |
| 23 | QGraphicsScene(parent) |
| 24 | { |
| 25 | QBrush backgroundBrush(QImage(":/blueprint.png")); |
| 26 | setBackgroundBrush(backgroundBrush); |
| 27 | |
| 28 | // add temporary arrow item |
| 29 | _tmpArrow = new IPProcessEdgeTmp; |
| 30 | addItem(_tmpArrow); |
| 31 | |
| 32 | _showThumbnails = false; |
| 33 | } |
| 34 | |
| 35 | IPProcessGridScene::~IPProcessGridScene() |
| 36 | { |
nothing calls this directly
no outgoing calls
no test coverage detected