summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml
Commit message (Collapse)AuthorAgeFilesLines
* Support multiline string literals when assigned directly to a QML propertyAaron Kennedy2009-05-016-788/+845
| | | | | | | | | | | | | | | | For example, this is now allowed: Text { text: "Hello World" } but this isn't as bindings are "real" javascript: Text { text: "Big " + "Hello World" }
* Report the syntax errors.Roberto Raggi2009-04-301-1/+38
|
* Removed a fiew compilation warnings on MSVCThierry Bastian2009-04-302-1/+3
|
* Accept "return" and reserved words as property namesAaron Kennedy2009-04-305-749/+879
|
* Fix crash in QmlDomDocument::load()Aaron Kennedy2009-04-302-3/+19
|
* Make custom parsers internal.Aaron Kennedy2009-04-309-153/+154
| | | | Custom parsers still have a way to go before they fully fit the QML 2.0 language.
* Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-04-307-698/+686
|\ | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/qml/parser/javascriptgrammar.cpp src/declarative/qml/parser/javascriptgrammar_p.h
| * Merge branch 'kinetic-declarativeui' of ↵Martin Smith2009-04-296-620/+703
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * Added first/lastSourceLocations to AST::UiObjectMember and improved the ↵Roberto Raggi2009-04-296-620/+703
| | | | | | | | | | | | | | | | | | generation of `fake' tokens. A `fake' token is a token generated while recovering from a syntax error.
| * | qdoc: Corrected some qdoc warnings.Martin Smith2009-04-291-11/+13
| |/
* | Prototype custom parsers for non-xml qml languageAaron Kennedy2009-04-3010-61/+378
| | | | | | | | 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.
* | Re-enable property syntax and add a "default" specifierAaron Kennedy2009-04-299-703/+768
|/
* Coding style refactor, changing 'if(' and 'for(' to 'if (' and 'for ('Leonardo Sobral Cunha2009-04-2827-763/+763
|
* qdoc: Corrected some qdoc warnings.Martin Smith2009-04-281-1/+1
|
* Merge branch 'kinetic-declarativeui' of ../kinetic into ↵Aaron Kennedy2009-04-2812-28/+174
|\ | | | | | | | | | | | | kinetic-declarativeui-qfx Conflicts: examples/declarative/mouseregion/mouse.qml
| * Use QObject declarative data to store attached properties.Aaron Kennedy2009-04-2812-28/+174
| | | | | | | | | | An element's qmlAttachedProperties() function will now only ever get called once per object.
* | Introduced Node::firstSourceLocation(), Node::lastSourceLocation().Roberto Raggi2009-04-2710-108/+572
| |
* | Merge branch 'kinetic-declarativeui' of ↵Roberto Raggi2009-04-272-2/+37
|\ \ | |/ | | | | git://scm.dev.nokia.troll.no/qt/kinetic into kinetic-declarativeui-qfx
| * Merge branch 'kinetic-declarativeui' of ↵Martin Jones2009-04-2710-9/+74
| |\ | | | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/fx/qfxitem.cpp
| * | Add some constructors without QmlContext parameter.Martin Jones2009-04-272-2/+37
| | | | | | | | | | | | and mark the existing constructors internal.
* | | Handle Connection objects.Roberto Raggi2009-04-271-149/+10
| | |
* | | Merge branch 'kinetic-declarativeui' of ↵Roberto Raggi2009-04-2710-9/+74
|\ \ \ | | |/ | |/| | | | git://scm.dev.nokia.troll.no/qt/kinetic into kinetic-declarativeui-qfx
| * | Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-04-271-2/+0
| |\ \ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * | Replace the use of the obsolete GfxEasing with QEasingCurve.Michael Brasser2009-04-271-2/+0
| | | |
| * | | Add a declarative data ptr to QObjectPrivateAaron Kennedy2009-04-278-5/+59
| |/ / | | | | | | | | | This data ptr does not increase the size of the QObject, as we take advantage of space only used during destruction. Currently this data is only used to store an object's QmlContext, but it will be used for more later.
| * | qdoc: Edited qdoc comments to remove some qdoc warnings.Martin Smith2009-04-241-2/+15
| |/
* | No more sugar :-)Roberto Raggi2009-04-244-11/+21
| |
* | Don't generate T_AUTOMATIC_SEMICOLON when recovering from a syntax error.Roberto Raggi2009-04-242-8/+14
| |
* | Don't generate T_PUBLIC tokens. At this stage we don't know if we wil keep ↵Roberto Raggi2009-04-241-1/+1
| | | | | | | | the syntax `public property|signal name' to define properties.
* | Use the DUI language.Roberto Raggi2009-04-2413-18/+57
| |
* | Compile.Roberto Raggi2009-04-241-3/+10
| |
* | Removed the UiObjectInitialized from UiPublicMember.Roberto Raggi2009-04-248-749/+755
| |
* | experiment with treating State and Transition slightly special: they are ↵mae2009-04-241-0/+10
| | | | | | | | automatically added to the states resp. transitions property. This allows us to make the [...,...,...,...] list syntax superfluous.
* | small cleanupsmae2009-04-241-11/+0
| |
* | map the ParentChange qml tag to a ParentChangeSet in dui.mae2009-04-241-105/+172
| | | | | | | | | | It might be a consideration to use the former moveToParent property, maybe it was a bit hacky, but less to type.
* | Source locations for the statement nodesRoberto Raggi2009-04-243-62/+371
| |
* | Annotate the expression nodes with the source locations.Roberto Raggi2009-04-243-136/+539
| |
* | Fixed AST::cast<> for UiImport and UiImportList nodes.Roberto Raggi2009-04-241-3/+3
| |
* | finalize support for namespacepathmae2009-04-242-6/+11
| |
* | Visit the import nodes.Roberto Raggi2009-04-241-0/+1
| |
* | Process the `import' statement.Roberto Raggi2009-04-242-0/+16
| |
* | load foo.js for a foo.dui if it exists. This lets us use the import keyword ↵mae2009-04-242-0/+14
| | | | | | | | for real modules. Fix qmlconv, also get rid of the function() for signal properties.
* | error output for scriptsmae2009-04-241-0/+14
| |
* | Introduced AST::cast<T>(node).Roberto Raggi2009-04-242-191/+375
| |
* | Added the `import statements' to UiProgram.Roberto Raggi2009-04-244-4/+16
| |
* | optional property debug output when the environment variable DUI_DEBUG is ↵mae2009-04-241-4/+6
| | | | | | | | defined.
* | make Connection work.mae2009-04-241-23/+96
| |
* | parse function declarations in the object declaration and generate script ↵mae2009-04-242-2/+21
| | | | | | | | properties. Makes the slider work.
* | Generate ASTs for function and variable declarations.Roberto Raggi2009-04-249-758/+808
| |
* | fix shift/reduce and reduce/reduce conflicts, make parsing of function ↵mae2009-04-245-773/+808
| | | | | | | | declarations within the object literals possible. This allows us to get entirely rid of the Script{} fake object.