diff options
Diffstat (limited to 'WebKit/qt/Api/qgraphicswebview.cpp')
-rw-r--r-- | WebKit/qt/Api/qgraphicswebview.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/WebKit/qt/Api/qgraphicswebview.cpp b/WebKit/qt/Api/qgraphicswebview.cpp index 904201e..178f5c2 100644 --- a/WebKit/qt/Api/qgraphicswebview.cpp +++ b/WebKit/qt/Api/qgraphicswebview.cpp @@ -60,8 +60,6 @@ public: void syncLayers(); void updateResizesToContentsForPage(); - virtual QRectF graphicsItemVisibleRect() const; - void detachCurrentPage(); @@ -157,25 +155,6 @@ void QGraphicsWebViewPrivate::_q_scaleChanged() #endif } -QRectF QGraphicsWebViewPrivate::graphicsItemVisibleRect() const -{ - if (!q->scene()) - return QRectF(); - QList<QGraphicsView*> views = q->scene()->views(); - if (views.size() > 1) { -#ifndef QT_NO_DEBUG_STREAM - qDebug() << "QGraphicsWebView is in more than one graphics views, unable to compute the visible rect"; -#endif - return QRectF(); - } - if (views.size() < 1) - return QRectF(); - - int xPosition = views[0]->horizontalScrollBar()->value(); - int yPosition = views[0]->verticalScrollBar()->value(); - return q->mapRectFromScene(QRectF(QPoint(xPosition, yPosition), views[0]->viewport()->size())); -} - /*! \class QGraphicsWebView \brief The QGraphicsWebView class allows Web content to be added to a GraphicsView. |