Home | History | Annotate | Download | only in declarative

Lines Matching refs:preferredWidth

45       , preferredwidth(0)
61 int preferredwidth, preferredheight;
185 If the preferredWidth property is set, the width will be this amount or larger,
186 usually laying out the Web content to fit the preferredWidth.
278 if (!preferredWidth())
279 setPreferredWidth(d->view->preferredWidth());
409 \qmlproperty int WebView::preferredWidth
412 int QDeclarativeWebView::preferredWidth() const
414 return d->preferredwidth;
419 if (d->preferredwidth == width)
421 d->preferredwidth = width;
475 d->preferredwidth>0 ? d->preferredwidth : width(),
582 \i fits into the preferredWidth and preferredHeight
595 QRect showArea = elementAreaAt(clickX, clickY, d->preferredwidth / maxZoom, d->preferredheight / maxZoom);
596 qreal z = qMin(qreal(d->preferredwidth) / showArea.width(), qreal(d->preferredheight) / showArea.height());