summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativecompiler_p.h
Commit message (Collapse)AuthorAgeFilesLines
* Change copyrights from Nokia to DigiaIikka Eklund2012-09-291-24/+24
| | | | | | | | Change copyrights and license headers from Nokia to Digia Change-Id: I280c0a575987d1770e354b4948f1d4d767d711ea Reviewed-by: Simo Fält <simo.falt@digia.com> Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com>
* Update contact information in license headers.Sergio Ahumada2012-08-011-2/+2
| | | | | | | | | | | | | - Replace Nokia contact email address with Qt Project website. - Remove "All rights reserved" line from license headers. As in the past, to avoid rewriting various autotests that contain line-number information, an extra blank line has been inserted at the end of the license text to ensure that this commit does not change the total number of lines in the license header. Change-Id: Ie7ba62011752fcb149b99b26317c54f2a0cfa931 Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com>
* Update year in Nokia copyright messages.Jason McDonald2012-01-111-1/+1
| | | | | | | | | Simple search and replace. This commit doesn't touch 3rd-party files, nor translations (where the change is not so simple and will be handled in a separate commit). Change-Id: I4e48513b8078a44a8cd272326685b25338890148 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Update licenseheader text in source files for qt4.8Jyri Tahtela2011-05-131-17/+17
| | | | | | | Updated version of LGPL and FDL licenseheaders. Apply release phase licenseheaders for all source files. Reviewed-by: Trust Me
* Implement property versioning inside the declarative engineAaron Kennedy2011-01-271-1/+6
| | | | Task-number: QTBUG-13451
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into qtquick11Martin Jones2011-01-191-1/+1
|\
| * Update copyright year to 2011.Jason McDonald2011-01-101-1/+1
| | | | | | | | Reviewed-by: Trust Me
* | Rewrite/cache bindings created by PropertyChanges.Michael Brasser2010-12-171-0/+1
|/ | | | | | | This provides a significant optimization for initial evaluation of bindings specified in a PropertyChanges. Reviewed-by: Aaron Kennedy
* Improve consistency in handling of aliases, bindings and value typesAaron Kennedy2010-11-291-0/+1
| | | | Task-number: QTBUG-13719
* Don't leak QML compiled data objectsAaron Kennedy2010-11-191-3/+1
| | | | Task-number: QTBUG-14761
* Optimization: Don't generate intermediate QDeclarativeComponent'sAaron Kennedy2010-10-141-2/+3
|
* Simplify type management codeAaron Kennedy2010-08-271-3/+3
|
* Don't export declarative private classesMartin Jones2010-07-011-1/+1
| | | | | Those required by creator are still exported. Everything else is no longer exported.
* Test ListElement type via type system, not string comparison.Warwick Allison2010-06-251-0/+1
| | | | | Task-number: QTBUG-11222 Reviewed-by: Aaron Kennedy
* Cleanup: Move import stuff out of the QDeclarativeEngineAaron Kennedy2010-04-291-1/+2
|
* Remove unused variableAaron Kennedy2010-04-281-1/+0
|
* Remove dead codeAaron Kennedy2010-04-221-1/+0
|
* Remove Script {} supportAaron Kennedy2010-04-191-1/+0
|
* Correctly support translation in QDeclarativeCompilerAaron Kennedy2010-04-151-2/+2
| | | | Reviewed-by: Friedemann Kleint
* Add Component.onDestruction attached propertyAaron Kennedy2010-04-151-2/+0
| | | | | | | | | This property complements Component.onCompleted. It is emitted before the destruction actually begins (for the most part) so the objects are still alive and accessible. The QtObject.onDestroyed signal is now blocked as it never really worked properly anyway.
* CleanupAaron Kennedy2010-04-091-0/+2
|
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-8/+8
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Improve QML compiler statisticsAaron Kennedy2010-03-291-4/+3
|
* Allow enum constants as list element properties.Warwick Allison2010-03-171-0/+2
| | | | Task-number: QTBUG-5974
* Optimization: Reduce unnecessary QObject allocationsAaron Kennedy2010-03-171-1/+2
|
* Run signal expressions on attached property objects in correct scopeAaron Kennedy2010-03-041-0/+1
| | | | QTBUG-8677
* Move JS global scope to top of the QML scope chainAaron Kennedy2010-03-031-1/+1
| | | | QT-2787
* Make "on" syntax mandatory for value sources and interceptorsAaron Kennedy2010-03-021-0/+5
| | | | | | | | | | | | | | | | | | | | | Where you would have written x: NumberAnimation {} y: Behavior {} you now must write NumberAnimation on x {} Behavior on y {} This change also makes the parser more strict with respect to multiple assignments to a single property - they're no longer allowed. For example this x: 10 x: 11 is now an error.
* Automatically connect to signals "onFooChanged" if property is "foo".Bea Lam2010-02-251-1/+2
| | | | | | | 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-241-0/+337
QDeclarativeXXX.