Qt 4.7.4 Compatibility Issues: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
(Simplify punctuation)
 
(5 intermediate revisions by 2 users not shown)
Line 2: Line 2:
[[Category:Developing_with_Qt]]
[[Category:Developing_with_Qt]]


[toc align_right="yes" depth="3"]


= List of compatibility issues in the Qt 4.7.4 Release Bundle =
= List of compatibility issues in the Qt 4.7.4 Release Bundle =
Line 16: Line 15:
At its current form the list focuses on problems seen on Symbian platform.
At its current form the list focuses on problems seen on Symbian platform.


h2. Stricter QML import version checking
== Stricter QML import version checking ==
 
Import version number must now be correct. Previously a too big version number was ignored, and the latest version was used.
Import version number must now be correct. Previously a too big version number was ignored, and the latest version was used.
Example:
Example:
In Qt 4.7.3: “import QtMultimediaKit 1.2” is accepted, but the latest version 1.1 is used
In Qt 4.7.3: "import QtMultimediaKit 1.2" is accepted, but the latest version 1.1 is used
In Qt 4.7.4: “import QtMultimediaKit 1.2” produces an error “module ”QtMultimediaKit" version 1.2 is not installed import QtMultimediaKit 1.2”
In Qt 4.7.4: "import QtMultimediaKit 1.2" produces an error "module "QtMultimediaKit" version 1.2 is not installed import QtMultimediaKit 1.2"
 
h2. Changes in Mobility QML bindings


== Changes in Mobility QML bindings ==
* QML Map (http://doc.qt.nokia.com/qtmobility-1.1/qml-map.html ) is re-implemented in Qt Mobility 1.2. While the only direct break is the removal of '''objects''' property, there are many functional changes ( http://doc.qt.nokia.com/qtmobility-1.2/qml-map.html ). Usage of old QtMobility.location 1.1 import is not recommended. Use "import QtMobility.location 1.2" instead.
* QML Map (http://doc.qt.nokia.com/qtmobility-1.1/qml-map.html ) is re-implemented in Qt Mobility 1.2. While the only direct break is the removal of '''objects''' property, there are many functional changes ( http://doc.qt.nokia.com/qtmobility-1.2/qml-map.html ). Usage of old QtMobility.location 1.1 import is not recommended. Use "import QtMobility.location 1.2" instead.


Line 49: Line 46:
'''''' '''onSucceeded'''
'''''' '''onSucceeded'''


h2. PowerState property removed from QSystemInfo
== PowerState property removed from QSystemInfo ==
 
The '''PowerState''' property in QSystemInfo has been removed in Qt Mobility 1.2. Use the currentPowerState property instead.
The '''PowerState''' property in QSystemInfo has been removed in Qt Mobility 1.2. Use the currentPowerState property instead.
See documentation:
See documentation:
Line 56: Line 52:
http://doc.qt.nokia.com/qtmobility-1.2/qsystemdeviceinfo.html
http://doc.qt.nokia.com/qtmobility-1.2/qsystemdeviceinfo.html


h2. QSystemInfo usage from different threads in Symbian
== QSystemInfo usage from different threads in Symbian ==
 
There are some considerations when using QSystemInfo methods in other threads than the main thread.
There are some considerations when using QSystemInfo methods in other threads than the main thread.
Documented in: http://doc.qt.nokia.com/qtmobility-1.2/qsystemstorageinfo.html
Documented in: http://doc.qt.nokia.com/qtmobility-1.2/qsystemstorageinfo.html
Line 64: Line 59:




h2. Qt Quick Components import changes in Symbian
== Qt Quick Components import changes in Symbian ==
 
"import Qt.labs.components.native 1.0" will not work anymore after components 1.1 has been installed on device. 1.1 is pre-installed on newer Belle releases. Use "import com.nokia.symbian1.0" instead.
“import Qt.labs.components.native 1.0” will not work anymore after components 1.1 has been installed on device. 1.1 is pre-installed on newer Belle releases. Use “import com.nokia.symbian1.0” instead.
 
h2. Qt Quick Components Window anchoring changes in Symbian


== Qt Quick Components Window anchoring changes in Symbian ==
This change is listed here for future reference. The actual change is not in Symbian Belle but in a future Symbian update.
This change is listed here for future reference. The actual change is not in Symbian Belle but in a future Symbian update.
It is still advised to update your application now.
It is still advised to update your application now.
Line 95: Line 88:




h2. Orientation detection in QWidget –based Symbian application
== Orientation detection in QWidget –based Symbian application ==
 
Using QApplication::desktop()->availableGeometry() during the resize event to detect orientation will produce wrong results. The recommended method is to connect to QApplication::desktop()'s workAreaResized(int) signal and call QApplication::desktop()->availableGeometry() in the connected slot function.
Using QApplication::desktop()->availableGeometry() during the resize event to detect orientation will produce wrong results. The recommended method is to connect to QApplication::desktop()'s workAreaResized(int) signal and call QApplication::desktop()->availableGeometry() in the connected slot function.


This break has been introduced between Qt 4.6 and 4.7, so it already applies to Symbian Anna.
This break has been introduced between Qt 4.6 and 4.7, so it already applies to Symbian Anna.
See https://bugreports.qt.nokia.com//browse/QTBUG-14058 for more info.
See https://bugreports.qt.nokia.com//browse/QTBUG-14058 for more info.

Latest revision as of 13:23, 23 August 2015


List of compatibility issues in the Qt 4.7.4 Release Bundle

PLEASE NOTE: THIS PAGE IS UNDER WORK AND WILL RECEIVE UPDATES SHORTLY

This documents lists the noteworthy breaks in binary or functional compatibility in the Qt 4.7.4 release bundle. In Qt and related components terms this means the following updates:

  • Qt 4.7.3 -> 4.7.4
  • Mobility 1.1.3-> 1.2.0
  • Qt Quick Components 1.0 -> 1.1

At its current form the list focuses on problems seen on Symbian platform.

Stricter QML import version checking

Import version number must now be correct. Previously a too big version number was ignored, and the latest version was used. Example: In Qt 4.7.3: "import QtMultimediaKit 1.2" is accepted, but the latest version 1.1 is used In Qt 4.7.4: "import QtMultimediaKit 1.2" produces an error "module "QtMultimediaKit" version 1.2 is not installed import QtMultimediaKit 1.2"

Changes in Mobility QML bindings


' startBatteryLevelChanged' method removed, set monitorBatteryLevelChanges property to true instead ' startBatteryStatusChanged' method removed, set monitorBatteryStatusChanges property to true instead ' startPowerStateChanged' method removed, set monitorPowerStateChanges property to true instead ' startCurrentProfileChanged' method removed, set monitorCurrentProfileChanges property to true instead ' startBluetoothStateChanged' method removed, set monitorBluetoothStateChanges property to true instead

' startStatusChanged' method removed, set monitorStatusChanges property to true instead ' signalStrengthChanged' method removed, set monitorSignalStrengthChanges property to true instead ' modeChanged' method removed, set monitorModeChanges property to true instead ' currentMobileCountryCodeChanged' method removed, set monitorMobileCountryCodeChanges property to true instead ' currentMobileNetworkCodeChanged' method removed, set monitorMobileNetworkCodeChanges property to true instead ' mode' method removed

' onCancelled' ' onFailed' ' onFinished' ' onSucceeded'

PowerState property removed from QSystemInfo

The PowerState property in QSystemInfo has been removed in Qt Mobility 1.2. Use the currentPowerState property instead. See documentation: http://doc.qt.nokia.com/qtmobility-1.1/qsystemdeviceinfo.html http://doc.qt.nokia.com/qtmobility-1.2/qsystemdeviceinfo.html

QSystemInfo usage from different threads in Symbian

There are some considerations when using QSystemInfo methods in other threads than the main thread. Documented in: http://doc.qt.nokia.com/qtmobility-1.2/qsystemstorageinfo.html More info in: https://bugreports.qt.nokia.com/browse/QTMOBILITY-1058 This change has taken place between Mobility 1.1.3 and 1.2.0


Qt Quick Components import changes in Symbian

"import Qt.labs.components.native 1.0" will not work anymore after components 1.1 has been installed on device. 1.1 is pre-installed on newer Belle releases. Use "import com.nokia.symbian1.0" instead.

Qt Quick Components Window anchoring changes in Symbian

This change is listed here for future reference. The actual change is not in Symbian Belle but in a future Symbian update. It is still advised to update your application now.

Any child items should not be anchored to the Window root item directly, but refer to parent instead: Wrong (child anchoring refers to the Window id):

Window {

id: root
Statusbar { anchors.top: root.top }
ToolBar { anchors.bottom: root.bottom }
}


Correct (child anchoring refers to the parent):

Window {
id: root
Statusbar { anchors.top: parent.top }
ToolBar { anchors.bottom: parent.bottom }
}

(link to documentation to be added later)


Orientation detection in QWidget –based Symbian application

Using QApplication::desktop()->availableGeometry() during the resize event to detect orientation will produce wrong results. The recommended method is to connect to QApplication::desktop()'s workAreaResized(int) signal and call QApplication::desktop()->availableGeometry() in the connected slot function.

This break has been introduced between Qt 4.6 and 4.7, so it already applies to Symbian Anna. See https://bugreports.qt.nokia.com//browse/QTBUG-14058 for more info.