summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qml.pri
Commit message (Collapse)AuthorAgeFilesLines
* Remove dead codeAaron Kennedy2009-11-161-3/+0
|
* CleanupAaron Kennedy2009-10-301-0/+1
|
* Merge QmlComponentJS into QmlComponentAlan Alpert2009-10-291-3/+0
| | | | | | | createComponent() and Component{} are now the same, and so Component{}s can now be passed around for use in script. Also this commit fixes the minor bug QT-2386
* Remove QML SQL classesAaron Kennedy2009-10-281-0/+2
| | | | | Sadly, these are not being maintained. There's still SQL offline storage for all your SQL needs.
* Ensure cleanup happens before the destruction of QScriptEngineAaron Kennedy2009-10-261-0/+2
| | | | This was causing crashes on windows.
* Support assigning scripts to QML propertiesAaron Kennedy2009-10-221-0/+2
|
* Support read-only iteration of list propertiesAaron Kennedy2009-10-141-2/+4
| | | | Eventually this should be extended to support modifying list properties.
* Improve Behavior reliability.Michael Brasser2009-10-111-0/+2
|
* Make Script an instrinsic typeAaron Kennedy2009-10-071-0/+1
| | | | | This allows us to delay the QML load until external script files have been loaded from the network, and to correctly scope these scripts.
* Reenable types/enums and move scripts into an isolated scopeAaron Kennedy2009-10-051-2/+8
|
* Prevent writes to the global objectAaron Kennedy2009-10-051-2/+4
| | | | Also add toString() method to qobjects
* Improve script lookup cachingAaron Kennedy2009-10-051-2/+8
|
* Create a property cache for synthesized metaobjectsAaron Kennedy2009-10-051-2/+4
|
* Make more qmlecmascript tests passAaron Kennedy2009-09-231-0/+1
| | | | | Test cases constantsOverrideBindings, outerBindingOverridesInnerBinding and aliasPropertyAndBinding now pass.
* Merge branch 'kinetic-declarativeui' of ↵Bea Lam2009-09-231-1/+3
|\ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/qml/qml.pri
| * Basic first-working SQL database interface.Warwick Allison2009-09-161-0/+2
| | | | | | | | A simple Qt-based implementation of HTML5 SQL local storage databases.
* | Add some of the functionality from the old debugger (e.g. dynamic updating ↵Bea Lam2009-09-231-2/+4
|/ | | | of property values, watch table, colouring of tree widget items).
* Move qmetaobjectbuilder into declarative/qml directoryMartin Jones2009-09-071-2/+4
|
* Implement (parts of) XMLHttpRequestAaron Kennedy2009-08-271-2/+4
| | | | | This is the first step to allowing QML to interact with REST style APIs in the same way as a webbrowser can.
* Cleanup.Michael Brasser2009-08-131-1/+0
|
* Abstract expression and binding APIsAaron Kennedy2009-08-101-2/+4
| | | | | | | | | 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 privateAaron Kennedy2009-07-271-1/+1
|
* Rename QmlBindableComponent to QmlComponentJS, as per Aaron's request.Alan Alpert2009-07-241-3/+3
|
* Move import access functions to QmlEnginePrivate.Warwick Allison2009-07-231-0/+1
|
* Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-07-231-0/+3
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Move the Script interface of QmlComponent to QmlBindableComponentAlan Alpert2009-07-211-0/+3
| |
* | Add prototype value type supportAaron Kennedy2009-07-231-2/+4
|/
* Rename QmlBindableValue to QmlBindingAaron Kennedy2009-07-201-3/+3
|
* Merge branch 'kinetic-declarativeui' of ↵Michael Brasser2009-07-161-0/+2
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Move the QML rewriting stuff into a central locationAaron Kennedy2009-07-161-0/+2
| |
* | Merge branch 'kinetic-declarativeui' of ↵Michael Brasser2009-07-151-2/+1
|\ \ | |/ | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Remove pointless QmlCompiledComponent classAaron Kennedy2009-07-151-2/+0
| |
| * Rework compiler to a two phase analyse/generate approachAaron Kennedy2009-07-151-0/+1
| |
* | Merge branch 'kinetic-declarativeui' of ↵Michael Brasser2009-07-151-0/+2
|\ \ | |/ | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Start moving debugger out of processAaron Kennedy2009-07-131-0/+2
| |
* | Check if scripttools is enabled.Michael Brasser2009-07-131-1/+1
|/
* Move QmlExpression into its own fileAaron Kennedy2009-07-031-0/+2
|
* Improve bindings startup performanceAaron Kennedy2009-06-101-1/+2
|
* QmlBasicScript should work on the actual JS AST treeAaron Kennedy2009-05-281-2/+4
|
* roberto: Added support for CSS like numeric literals e.g. 10pAaron Kennedy2009-05-261-7/+6
|
* Shift QmlBindableValue data into d-ptrAaron Kennedy2009-05-061-0/+1
|
* Remove QML XML supportAaron Kennedy2009-05-051-2/+0
|
* Improve error handling consistencyAaron Kennedy2009-05-051-2/+4
|
* Make custom parsers internal.Aaron Kennedy2009-04-301-1/+1
| | | | Custom parsers still have a way to go before they fully fit the QML 2.0 language.
* Prototype custom parsers for non-xml qml languageAaron Kennedy2009-04-301-0/+1
| | | | ListModel has been ported (under the name ListModel2) to demonstrate. ListModel2 behaves the same as ListModel, except that list "objects" must be called "ListElement" instead of a freeform name.
* Merge branch 'kinetic-declarativeui' of ../kinetic into ↵Aaron Kennedy2009-04-281-1/+2
|\ | | | | | | | | | | | | kinetic-declarativeui-qfx Conflicts: examples/declarative/mouseregion/mouse.qml
| * Use QObject declarative data to store attached properties.Aaron Kennedy2009-04-281-1/+2
| | | | | | | | | | An element's qmlAttachedProperties() function will now only ever get called once per object.
* | Initial work on the qfx front-end.Roberto Raggi2009-04-241-0/+7
|/
* Initial import of kinetic-dui branch from the old kineticMichael Brasser2009-04-221-0/+63