Qt 4.7.4 Compatibility Issues: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
(Simplify punctuation)
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
=List of compatibility issues in the Qt 4.7.4 Release Bundle=
[[Category:Developing_with_Qt::Qt Quick]]
[[Category:Developing_with_Qt]]


'''<span class="caps">PLEASE</span> <span class="caps">NOTE</span>: <span class="caps">THIS</span> <span class="caps">PAGE</span> IS <span class="caps">UNDER</span> <span class="caps">WORK</span> <span class="caps">AND</span> <span class="caps">WILL</span> <span class="caps">RECEIVE</span> <span class="caps">UPDATES</span> <span class="caps">SHORTLY</span>'''


This documents lists the noteworthy breaks in binary or functional compatibility in the Qt 4.7.4 release bundle.<br /> In Qt and related components terms this means the following updates:
= List of compatibility issues in the Qt 4.7.4 Release Bundle =


* Qt 4.7.3 -&gt; 4.7.4
'''PLEASE NOTE: THIS PAGE IS UNDER WORK AND WILL RECEIVE UPDATES SHORTLY'''
* Mobility 1.1.3 -&gt; 1.2.0
 
* Qt Quick Components 1.0 -&gt; 1.1
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.
At its current form the list focuses on problems seen on Symbian platform.


==Stricter <span class="caps">QML</span> 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.
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"


Import version number must now be correct. Previously a too big version number was ignored, and the latest version was used.<br /> Example:<br /> In Qt 4.7.3: “import QtMultimediaKit 1.2” is accepted, but the latest version 1.1 is used<br /> 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 ==
* 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.


==Changes in Mobility <span class="caps">QML</span> bindings==


* <span class="caps">QML</span> 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 DeviceInfo ( http://doc.qt.nokia.com/qtmobility-1.1/qml-deviceinfo.html) has several methods removed. Please see http://doc.qt.nokia.com/qtmobility-1.2/qml-deviceinfo.html for new equivalent properties.
'''''' '''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


* <span class="caps">QML</span> DeviceInfo ( http://doc.qt.nokia.com/qtmobility-1.1/qml-deviceinfo.html) has several methods removed. Please see http://doc.qt.nokia.com/qtmobility-1.2/qml-deviceinfo.html for new equivalent properties.
* QML NetworkInfo ( http://doc.qt.nokia.com/qtmobility-1.1/qml-networkinfo.html ) has several methods removed. Please see http://doc.qt.nokia.com/qtmobility-1.2/qml-networkinfo.html for new equivalent properties.
** '''startBatteryLevelChanged''' method removed, set monitorBatteryLevelChanges property to true instead
'''''' '''startStatusChanged''' method removed, set monitorStatusChanges property to true instead
** '''startBatteryStatusChanged''' method removed, set monitorBatteryStatusChanges property to true instead
'''''' '''signalStrengthChanged''' method removed, set monitorSignalStrengthChanges property to true instead
** '''startPowerStateChanged''' method removed, set monitorPowerStateChanges property to true instead
'''''' '''modeChanged''' method removed, set monitorModeChanges property to true instead
** '''startCurrentProfileChanged''' method removed, set monitorCurrentProfileChanges property to true instead
'''''' '''currentMobileCountryCodeChanged''' method removed, set monitorMobileCountryCodeChanges property to true instead
** '''startBluetoothStateChanged''' method removed, set monitorBluetoothStateChanges property to true instead
'''''' '''currentMobileNetworkCodeChanged''' method removed, set monitorMobileNetworkCodeChanges property to true instead
'''''' '''mode''' method removed


* <span class="caps">QML</span> NetworkInfo ( http://doc.qt.nokia.com/qtmobility-1.1/qml-networkinfo.html ) has several methods removed. Please see http://doc.qt.nokia.com/qtmobility-1.2/qml-networkinfo.html for new equivalent properties.
* QML DocumentGalleryModel documentation( http://doc.qt.nokia.com/qtmobility-1.1/qml-documentgallerymodel.html ) had several signals which did not actually exist. The documentation is now updated at http://doc.qt.nokia.com/qtmobility-1.2/qml-documentgallerymodel.html
** '''startStatusChanged''' method removed, set monitorStatusChanges property to true instead
'''''' '''onCancelled'''
** '''signalStrengthChanged''' method removed, set monitorSignalStrengthChanges property to true instead
'''''' '''onFailed'''
** '''modeChanged''' method removed, set monitorModeChanges property to true instead
'''''' '''onFinished'''
** '''currentMobileCountryCodeChanged''' method removed, set monitorMobileCountryCodeChanges property to true instead
'''''' '''onSucceeded'''
** '''currentMobileNetworkCodeChanged''' method removed, set monitorMobileNetworkCodeChanges property to true instead
** '''mode''' method removed


* <span class="caps">QML</span> DocumentGalleryModel documentation( http://doc.qt.nokia.com/qtmobility-1.1/qml-documentgallerymodel.html ) had several signals which did not actually exist. The documentation is now updated at http://doc.qt.nokia.com/qtmobility-1.2/qml-documentgallerymodel.html
== PowerState property removed from QSystemInfo ==
** '''onCancelled'''
The '''PowerState''' property in QSystemInfo has been removed in Qt Mobility 1.2. Use the currentPowerState property instead.
** '''onFailed'''
See documentation:
** '''onFinished'''
http://doc.qt.nokia.com/qtmobility-1.1/qsystemdeviceinfo.html
** '''onSucceeded'''
http://doc.qt.nokia.com/qtmobility-1.2/qsystemdeviceinfo.html


==PowerState property removed from QSystemInfo==
== 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


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


==QSystemInfo usage from different threads 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.


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


==Qt Quick Components import changes in Symbian==
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):


“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.
Window {
id: root
Statusbar { anchors.top: root.top }
ToolBar { anchors.bottom: root.bottom }
}


==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.<br /> 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:<br /> 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):
Correct (child anchoring refers to the parent):


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


(link to documentation to be added later)
(link to documentation to be added later)


==Orientation detection in QWidget –based Symbian application==
Using QApplication::desktop()-&gt;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()-&gt;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.<br /> See https://bugreports.qt.nokia.com//browse/QTBUG-14058 for more info.


===Categories:===
== 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.


* [[:Category:Developing with Qt|Developing_with_Qt]]
This break has been introduced between Qt 4.6 and 4.7, so it already applies to Symbian Anna.
** [[:Category:Developing with Qt::Qt Quick|Qt_Quick]]
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.