summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativecompiler_p.h
Commit message (Collapse)AuthorAgeFilesLines
* 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.