Oh ok. Just so I understand you correctly, QGraphicsView::mapFromScene just returns a coordinate, it doesn't actually have to "map" it first? I had a look at the source and it looks like it is being mapped, though I could be wrong:
Qt Code:
{ p.rx() -= d->horizontalScroll(); p.ry() -= d->verticalScroll(); return p.toPoint(); }To copy to clipboard, switch view to plain text mode
EDIT: I realized I misunderstood you. So it does map it, and that's the most direct way. Bummer. Well, thanks for letting me know.
Bookmarks