[Solved] Cannot include QSystemDeviceInfo
-
"Your text to link here...":http://doc.qt.nokia.com/qtmobility-1.2/qsystemdeviceinfo.html
-
I gave a comment on DevNet Documentation review that each API documentation should also carry any .pro file changes that are required to include that header file and use it inside the code. That should remove lot of confusions.
-
[quote author="spode" date="1310117532"]and what about QtQuick project?[/quote]
For Qt Quick, above mentioned .pro file changes are good enough.
And you need to have @import QtMobility.systeminfo 1.1@ in your .qml file
And DeviceInfo is the qml element name.
-
They are listed. See this "quickstart guide":http://doc.qt.nokia.com/qtmobility-1.2/quickstart.html for mobility.
@spode What do you mean? You can still use C++ in a QtQuick project. If you wan tto display it you just need to bind to the respective properties and possibly expose the info you need as properties if they are not already available.
-
@
import Qt 4.7
import QtMobility.systeminfo 1.1Rectangle{
....DeviceInfo { id: deviceinfo; // onBatteryStatusChanged : doBatteryStatusChange(status); onPowerStateChanged : getPowerState(/*powerState*/); onBatteryLevelChanged: doBatteryLevelChange(level) property int battlevel: batteryLevel; monitorBatteryLevelChanges: true monitorBatteryStatusChanges: true monitorPowerStateChanges: true monitorCurrentProfileChanges: true monitorBluetoothStateChanges: true } ...
}
@ -
"Try this...":http://www.developer.nokia.com/Community/Wiki/Working_with_QSystemDeviceInfo_-System_Information_API-_Part_1
-
Yes the MOBILITY variable in the .pro file needs to be in uppercase. The missing symbian capabilities flag would have caused errors later on in the compilation (or maybe at runtime).
Glad to see you hav eit working now. Good luck with the rest of your project.
-
I am making a desktop app and not able to include QSystemDeviceInfo all the above steps i have tried but it dosnt work its giving error no such QSystemDeviceInfo file.i m using qt 4.7
-
ya i have tried in 3 system but it didnt worked i am compiling it by desktop compiler not Symbian or etc...