Home | History | Annotate | Download | only in declarative

Lines Matching full:maxzoom

576     \qmlmethod bool WebView::heuristicZoom(int clickX, int clickY, real maxzoom)
583 \i zooms by no more than \a maxZoom
590 bool QDeclarativeWebView::heuristicZoom(int clickX, int clickY, qreal maxZoom)
592 if (contentsScale() >= maxZoom / scale())
595 QRect showArea = elementAreaAt(clickX, clickY, d->preferredwidth / maxZoom, d->preferredheight / maxZoom);
597 if (z > maxZoom / scale())
598 z = maxZoom / scale();