From c56f73cc1e8f4a0a2d55d713b152548efcc595aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorbj=C3=B8rn=20Lund=20Martsum?= Date: Mon, 10 Dec 2012 08:16:31 +0100 Subject: QGraphicsView - add function to get RubberBand rect MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In many situations it is handy to know the rubberband rect. There are many situations where we want to show something related to the rubberband. Regardless how that is done the rubberband area is needed. (Not having this is a flaw that can force people to do make a customized rubberband just to get this information) Change-Id: Ia854db4c0022b6a97b150af2b4bb78fd5e974991 Reviewed-by: Andreas Aardal Hanssen Reviewed-by: Samuel Rødal --- .../qgraphicsview/rubberband/rubberbandtest.cpp | 37 ++++++++++++++++++++-- 1 file changed, 34 insertions(+), 3 deletions(-) (limited to 'tests/manual/widgets/qgraphicsview/rubberband') diff --git a/tests/manual/widgets/qgraphicsview/rubberband/rubberbandtest.cpp b/tests/manual/widgets/qgraphicsview/rubberband/rubberbandtest.cpp index 186203e7d8..85881ca67a 100644 --- a/tests/manual/widgets/qgraphicsview/rubberband/rubberbandtest.cpp +++ b/tests/manual/widgets/qgraphicsview/rubberband/rubberbandtest.cpp @@ -62,7 +62,7 @@ class MyGraphicsView : public QGraphicsView { public: - MyGraphicsView() : QGraphicsView() + MyGraphicsView(QWidget *w, QLabel *l) : QGraphicsView(w), rubberbandLabel(l) { setDragMode(QGraphicsView::RubberBandDrag); } @@ -80,13 +80,43 @@ protected: int yglobal = event->globalY(); if (yglobal > bottomPos) verticalScrollBar()->setValue(verticalScrollBar()->value() + 10); + updateRubberbandInfo(); } + + void mouseReleaseEvent(QMouseEvent *event) + { + QGraphicsView::mouseReleaseEvent(event); + updateRubberbandInfo(); + } + + void wheelEvent (QWheelEvent *event) + { + QGraphicsView::wheelEvent(event); + updateRubberbandInfo(); + } + + void updateRubberbandInfo() + { + QString textToShow; + QDebug s(&textToShow); + s << rubberBandRect(); + if (rubberbandLabel->text() != textToShow) + rubberbandLabel->setText(textToShow); + } + QLabel *rubberbandLabel; }; int main(int argc, char *argv[]) { QApplication app(argc, argv); - MyGraphicsView v; + + QWidget w; + w.setLayout(new QVBoxLayout); + QLabel *l = new QLabel(&w); + MyGraphicsView &v = *(new MyGraphicsView(&w, l)); + + w.layout()->addWidget(&v); + w.layout()->addWidget(l); QGraphicsScene s(0.0, 0.0, 5000.0, 5000.0); v.setScene(&s); @@ -100,7 +130,8 @@ int main(int argc, char *argv[]) item->setRect(QRectF(v * 80.0, u * 80.0, 50.0, 20.0)); s.addItem(item); } - v.show(); + + w.show(); app.exec(); return 0; } -- cgit v1.2.3