summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data
Commit message (Collapse)AuthorAgeFilesLines
* QML focus API updates.Michael Brasser2010-07-261-1/+1
| | | | | | | | | | The wantsFocus property has been renamed to activeFocus, to better reflect its value. Reading and writing the focus property is also now consistent -- this property represents focus within a scope. Other small changes were made to keep things consistent with the new naming. Reviewed-by: Aaron Kennedy (cherry picked from commit 21806ff0921641b4e4d9d39721ab4ebeae74dddc)
* Rewinding AnchorChanges should not make target item's implicit width and ↵Joona Petrell2010-07-261-0/+37
| | | | | | | | height explicit Task-number: QTBUG-12273 Reviewed-by: Michael Brasser (cherry picked from commit 164b2b54922d87a44a60efe6dbbe2fa3b7716820)
* Add test for PropertyChanges with attached properties.Martin Jones2010-06-081-0/+20
| | | | Task-number: QTBUG-11283
* Ensure state operations assigned to the default state are triggeredMichael Brasser2010-06-071-0/+21
| | | | | | when returning to that state. Task-number: QTBUG-11228
* Correct ownership of signal handlers in state changes.Michael Brasser2010-05-111-0/+24
| | | | | | | When a state uses override, we may apply the same replacesignalhandler on top of itself. Make sure we update ownership accordingly. Task-number: QTBUG-10523
* Enable states to be activated via their 'when' clause even if unnamed.Michael Brasser2010-05-051-0/+14
| | | | | | | Autogenerate a name for unnamed states: "anonymousState1", etc. Task-number: QTBUG-10352 Reviewed-by: Aaron Kennedy
* Fix versioning of Qt Declarative's in-built typesAlan Alpert2010-04-2137-37/+37
| | | | | | Since we aren't releasing for 4.6, all types are new in 4.7. Task-number: QTBUG-10081
* Fix url resolution in PropertyChanges.Michael Brasser2010-04-093-0/+44
| | | | | | | | 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
* Replace Text::wrap property with Text::wrapMode enumeration.Martin Jones2010-04-081-1/+1
| | | | wrap remains for a little while, and will produce a warning.
* Document behavior of conflicting when clauses.Michael Brasser2010-04-081-0/+11
| | | | Task-number: QTBUG-9371
* Don't crash if a target isn't specified for AnchorChanges.Michael Brasser2010-04-061-0/+14
|
* Update AnchorChanges to use more natural form for setting anchors.Michael Brasser2010-03-255-12/+12
| | | | | | | Instead of specifying left, right, etc directly, we keep the regular syntax and specify anchors.left, anchors.right, etc. Also get rid of the hacky "reset" string property and use undefined to reset (like PropertyChanges).
* Produce an error when trying to create objects in a PropertyChanges.Michael Brasser2010-03-211-0/+12
| | | | | | | State-specific object lifecycle management will be addressed in a future release. Task-number: QTBUG-8318
* Fix tests after 47fb07c9fdf47584ae55f3412102bbeef5576b04.Michael Brasser2010-03-182-0/+0
| | | | | The import order has changed, so test files that mirror element names needed to be renamed (or they would resolve as the type).
* Make states test work with smaller font size.Martin Jones2010-03-171-2/+2
|
* Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlBea Lam2010-02-251-0/+20
|\ | | | | | | | | Conflicts: src/declarative/qml/qdeclarativeproperty.cpp
| * Document and test resetting properties in a state change.Michael Brasser2010-02-251-0/+20
| | | | | | | | Task-number: QT-1817
* | Automatically connect to signals "onFooChanged" if property is "foo".Bea Lam2010-02-251-0/+19
|/ | | | | | | This follows on from a2a8cea2835ef24104fe784b6ce0f508cc5637c0 to make it work for PropertyChanges and QDeclarativeMetaProperty as well. Task-number: QT-2783
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-2433-0/+620
QDeclarativeXXX.