• Home
  • Raw
  • Download

Lines Matching refs:clientInfo

34 static QWKPage* toQWKPage(const void* clientInfo)  in toQWKPage()  argument
36 if (clientInfo) in toQWKPage()
37 return reinterpret_cast<QWKPage*>(const_cast<void*>(clientInfo)); in toQWKPage()
41 static void loadFinished(WKFrameRef frame, const void* clientInfo, bool ok) in loadFinished() argument
45 emit toQWKPage(clientInfo)->loadFinished(ok); in loadFinished()
46 QWKPagePrivate::get(toQWKPage(clientInfo))->updateNavigationActions(); in loadFinished()
49 …ovisionalLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) in qt_wk_didStartProvisionalLoadForFrame() argument
53 emit toQWKPage(clientInfo)->loadStarted(); in qt_wk_didStartProvisionalLoadForFrame()
54 QWKPagePrivate::get(toQWKPage(clientInfo))->updateNavigationActions(); in qt_wk_didStartProvisionalLoadForFrame()
57 …ovisionalLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) in qt_wk_didReceiveServerRedirectForProvisionalLoadForFrame() argument
61 …ame(WKPageRef page, WKFrameRef frame, WKErrorRef error, WKTypeRef userData, const void* clientInfo) in qt_wk_didFailProvisionalLoadWithErrorForFrame() argument
63 loadFinished(frame, clientInfo, false); in qt_wk_didFailProvisionalLoadWithErrorForFrame()
66 …didCommitLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) in qt_wk_didCommitLoadForFrame() argument
73 emit toQWKPage(clientInfo)->urlChanged(qUrl); in qt_wk_didCommitLoadForFrame()
74 QWKPagePrivate::get(toQWKPage(clientInfo))->updateNavigationActions(); in qt_wk_didCommitLoadForFrame()
77 …hDocumentLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) in qt_wk_didFinishDocumentLoadForFrame() argument
82 …didFinishLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) in qt_wk_didFinishLoadForFrame() argument
84 loadFinished(frame, clientInfo, true); in qt_wk_didFinishLoadForFrame()
87 …ame(WKPageRef page, WKFrameRef frame, WKErrorRef error, WKTypeRef userData, const void* clientInfo) in qt_wk_didFailLoadWithErrorForFrame() argument
89 loadFinished(frame, clientInfo, false); in qt_wk_didFailLoadWithErrorForFrame()
92 …me(WKPageRef page, WKStringRef title, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) in qt_wk_didReceiveTitleForFrame() argument
97 emit toQWKPage(clientInfo)->titleChanged(qTitle); in qt_wk_didReceiveTitleForFrame()
100 …idFirstLayoutForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) in qt_wk_didFirstLayoutForFrame() argument
104 emit toQWKPage(clientInfo)->initialLayoutCompleted(); in qt_wk_didFirstLayoutForFrame()
107 …oveFrameFromHierarchy(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) in qt_wk_didRemoveFrameFromHierarchy() argument
112 …onEmptyLayoutForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) in qt_wk_didFirstVisuallyNonEmptyLayoutForFrame() argument
119 void qt_wk_didStartProgress(WKPageRef page, const void* clientInfo) in qt_wk_didStartProgress() argument
121 emit toQWKPage(clientInfo)->loadProgress(0); in qt_wk_didStartProgress()
124 void qt_wk_didChangeProgress(WKPageRef page, const void* clientInfo) in qt_wk_didChangeProgress() argument
126 emit toQWKPage(clientInfo)->loadProgress(WKPageGetEstimatedProgress(page) * 100); in qt_wk_didChangeProgress()
129 void qt_wk_didFinishProgress(WKPageRef page, const void* clientInfo) in qt_wk_didFinishProgress() argument
131 emit toQWKPage(clientInfo)->loadProgress(100); in qt_wk_didFinishProgress()
134 void qt_wk_didBecomeUnresponsive(WKPageRef page, const void* clientInfo) in qt_wk_didBecomeUnresponsive() argument
138 void qt_wk_didBecomeResponsive(WKPageRef page, const void* clientInfo) in qt_wk_didBecomeResponsive() argument
142 …ryRef features, WKEventModifiers modifiers, WKEventMouseButton mouseButton, const void* clientInfo) in qt_wk_createNewPage() argument
144 QWKPage* wkPage = toQWKPage(clientInfo); in qt_wk_createNewPage()
159 void qt_wk_showPage(WKPageRef page, const void* clientInfo) in qt_wk_showPage() argument
163 void qt_wk_close(WKPageRef page, const void* clientInfo) in qt_wk_close() argument
165 emit toQWKPage(clientInfo)->windowCloseRequested(); in qt_wk_close()
168 void qt_wk_takeFocus(WKPageRef page, WKFocusDirection direction, const void *clientInfo) in qt_wk_takeFocus() argument
170 emit toQWKPage(clientInfo)->focusNextPrevChild(direction == kWKFocusDirectionForward); in qt_wk_takeFocus()
173 …runJavaScriptAlert(WKPageRef page, WKStringRef alertText, WKFrameRef frame, const void* clientInfo) in qt_wk_runJavaScriptAlert() argument
177 void qt_wk_setStatusText(WKPageRef page, WKStringRef text, const void *clientInfo) in qt_wk_setStatusText() argument
180 emit toQWKPage(clientInfo)->statusBarMessage(qText); in qt_wk_setStatusText()