-
Bug
-
Resolution: Unresolved
-
Not Evaluated
-
None
-
1.2.2
-
None
-
Nokia N9 PR1.2
Running the code below in Nokia N9 should report that the device has MultiTouch, but with current PR1.2 and the libraries in it, it report the device to only have SingleTouch and Keys.
------
import QtQuick 1.1
import QtMobility.systeminfo 1.2
Rectangle {
DeviceInfo
{ id: device }Text
{ anchors.fill: parent text: "device.inputMethodType: " + device.inputMethodType + "\n" + "DeviceInfo.Mouse: " + DeviceInfo.Mouse + ", " + (device.inputMethodType & DeviceInfo.Mouse) + "\n" + "DeviceInfo.SingleTouch: " + DeviceInfo.SingleTouch + ", " + (device.inputMethodType & DeviceInfo.SingleTouch) + "\n" + "DeviceInfo.Keys: " + DeviceInfo.Keys + ", " + (device.inputMethodType & DeviceInfo.Keys) + "\n" + "DeviceInfo.Keypad: " + DeviceInfo.Keypad + ", " + (device.inputMethodType & DeviceInfo.Keypad) + "\n" + "DeviceInfo.Keyboard: " + DeviceInfo.Keyboard + ", " + (device.inputMethodType & DeviceInfo.Keyboard) + "\n" + "DeviceInfo.MultiTouch: " + DeviceInfo.MultiTouch + ", " + (device.inputMethodType & DeviceInfo.MultiTouch) + "\n"; }}