initial commit

This commit is contained in:
Jeena 2014-11-11 23:59:26 +01:00
parent 3ff4969946
commit da9216ce09
12 changed files with 551 additions and 0 deletions

14
Content.qml Normal file
View file

@ -0,0 +1,14 @@
import QtWebKit 3.0
WebView {
id: webview
url: "content.html"
onNavigationRequested: {
if (request.navigationType != WebView.LinkClickedNavigation) {
request.action = WebView.AcceptRequest;
} else {
request.action = WebView.IgnoreRequest;
Qt.openUrlExternally(request.url);
}
}
}