summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlbinding.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Output error when a binding returns undefinedAaron Kennedy2009-11-111-1/+12
|
* Return qmlInfo(obj) << syntax.Warwick Allison2009-11-101-1/+1
| | | | Fixes QTBUG-5480
* QmlContext testsAaron Kennedy2009-11-021-0/+8
|
* Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-10-301-16/+16
|\ | | | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/debugger/qmldebug.cpp src/declarative/fx/qmlgraphicsimagebase_p.h src/declarative/util/qmlanimation.h src/declarative/util/qmlstate.h src/declarative/util/qmltimer.cpp
| * Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-10-301-3/+3
| |\ | | | | | | | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/qml/qmlcomponentjs.cpp src/declarative/qml/qmlcomponentjs_p.h src/declarative/qml/qmlcomponentjs_p_p.h
| * | fix headersWarwick Allison2009-10-291-16/+16
| | |
* | | Make private headers _pAaron Kennedy2009-10-301-1/+1
| | |
* | | Rename QFx classes to QmlGraphicsAaron Kennedy2009-10-301-1/+1
| |/ |/|
* | Store filename as a QUrl rather than convert to QString.Martin Jones2009-10-291-3/+3
|/ | | | Saves about 700KB heap in samegame.
* Do not display transient binding errorsAaron Kennedy2009-10-281-7/+55
| | | | | | | | | | During QML startup, it is common to have "errors" in bindings as the apps state stabilizes. These are not real errors, but just a consequence of implementing a declarative UI in an imperative world. Now during startup, the display of errors is delayed until the startup completes, and then only bindings that are still in an error state are displayed. QT-2373
* Add a QmlExpression::error() methodAaron Kennedy2009-10-281-3/+5
| | | | | QmlExpression should not print errors itself. This is the responsibility of the caller.
* Fix test failures.Aaron Kennedy2009-10-221-2/+4
| | | | Also add a test for script errors within signal handlers.
* Add binding assignment warningsAaron Kennedy2009-10-161-1/+12
|
* More i18nWarwick Allison2009-10-131-2/+1
|
* Merge branch 'kinetic-declarativeui' of ↵Michael Brasser2009-10-111-2/+2
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Output file/line for script errorsAaron Kennedy2009-10-091-2/+2
| |
* | Improve Behavior reliability.Michael Brasser2009-10-111-10/+10
|/
* Make qmlecmascript:selfDeletingBinding passAaron Kennedy2009-10-081-29/+30
| | | | | | | Expressions and bindings must not reference data following their evalutation incase their object has been deleted. To solve this, the needed data is separated into a reference counted QmlExpressionData and QmlBindingData object.
* Use a bitmask to track bound propertiesAaron Kennedy2009-09-231-9/+20
|
* Support URL resolution from within script blocksAaron Kennedy2009-09-101-4/+0
|
* Make QVector3D a first-class builtin type within QMLRhys Weatherley2009-08-211-0/+6
| | | | Reviewed-by: Martin Jones
* Move the binding's "mePtr" into QmlAbstractBindingAaron Kennedy2009-08-111-6/+11
| | | | Now optimizations get deletion protection too.
* Abstract expression and binding APIsAaron Kennedy2009-08-101-21/+61
| | | | | | | | | By splitting the interface through which the system interacts with bindings away from a specific implementation, we can introduce highly specialized implementations for specific optimizations. This commit also includes a sample optimization for object properties being assigned directly from a local id.
* Make custom string converters work for builtin variant metatypesRhys Weatherley2009-07-241-2/+1
| | | | | | With QVector3D now being a builtin variant type, the string converter code broke. This change looks for string converters for all kinds of types, just as in the rest of the QML code.
* Fix State when handling.Michael Brasser2009-07-231-1/+1
|
* Remove unnecessary methods from QmlBindingAaron Kennedy2009-07-201-7/+0
| | | | QmlBinding is no longer instantiable from QML, so this stuff isn't needed.
* Rework expression stuff to use a more efficient notify handlerAaron Kennedy2009-07-201-2/+4
|
* Rename QmlBindableValue to QmlBindingAaron Kennedy2009-07-201-0/+186