Falkon
Develop
Cross-platform Qt-based web browser
thumbnailer-qt5.qml
Go to the documentation of this file.
1
import
QtQuick 2.2
2
import
QtWebEngine 1.0
3
4
WebEngineView {
5
id: view
6
width: 1280
7
height: 720
8
9
onLoadingChanged: {
10
if
(loadRequest.status == WebEngineView.LoadStartedStatus)
11
return
;
12
13
var ok = loadRequest.status == WebEngineView.LoadSucceededStatus;
14
view.runJavaScript(
thumbnailer
.afterLoadScript(), function() {
15
thumbnailer
.createThumbnail(ok);
16
});
17
}
18
}
thumbnailer
Definition:
thumbnailer.qml:3
src
lib
data
data
thumbnailer-qt5.qml
Generated by
1.9.3