• Home
  • Raw
  • Download

Lines Matching refs:QWebFrame

163 …(this, SIGNAL(featurePermissionRequested(QWebFrame*, QWebPage::Feature)), this, SLOT(requestPermis…  in WebPage()
164 … SIGNAL(featurePermissionRequestCanceled(QWebFrame*, QWebPage::Feature)), this, SLOT(cancelPermiss… in WebPage()
219 void WebPage::javaScriptAlert(QWebFrame*, const QString& message) in javaScriptAlert() argument
227 void WebPage::requestPermission(QWebFrame* frame, QWebPage::Feature feature) in requestPermission()
248 void WebPage::cancelPermission(QWebFrame* frame, QWebPage::Feature feature) in cancelPermission()
265 foreach (QWebFrame* frame, m_pendingGeolocationRequests) in permissionSet()
305 bool WebPage::javaScriptConfirm(QWebFrame*, const QString& msg) in javaScriptConfirm() argument
314 bool WebPage::javaScriptPrompt(QWebFrame*, const QString& msg, const QString& defaultValue, QString… in javaScriptPrompt() argument
324 bool WebPage::acceptNavigationRequest(QWebFrame* frame, const QNetworkRequest& request, NavigationT… in acceptNavigationRequest()
472 connect(m_page, SIGNAL(frameCreated(QWebFrame *)), in DumpRenderTree()
473 this, SLOT(connectFrame(QWebFrame *))); in DumpRenderTree()
483 connect(m_page, SIGNAL(printRequested(QWebFrame*)), this, SLOT(dryRunPrint(QWebFrame*))); in DumpRenderTree()
487 connect(m_page, SIGNAL(databaseQuotaExceeded(QWebFrame*,QString)), in DumpRenderTree()
488 this, SLOT(dumpDatabaseQuota(QWebFrame*,QString))); in DumpRenderTree()
525 void DumpRenderTree::dryRunPrint(QWebFrame* frame) in dryRunPrint()
770 QWebFrame *frame = qobject_cast<QWebFrame*>(sender()); in initJSObjects()
792 QString DumpRenderTree::dumpFrameScrollPosition(QWebFrame* frame) in dumpFrameScrollPosition()
800 QWebFrame* parent = qobject_cast<QWebFrame *>(frame->parent()); in dumpFrameScrollPosition()
807 QList<QWebFrame*> children = frame->childFrames(); in dumpFrameScrollPosition()
814 QString DumpRenderTree::dumpFramesAsText(QWebFrame* frame) in dumpFramesAsText()
820 QWebFrame* parent = qobject_cast<QWebFrame*>(frame->parent()); in dumpFramesAsText()
832 QList<QWebFrame *> children = frame->childFrames(); in dumpFramesAsText()
937 QWebFrame *mainFrame = m_page->mainFrame(); in dump()
1042 void DumpRenderTree::connectFrame(QWebFrame *frame) in connectFrame()
1049 void DumpRenderTree::dumpDatabaseQuota(QWebFrame* frame, const QString& dbName) in dumpDatabaseQuota()
1099 connect(page, SIGNAL(frameCreated(QWebFrame*)), this, SLOT(connectFrame(QWebFrame*))); in createWindow()