diff options
Diffstat (limited to 'src/declarative/QmlChanges.txt')
-rw-r--r-- | src/declarative/QmlChanges.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/declarative/QmlChanges.txt b/src/declarative/QmlChanges.txt index 06fa720..34e4834 100644 --- a/src/declarative/QmlChanges.txt +++ b/src/declarative/QmlChanges.txt @@ -1,7 +1,17 @@ ============================================================================= The changes below are pre Qt 4.7.0 alpha +Flickable: renamed viewportWidth -> contentWidth +Flickable: renamed viewportHeight -> contentHeight +Flickable: renamed viewportX -> contentX +Flickable: renamed viewportY -> contentY +Removed Flickable.reportedVelocitySmoothing Renamed MouseRegion -> MouseArea +Connection: syntax and rename: + Connection { sender: a; signal: foo(); script: xxx } + Connection { sender: a; signal: bar(); script: yyy } + becomes: + Connections { target: a; onFoo: xxx; onBar: yyy } QmlView ------- @@ -28,6 +38,14 @@ ListModel - foo: true is now a bool (not string "true") - foo: false is now a bool (not string "false" == true!) +C++ API +------- +QML_DEFINE_... definition macros, previously global macros, are replaced by +QML_REGISTER_... registration macros, which must be called explicitly. C++ API users +should also consider using the QmlExtensionPlugin (previously named QmlModulePlugin) +as a cleaner mechanism for publishing libraries of QML types, or the upcoming +application plugin features of the qmlviewer / qmlruntime / qml. + PropertyAnimation ------------------ matchProperties and matchTargets have been renamed back to properties and targets. |