OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:newWindowParent
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebKit/qt/tests/qdeclarativewebview/
tst_qdeclarativewebview.cpp
35
void
newWindowParent
();
310
void tst_QDeclarativeWebView::
newWindowParent
()
322
QCOMPARE(qvariant_cast<QDeclarativeItem*>(wv->property("
newWindowParent
")), oldWindowParent);
325
QDeclarativeItem*
newWindowParent
= rootItem->findChild<QDeclarativeItem*>("
newWindowParent
");
326
wv->setProperty("
newWindowParent
", QVariant::fromValue(
newWindowParent
));
327
QVERIFY(
newWindowParent
);
330
QCOMPARE(wv->property("
newWindowParent
"), QVariant::fromValue(
newWindowParent
));
[
all
...]
/external/webkit/Source/WebKit/qt/declarative/
qdeclarativewebview.cpp
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
[
all
...]
Completed in 204 milliseconds