summaryrefslogtreecommitdiffstats
path: root/src/declarative/util/qmltransitionmanager.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-282/+0
| | | | QDeclarativeXXX.
* Make QmlBinding (and friends) privateAaron Kennedy2010-02-231-1/+1
| | | | | QmlBinding exposes way too many implementation details to be confident about making it public right now.
* Fix copyright year.Jason McDonald2010-02-161-1/+1
| | | | Reviewed-by: Trust Me
* Pass symbols::prefix (Action -> QmlAction)Warwick Allison2010-02-051-12/+12
|
* Add more detailed debuggingAaron Kennedy2010-01-201-1/+2
|
* More statechange debuggingAaron Kennedy2010-01-141-0/+12
|
* Use destroy() to destroy bindings.Michael Brasser2009-12-171-1/+1
|
* fix includesOswald Buddenhagen2009-12-031-2/+4
| | | | | | | | | | | | - include headers from own directory with "" - include headers from own project without private/ - sort includes from most specific to most generic - make headers self-contained - some whitespace unification no attempt was made at making the qt includes consistent regarding the use of module names and forwarding headers. no attempt was made at sorting includes.
* Undo most of 913dd563064e8047fe738fc9c79135adfb928977Warwick Allison2009-12-021-2/+2
| | | | It seems we're going to have to so a syncqt/configure in Qt modules.
* Remove include styles that rely on configure.Warwick Allison2009-12-011-2/+2
| | | | May help modularization (syncqt and configure are Qt-specific).
* Prevent state changes within PropertyChanges.Michael Brasser2009-11-241-4/+1
| | | | Task-number: QT-2358
* Make sure we restore the base state correctly after the base state changes.Michael Brasser2009-11-191-2/+4
| | | | | This worked correctly as long as there was a transition between the states. Now it works correctly with no transition as well.
* Distinguish between reversing and rewinding a state change.Michael Brasser2009-11-171-2/+2
| | | | Task-number: QTBUG-5769
* Do not use "QtDeclarative/XXX" style includes in declarative module code,Warwick Allison2009-11-121-1/+1
| | | | as it breaks reinstalling the module against existing Qt.
* Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-10-301-16/+16
|\ | | | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/debugger/qmldebug.cpp src/declarative/fx/qmlgraphicsimagebase_p.h src/declarative/util/qmlanimation.h src/declarative/util/qmlstate.h src/declarative/util/qmltimer.cpp
| * fix headersWarwick Allison2009-10-291-16/+16
| |
* | Make private headers _pAaron Kennedy2009-10-301-2/+2
|/
* Improve Behavior reliability.Michael Brasser2009-10-111-6/+5
|
* Abstract expression and binding APIsAaron Kennedy2009-08-101-2/+0
| | | | | | | | | By splitting the interface through which the system interacts with bindings away from a specific implementation, we can introduce highly specialized implementations for specific optimizations. This commit also includes a sample optimization for object properties being assigned directly from a local id.
* Remove debug.Michael Brasser2009-08-061-1/+1
|
* Don't leak bindings.Michael Brasser2009-08-061-2/+14
| | | | Make sure we clean up bindings for a cancelled state change.
* Get anchor change transitions working.Michael Brasser2009-07-231-6/+40
|
* Make sure action events are reversed when not part of a transition.Michael Brasser2009-07-231-1/+4
|
* Rename QmlBindableValue to QmlBindingAaron Kennedy2009-07-201-1/+1
|
* Minor cleanup.Michael Brasser2009-07-171-6/+3
|
* Remove QmlSetPropertyAaron Kennedy2009-07-011-0/+225
This involves the introduction of separation between states and transition application. This was necessary to allow layouts to continue to use transitions.