vote up 0 vote down star

I've been pulling my hair out with this one for hours. There's a thread here about it, but nothing seems to be working. QGraphicsView::rect() will return the width and height, but the left and top values aren't set properly (always 0 -- ignoring the scrolled amount). I want it in scene coordinates, but it should be easy enough to translate from any system. I have no idea what horizontalScrollBar()->value() and vert are returning...seems to be meaningless jibberish.


@fabrizioM:

// created here
void EditorWindow::createScene() {
    m_scene = new EditorScene(this);
    m_view = new EditorView(m_scene);
    setCentralWidget(m_view);
    connect(m_scene, SIGNAL(mousePosChanged(QPointF)), this, SLOT(mousePosChanged(QPointF)));
}

/// with this constructor
EditorView::EditorView(QGraphicsScene* scene, QWidget* parent) : QGraphicsView(scene, parent) {
    setRenderHint(QPainter::Antialiasing);
    setCacheMode(QGraphicsView::CacheBackground);
    setViewportUpdateMode(QGraphicsView::FullViewportUpdate);
    setDragMode(QGraphicsView::NoDrag);
    scale(1.0, -1.0); // flip coordinate system so that y increases upwards
    fitInView(-5, -5, 10, 10, Qt::KeepAspectRatio);
    setInteractive(true);
    setBackgroundBrush(QBrush(QColor(232,232,232), Qt::DiagCrossPattern));
}
flag

71% accept rate
Scratch that...the scrollbar values are relative to... well it can't be the sceneRect() because those are floats... but something similar. – Mark Aug 31 at 1:36
Maybe is how you construct the QGraphicsView, any source code snippet ? – fabrizioM Aug 31 at 2:42
I'm not sure what code you want exactly. It doesn't really matter how I construct it... getting the visible rect should be exactly the same. – Mark Aug 31 at 2:50

3 Answers

vote up 1 vote down

It sounds like what you want is the scene rectangle. The ::rect() method is inherited from QWidget. See:

http://doc.qt.nokia.com/4.6-snapshot/qgraphicsview.html#sceneRect-prop

link|flag
Did you read the description? "The scene rectangle defines the extent of the scene, and in the view's case, this means the area of the scene that you can navigate using the scroll bars." sceneRect returns the entire scene, not just the area currently visible (a subsection of the scene). – Mark Sep 6 at 20:23
Lifted straight from the docs; "This property holds the area of the scene visualized by this view.". This is what you want right? You can also use mapTo and mapFrom to convert between coordinate systems. – Henrik Hartz Sep 7 at 7:31
vote up 0 vote down check

Nevermind. Came up with this, which seems to work.

QRectF EditorView::visibleRect() {
    QPointF tl(horizontalScrollBar()->value(), verticalScrollBar()->value());
    QPointF br = tl + viewport()->rect().bottomRight();
    QMatrix mat = matrix().inverted();
    return mat.mapRect(QRectF(tl,br));
}
link|flag
vote up 0 vote down

You can do what you've done, or use the mapToScene() functions. You can't count on the resulting scene "rectangle" being a rectangle, however, because the scene might be rotated or sheared in the view, resulting in a general polygon when mapped to the scene.

If your application never does such things, of course, you're free to assume that a rectangle is always appropriate.

link|flag
Map what to the scene though? I can't seem to get the information I need from anything but the scrollbars. – Mark Sep 30 at 1:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.