12345678910111213141516171819202122232425 |
- import QtQuick 1.1
- import com.nokia.symbian 1.1
- import QtWebKit 1.0
- import custom 1.0
- Page {
- id: webPage
- orientationLock: PageOrientation.LockLandscape
- MyWebView {
- id: webView
- url: "../html/index.html"
- settings.javascriptEnabled: true;
- settings.localContentCanAccessRemoteUrls: true;
- preferredHeight: parent.height;
- preferredWidth: parent.width;
- smooth: false;
- clip: false;
- onAlert: console.log(message)
- }
- }
|