I can construct a QGraphicsScene by using constructor below:
QGraphicsScene::QGraphicsScene ( qreal x, qreal y, qreal width, qreal height, QObject * parent = 0 )
For example:
QGraphicsScene scene(-350, -350, 700, 700);
I know the first two parameters represent a point, but in which coordinate system?
When ceate a QGraphics object and show this view like this:
QGraphicsView view(&scene);
view.show();
Where will this view appear on my device? Is the location controlled by first two parameters mentioned above?