summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml
Commit message (Collapse)AuthorAgeFilesLines
* Remove magic "properties" and "signals" property supportAaron Kennedy2009-05-054-249/+3
| | | | | | | New properties and signals should be defined using the QML syntax: [default] property <type> <name> [: <expr>] signal <name>
* Remove XML custom parser supportAaron Kennedy2009-05-055-65/+7
|
* Remove QML XML supportAaron Kennedy2009-05-056-513/+0
|
* Fix QmlComponent::isError() after QmlComponent::create()Aaron Kennedy2009-05-051-2/+2
|
* Mark DOM API as internal for nowAaron Kennedy2009-05-051-0/+9
|
* QmlError docAaron Kennedy2009-05-052-0/+51
|
* Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-05-057-656/+614
|\ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/qml/qmldom.cpp
| * Store the location for the `default' token.Roberto Raggi2009-05-043-5/+15
| |
| * Fixed QmlDomValueValueSource::object() to actually return the newly created ↵Erik Verbruggen2009-05-041-1/+1
| | | | | | | | object.
| * Merge branch 'kinetic-declarativeui' of ↵Kai Koehne2009-05-042-12/+12
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | * Fixed initialization for QmlDomValueValueSource.Erik Verbruggen2009-05-041-1/+2
| | |
| | * Merge branch 'kinetic-declarativeui' of ↵Erik Verbruggen2009-05-041-10/+8
| | |\ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | | * Merge branch 'kinetic-declarativeui' of ↵Martin Smith2009-05-041-8/+2
| | | |\ | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| | | * | qdoc: Corrected some qdoc warnings.Martin Smith2009-05-041-10/+8
| | | | |
| | * | | Fixed initialization for QmlDomValueBinding.Erik Verbruggen2009-05-041-1/+2
| | | |/ | | |/|
| * | | Fix example in documentationKai Koehne2009-05-041-2/+2
| |/ / | | | | | | | | | src has been replaced by source in QFxImage
| * | Fix QmlDom breakageKai Koehne2009-05-041-8/+2
| |/ | | | | | | | | | | | | | | | | Two actual copies of QmlScriptParser & the parse tree were instantiated in QmlDocument::load, with the result that the additions that the compiler stored in the one parse tree were not seen by the Dom classes, using the other one. Reviewed-by: erikv
| * Fixed 5 shift/reduce conflicts introduced by T_SIGNAL and T_PROPERTY.Roberto Raggi2009-05-044-628/+582
| |
* | Improve error handling consistencyAaron Kennedy2009-05-0519-127/+415
|/
* Correctly set the JsIdentifier svalAaron Kennedy2009-05-012-4/+14
|
* Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-05-012-98/+140
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * docWarwick Allison2009-05-012-98/+140
| |
* | Add QML signal declaration syntaxAaron Kennedy2009-05-018-824/+851
|/ | | | | | | | Syntax is signal <signalName> Currently signal parameters aren't supported
* Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-05-011-0/+1
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Doc work.Michael Brasser2009-05-011-0/+1
| |
* | Tweak QML property syntaxAaron Kennedy2009-05-018-940/+1099
|/ | | | | | | | The syntax is now [default] property <type> <name> [ : <expression> ] where name is one of "int", "bool", "double", "real", "string", "color", "date", "var" or "variant"
* 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
| | | |