hi m8,
i have a new problem.
i want to help for u
how can i add multitouch support for my html5 app in Qt?
thanx a lot.
best regards.
hi m8,
i have a new problem.
i want to help for u
how can i add multitouch support for my html5 app in Qt?
thanx a lot.
best regards.
Hi,
So multitouch works fine on WebView QML elements.
this is the code I tested:
import QtQuick 1.1
import com.nokia.meego 1.0
import QtWebKit 1.0
Page {
tools: commonTools
WebView {
anchors.fill: parent
url: "http://smus.com/x/browser-ninja/"
}
}
Please note that multi-touch doesn't work in the harmattan browser since gesture manager eats touch events
hi @gnuton thanx a lot for u r reply.
i didnt use webkit.
i have javascript files and index.html file.
they are in the my html5 app.
i want to use multitouch for my game.
should i use webkit?
Well, if your target is to make an application for N9, you need to write a few line in QML even if your app is a HTML5 app.
Webkit is a MUST, since it renders your HTML pages on the screen.