Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename QDeclarativeExpression::value() to evaluate(). | Michael Brasser | 2010-04-22 | 4 | -4/+4 |
| | | | | | QDeclarativeExpression can be used to evaluate any sort of expression, not just those returning a value. | ||||
* | Change return type to match value(). | Michael Brasser | 2010-04-22 | 2 | -2/+2 |
| | |||||
* | Add duration and easing properties to AnchorAnimation. | Michael Brasser | 2010-04-22 | 2 | -1/+74 |
| | |||||
* | Fix versioning of Qt Declarative's in-built types | Alan Alpert | 2010-04-21 | 1 | -35/+35 |
| | | | | | | Since we aren't releasing for 4.6, all types are new in 4.7. Task-number: QTBUG-10081 | ||||
* | Fix qmlvisual/animation/parentAnimation autotest | Leonardo Sobral Cunha | 2010-04-21 | 1 | -1/+4 |
| | | | | | | | The transformOriginPoint was not up tp date when used in ParentChange after this commit: 575f0064bd91e26daa75805c142c10a04a32c2fd. Reviewed-by: Michael Brasser | ||||
* | doc | Warwick Allison | 2010-04-20 | 1 | -0/+1 |
| | |||||
* | Fix AnchorChanges to work with parent.right. | Michael Brasser | 2010-04-20 | 6 | -221/+366 |
| | | | | | | | "parent" needs to be evaluated with the AnchorChanges target as the scope object. Task-number: QTBUG-5338 | ||||
* | Compile | Warwick Allison | 2010-04-20 | 1 | -2/+0 |
| | |||||
* | Improve error messages, especially on embedded. | Warwick Allison | 2010-04-20 | 1 | -8/+14 |
| | | | | | | With embedded, it is often the case that some QT_NO_* features are turned off (eg. QT_NO_XMLPATTERNS), which in turn leads to QML types not being available. | ||||
* | Doc fix. | Michael Brasser | 2010-04-19 | 1 | -3/+10 |
| | |||||
* | Minor internal anchor refactoring. | Michael Brasser | 2010-04-19 | 2 | -47/+46 |
| | |||||
* | Document default easing curve. | Alan Alpert | 2010-04-19 | 1 | -1/+2 |
| | |||||
* | Emit runtime warnings through QDeclarativeEngine | Aaron Kennedy | 2010-04-19 | 6 | -15/+15 |
| | | | | QTBUG-9726 | ||||
* | Doc: in QML use "real" and "enumeration", not "qreal" and "enum" | Martin Jones | 2010-04-16 | 6 | -16/+16 |
| | |||||
* | ResizeMode support for QGraphicsWidgets created with QDeclarativeView | Joona Petrell | 2010-04-16 | 2 | -88/+180 |
| | | | | | Task-number: QTBUG-8814 Reviewed-by: alexis | ||||
* | Add parent property to Timer | Martin Jones | 2010-04-16 | 1 | -0/+1 |
| | | | | Task-number: QTBUG-9949 | ||||
* | Class documentation fixes for declarative. | Michael Brasser | 2010-04-16 | 2 | -5/+5 |
| | |||||
* | Correctly support translation in QDeclarativePixmapCache | Warwick Allison | 2010-04-16 | 2 | -5/+7 |
| | |||||
* | Compile without Qt3 support. | Yann Bodson | 2010-04-15 | 1 | -1/+1 |
| | |||||
* | Use qmlInfo for image loading errors, not qWarning(). | Warwick Allison | 2010-04-15 | 2 | -12/+25 |
| | | | | Task-number: QTBUG-9908 | ||||
* | Rename the ridiculous QDeclarativeDeclarativeData -> QDeclarativeData | Aaron Kennedy | 2010-04-15 | 4 | -5/+5 |
| | |||||
* | Output script errors in ScriptAction and StateChangeScript | Martin Jones | 2010-04-15 | 2 | -0/+13 |
| | | | | Task-number: QTBUG-9897 | ||||
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Martin Jones | 2010-04-14 | 1 | -1/+1 |
|\ | |||||
| * | Rename remaining import Qt 4.6 lines to import Qt 4.7 | Joona Petrell | 2010-04-14 | 1 | -1/+1 |
| | | | | | | | | | | Task-number: Reviewed-by: Martin Jones | ||||
* | | Doc: more mention of using QUrl::fromLocalFile() for URLs on local filesystem | Martin Jones | 2010-04-14 | 1 | -1/+7 |
|/ | |||||
* | Doc fixes | Bea Lam | 2010-04-13 | 1 | -4/+4 |
| | |||||
* | Doc fixes | Bea Lam | 2010-04-12 | 1 | -0/+15 |
| | |||||
* | Remove QT_VERSION checks in QML | Aaron Kennedy | 2010-04-09 | 1 | -7/+0 |
| | | | | We only support Qt 4.7 now. | ||||
* | Release ListModel's worker agent on deletion. | Bea Lam | 2010-04-09 | 2 | -1/+3 |
| | |||||
* | Fix url resolution in PropertyChanges. | Michael Brasser | 2010-04-09 | 3 | -9/+18 |
| | | | | | | | | Make sure bindings in PropertyChanges resolve urls correctly. Also refactor the code so that PropertyChanges will always use the standard url resolution support provided by QDeclarativeProperty. Task-number: QTBUG-9571 | ||||
* | Fix compile warnings | mae | 2010-04-08 | 1 | -1/+1 |
| | |||||
* | Renamed 'source' property from SpringFollow to 'to' | Leonardo Sobral Cunha | 2010-04-08 | 2 | -26/+35 |
| | |||||
* | Add SmoothedFollow element to qml | Leonardo Sobral Cunha | 2010-04-08 | 4 | -0/+416 |
| | | | | | | | | | | | | | | | | | | | | | The SmoothedFollow is the same as the old EaseFollow, so it's not an animation, but its main use case is to be used as a property value source to automatically follow the 'to' property, as in the example below. Rectangle { color: "green" width: 60; height: 60; SmoothedFollow on x { to: rect1.x - 5; velocity: 200 } SmoothedFollow on y { to: rect1.y - 5; velocity: 200 } } This element shares the internal implementation with SmoothedAnimation, both providing the same easing function, but with SmoothedFollow it's easier to set a start value to animate intially and then start to follow, while SmoothedAnimation is still convenient for using inside Behaviors and Transitions. Reviewed-by: Michael Brasser | ||||
* | Tracking the velocity when restarting SmoothedAnimation | Leonardo Sobral Cunha | 2010-04-08 | 1 | -0/+2 |
| | |||||
* | Fix doc of qml's SmoothedAnimation | Leonardo Sobral Cunha | 2010-04-08 | 1 | -9/+10 |
| | |||||
* | Refactor in smoothedanimation, removed unneeded code | Leonardo Sobral Cunha | 2010-04-08 | 2 | -6/+1 |
| | |||||
* | Replace "import Qt 4.6" with "import Qt 4.7" | Michael Brasser | 2010-04-08 | 2 | -2/+2 |
| | |||||
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Martin Jones | 2010-04-08 | 2 | -14/+12 |
|\ | |||||
| * | Revert "Add QListModelInterface::modelReset() signal and emit this in" | Bea Lam | 2010-04-08 | 2 | -14/+12 |
| | | | | | | | | | | | | | | | | | | | | | | This reverts commit 973cfce37fcdd1ce330f237eaa76930db55a73f6. Need more consideration before adding modelReset(). For example if item insertion/removal is supposed to trigger animations through added/removed signals, they won't be triggered if only the modelReset() signal is emitted. Also if we add modelReset(), it should also be implemented for ListModel to make sure it is implemented by all subclasses of QListModelInterface and to test the impact of this on the view classes. | ||||
* | | Replace Text::wrap property with Text::wrapMode enumeration. | Martin Jones | 2010-04-08 | 1 | -1/+1 |
|/ | | | | wrap remains for a little while, and will produce a warning. | ||||
* | Revert "Support QList<QObject*> properties" | Aaron Kennedy | 2010-04-08 | 2 | -7/+1 |
| | | | | | | | | This reverts commit 9d9161446bfad883c298d54a122e822c5e273a9c. This was a bad idea. It complicates the "property var" are not really JavaScript var problem. Some of the patch is valid, and it will be applied separately. | ||||
* | Document behavior of conflicting when clauses. | Michael Brasser | 2010-04-08 | 1 | -4/+14 |
| | | | | Task-number: QTBUG-9371 | ||||
* | Support QList<QObject*> properties | Aaron Kennedy | 2010-04-08 | 2 | -1/+7 |
| | | | | | | | We already supported returning QList<QObject*> from methods, but there wasn't really much that could be done with the return value. This closes the loop on QList<QObject*> support by allowing them to be properties, and used as models. | ||||
* | Disallow nested elements in ListModel | Aaron Kennedy | 2010-04-07 | 1 | -1/+6 |
| | | | | QTBUG-6082 | ||||
* | Disallow creation of attached objects Keys and KeyNavigation | Martin Jones | 2010-04-07 | 1 | -33/+1 |
| | | | | | | | Also adds qmlRegisterUncreatableType<>() to allow registration of named types that cannot be created. Task-number: QTBUG-9575 | ||||
* | Add QListModelInterface::modelReset() signal and emit this in | Bea Lam | 2010-04-07 | 2 | -12/+14 |
| | | | | XmlListModel when all data has changed. | ||||
* | Don't crash if a target isn't specified for AnchorChanges. | Michael Brasser | 2010-04-06 | 1 | -0/+12 |
| | |||||
* | Update #include of private headers in QtDeclarative | Thiago Macieira | 2010-04-02 | 38 | -107/+107 |
| | | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason. | ||||
* | Doc fix | Bea Lam | 2010-04-01 | 1 | -1/+1 |
| | |||||
* | ModelNode::setObjectValue() must update the object cache. | Bea Lam | 2010-04-01 | 1 | -0/+2 |
| | | | | Task-number: QTBUG-9509 |