Home | History | Annotate | Download | only in declarative

Lines Matching refs:newWindowParent

51       , newWindowParent(0)
71 QDeclarativeItem* newWindowParent;
878 if (!d->newWindowComponent && d->newWindowParent)
879 qWarning("WebView::newWindowComponent not set - WebView::newWindowParent ignored");
880 else if (d->newWindowComponent && !d->newWindowParent)
881 qWarning("WebView::newWindowParent not set - WebView::newWindowComponent ignored");
882 else if (d->newWindowComponent && d->newWindowParent) {
897 newObject->setParent(d->newWindowParent);
898 static_cast<QGraphicsObject*>(item)->setParentItem(d->newWindowParent);
924 The parent of the new window is set by newWindowParent. It must be set.
941 \qmlproperty item WebView::newWindowParent
947 QDeclarativeItem* QDeclarativeWebView::newWindowParent() const
949 return d->newWindowParent;
954 if (parent == d->newWindowParent)
956 if (d->newWindowParent && parent) {
957 QList<QGraphicsItem *> children = d->newWindowParent->childItems();
961 d->newWindowParent = parent;