HomeSort by relevance Sort by last modified time
    Searched refs:newWindowComponent (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebKit/qt/declarative/
qdeclarativewebview.cpp 50 , newWindowComponent(0)
70 QDeclarativeComponent* newWindowComponent;
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) {
886 QObject* newObject = d->newWindowComponent->create(windowContext);
916 \qmlproperty component WebView::newWindowComponent
926 QDeclarativeComponent* QDeclarativeWebView::newWindowComponent() cons
    [all...]
qdeclarativewebview_p.h 119 Q_PROPERTY(QDeclarativeComponent* newWindowComponent READ newWindowComponent WRITE setNewWindowComponent NOTIFY newWindowComponentChanged)
187 QDeclarativeComponent *newWindowComponent() const;
  /external/webkit/Source/WebKit/qt/tests/qdeclarativewebview/
tst_qdeclarativewebview.cpp 34 void newWindowComponent();
284 void tst_QDeclarativeWebView::newWindowComponent()
299 wv->setProperty("newWindowComponent", QVariant::fromValue(&substituteComponent));
300 QCOMPARE(wv->property("newWindowComponent"), QVariant::fromValue(&substituteComponent));
303 wv->setProperty("newWindowComponent", QVariant::fromValue(&substituteComponent));
306 wv->setProperty("newWindowComponent", QVariant::fromValue((QDeclarativeComponent*)0));

Completed in 64 milliseconds