Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵ | Warwick Allison | 2010-02-24 | 1 | -144/+0 |
| | | | | QDeclarativeXXX. | ||||
* | Fix copyright year. | Jason McDonald | 2010-02-16 | 1 | -1/+1 |
| | | | | Reviewed-by: Trust Me | ||||
* | Compile. | Warwick Allison | 2010-02-03 | 1 | -2/+2 |
| | |||||
* | The depot (4.6.2) does not have the Value patch yet, adjust version checks | Warwick Allison | 2010-02-02 | 1 | -2/+2 |
| | | | | accordingly. | ||||
* | Optimization: Skip attached property search where possible | Aaron Kennedy | 2010-01-28 | 1 | -0/+1 |
| | | | | QTBUG-6734 | ||||
* | Compile with Qt 4.6.1 | Aaron Kennedy | 2010-01-20 | 1 | -6/+10 |
| | |||||
* | Implement custom QML slot invokation logic | Aaron Kennedy | 2010-01-15 | 1 | -0/+17 |
| | | | | | | | | Previously QML was inefficiently forwarding the task of invoking Qt slots to QScript. QML does not implement the more advanced argument coercian of QScript and does not support method overloading. These two features are only needed to support legacy C++ classes (of which QML has none), and are not worth the perf cost to support. | ||||
* | Add basic support for property iteration. | Michael Brasser | 2010-01-13 | 1 | -0/+1 |
| | | | | Task-number: QTBUG-6033 | ||||
* | Update QML to adhere to latest QScriptDeclarativeClass | Aaron Kennedy | 2010-01-11 | 1 | -2/+2 |
| | |||||
* | Basic QML JS benchmark | Aaron Kennedy | 2010-01-08 | 1 | -1/+1 |
| | |||||
* | Correctly determine QScriptValue::isQObject() for QObjects using the | Michael Brasser | 2009-12-17 | 1 | -0/+1 |
| | | | | | | | | | | | QScriptDeclarativeClass. This allows us to pass QObjects to QML-defined functions which expect a QVariant (and will presumably help in other cases where we expect transparent QObject <-> QVariant conversion in the engine). Task-number: QTBUG-6178 Reviewed-by: Aaron Kennedy | ||||
* | Throw error when attempting to write to a non-existant property via script. | Michael Brasser | 2009-12-11 | 1 | -2/+7 |
| | |||||
* | fix includes | Oswald Buddenhagen | 2009-12-03 | 1 | -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 913dd563064e8047fe738fc9c79135adfb928977 | Warwick Allison | 2009-12-02 | 1 | -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 Allison | 2009-12-01 | 1 | -2/+2 |
| | | | | May help modularization (syncqt and configure are Qt-specific). | ||||
* | fix headers | Warwick Allison | 2009-10-29 | 1 | -16/+16 |
| | |||||
* | Add binding assignment warnings | Aaron Kennedy | 2009-10-16 | 1 | -1/+2 |
| | |||||
* | Correctly pass context to QmlObjectScriptClass | Aaron Kennedy | 2009-10-16 | 1 | -1/+2 |
| | |||||
* | Improve scope handling | Aaron Kennedy | 2009-10-06 | 1 | -1/+2 |
| | |||||
* | Fix attached properties/enums from ecmascript | Aaron Kennedy | 2009-10-05 | 1 | -1/+6 |
| | |||||
* | Update to new QScriptDeclarativeClass API | Aaron Kennedy | 2009-10-05 | 1 | -5/+4 |
| | |||||
* | Reenable types/enums and move scripts into an isolated scope | Aaron Kennedy | 2009-10-05 | 1 | -4/+2 |
| | |||||
* | Prevent writes to the global object | Aaron Kennedy | 2009-10-05 | 1 | -0/+8 |
| | | | | Also add toString() method to qobjects | ||||
* | Read/write property directly from QmlObjectScriptClass | Aaron Kennedy | 2009-10-05 | 1 | -0/+2 |
| | |||||
* | Improve script lookup caching | Aaron Kennedy | 2009-10-05 | 1 | -0/+98 |