Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Don't export declarative private classes | Martin Jones | 2010-07-01 | 1 | -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 Allison | 2010-06-25 | 1 | -0/+1 |
| | | | | | Task-number: QTBUG-11222 Reviewed-by: Aaron Kennedy | ||||
* | Cleanup: Move import stuff out of the QDeclarativeEngine | Aaron Kennedy | 2010-04-29 | 1 | -1/+2 |
| | |||||
* | Remove unused variable | Aaron Kennedy | 2010-04-28 | 1 | -1/+0 |
| | |||||
* | Remove dead code | Aaron Kennedy | 2010-04-22 | 1 | -1/+0 |
| | |||||
* | Remove Script {} support | Aaron Kennedy | 2010-04-19 | 1 | -1/+0 |
| | |||||
* | Correctly support translation in QDeclarativeCompiler | Aaron Kennedy | 2010-04-15 | 1 | -2/+2 |
| | | | | Reviewed-by: Friedemann Kleint | ||||
* | Add Component.onDestruction attached property | Aaron Kennedy | 2010-04-15 | 1 | -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. | ||||
* | Cleanup | Aaron Kennedy | 2010-04-09 | 1 | -0/+2 |
| | |||||
* | Update #include of private headers in QtDeclarative | Thiago Macieira | 2010-04-02 | 1 | -8/+8 |
| | | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason. | ||||
* | Improve QML compiler statistics | Aaron Kennedy | 2010-03-29 | 1 | -4/+3 |
| | |||||
* | Allow enum constants as list element properties. | Warwick Allison | 2010-03-17 | 1 | -0/+2 |
| | | | | Task-number: QTBUG-5974 | ||||
* | Optimization: Reduce unnecessary QObject allocations | Aaron Kennedy | 2010-03-17 | 1 | -1/+2 |
| | |||||
* | Run signal expressions on attached property objects in correct scope | Aaron Kennedy | 2010-03-04 | 1 | -0/+1 |
| | | | | QTBUG-8677 | ||||
* | Move JS global scope to top of the QML scope chain | Aaron Kennedy | 2010-03-03 | 1 | -1/+1 |
| | | | | QT-2787 | ||||
* | Make "on" syntax mandatory for value sources and interceptors | Aaron Kennedy | 2010-03-02 | 1 | -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 Lam | 2010-02-25 | 1 | -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 Allison | 2010-02-24 | 1 | -0/+337 |
QDeclarativeXXX. |