summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativeobjectscriptclass_p.h
Commit message (Collapse)AuthorAgeFilesLines
* Allow overloaded methods, and methods with default params, to be called in QMLAaron Kennedy2010-10-151-0/+9
| | | | Task-number: QTBUG-11604
* Handle enums in method arguments in the same way as QtScriptAaron Kennedy2010-06-251-0/+2
| | | | | | | QML will now invoke methods with enums as arguments, in the same fashion as QtScript. QTBUG-11313
* Remove QT_VERSION checks in QMLAaron Kennedy2010-04-091-4/+0
| | | | We only support Qt 4.7 now.
* Cleanup handling of errors in bindings and scriptsAaron Kennedy2010-04-081-1/+1
| | | | | | | | | | | | | QML used to silently ignore a log of errors - such as a failed assignment to a QObject property. These errors are now all reported as exceptions in JavaScript. Other questionable activities, like assigning a JavaScript array to a "property var" property which appeared to work, thanks to QtScript's transparent conversion of arrays to a QVariantList, are now blocked entirely. QTBUG-9152 QTBUG-9382 QTBUG-9341 QTBUG-6886
* Cleanup (remove QDeclarativeScriptClass)Aaron Kennedy2010-04-071-4/+4
| | | | | QDeclarativeScriptClass only existed to make compiling against 4.6 and 4.7 easier.
* Update #include of private headers in QtDeclarativeThiago Macieira2010-04-021-2/+2
| | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason.
* Optimization: Reduce unnecessary QObject allocationsAaron Kennedy2010-03-171-3/+3
|
* Integrate QML's object ownership with the JS collectorAaron Kennedy2010-03-091-0/+3
| | | | | | | QML now behaves in a way similar to QtScript when it comes to QObject ownership. QT-2803
* Add support for QtScript connect/disconnect syntax in QMLAaron Kennedy2010-03-051-0/+12
| | | | | | | This support was accidentally removed as a consequence of 4a665ff5da05860f5eb46e3982ef3d8163a6cf59. QTBUG-8001
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+144
QDeclarativeXXX.