Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | qdoc: Corrected some qdoc warnings. | Martin Smith | 2009-04-28 | 1 | -1/+1 |
| | |||||
* | Merge branch 'kinetic-declarativeui' of ../kinetic into ↵ | Aaron Kennedy | 2009-04-28 | 12 | -28/+174 |
|\ | | | | | | | | | | | | | kinetic-declarativeui-qfx Conflicts: examples/declarative/mouseregion/mouse.qml | ||||
| * | Use QObject declarative data to store attached properties. | Aaron Kennedy | 2009-04-28 | 12 | -28/+174 |
| | | | | | | | | | | An element's qmlAttachedProperties() function will now only ever get called once per object. | ||||
* | | Introduced Node::firstSourceLocation(), Node::lastSourceLocation(). | Roberto Raggi | 2009-04-27 | 10 | -108/+572 |
| | | |||||
* | | Merge branch 'kinetic-declarativeui' of ↵ | Roberto Raggi | 2009-04-27 | 2 | -2/+37 |
|\ \ | |/ | | | | | git://scm.dev.nokia.troll.no/qt/kinetic into kinetic-declarativeui-qfx | ||||
| * | Merge branch 'kinetic-declarativeui' of ↵ | Martin Jones | 2009-04-27 | 10 | -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 Jones | 2009-04-27 | 2 | -2/+37 |
| | | | | | | | | | | | | and mark the existing constructors internal. | ||||
* | | | Handle Connection objects. | Roberto Raggi | 2009-04-27 | 1 | -149/+10 |
| | | | |||||
* | | | Merge branch 'kinetic-declarativeui' of ↵ | Roberto Raggi | 2009-04-27 | 10 | -9/+74 |
|\ \ \ | | |/ | |/| | | | | git://scm.dev.nokia.troll.no/qt/kinetic into kinetic-declarativeui-qfx | ||||
| * | | Merge branch 'kinetic-declarativeui' of ↵ | Aaron Kennedy | 2009-04-27 | 1 | -2/+0 |
| |\ \ | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui | ||||
| | * | | Replace the use of the obsolete GfxEasing with QEasingCurve. | Michael Brasser | 2009-04-27 | 1 | -2/+0 |
| | | | | |||||
| * | | | Add a declarative data ptr to QObjectPrivate | Aaron Kennedy | 2009-04-27 | 8 | -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 Smith | 2009-04-24 | 1 | -2/+15 |
| |/ | |||||
* | | No more sugar :-) | Roberto Raggi | 2009-04-24 | 4 | -11/+21 |
| | | |||||
* | | Don't generate T_AUTOMATIC_SEMICOLON when recovering from a syntax error. | Roberto Raggi | 2009-04-24 | 2 | -8/+14 |
| | | |||||
* | | Don't generate T_PUBLIC tokens. At this stage we don't know if we wil keep ↵ | Roberto Raggi | 2009-04-24 | 1 | -1/+1 |
| | | | | | | | | the syntax `public property|signal name' to define properties. | ||||
* | | Use the DUI language. | Roberto Raggi | 2009-04-24 | 13 | -18/+57 |
| | | |||||
* | | Compile. | Roberto Raggi | 2009-04-24 | 1 | -3/+10 |
| | | |||||
* | | Removed the UiObjectInitialized from UiPublicMember. | Roberto Raggi | 2009-04-24 | 8 | -749/+755 |
| | | |||||
* | | experiment with treating State and Transition slightly special: they are ↵ | mae | 2009-04-24 | 1 | -0/+10 |
| | | | | | | | | automatically added to the states resp. transitions property. This allows us to make the [...,...,...,...] list syntax superfluous. | ||||
* | | small cleanups | mae | 2009-04-24 | 1 | -11/+0 |
| | | |||||
* | | map the ParentChange qml tag to a ParentChangeSet in dui. | mae | 2009-04-24 | 1 | -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 nodes | Roberto Raggi | 2009-04-24 | 3 | -62/+371 |
| | | |||||
* | | Annotate the expression nodes with the source locations. | Roberto Raggi | 2009-04-24 | 3 | -136/+539 |
| | | |||||
* | | Fixed AST::cast<> for UiImport and UiImportList nodes. | Roberto Raggi | 2009-04-24 | 1 | -3/+3 |
| | | |||||
* | | finalize support for namespacepath | mae | 2009-04-24 | 2 | -6/+11 |
| | | |||||
* | | Visit the import nodes. | Roberto Raggi | 2009-04-24 | 1 | -0/+1 |
| | | |||||
* | | Process the `import' statement. | Roberto Raggi | 2009-04-24 | 2 | -0/+16 |
| | | |||||
* | | load foo.js for a foo.dui if it exists. This lets us use the import keyword ↵ | mae | 2009-04-24 | 2 | -0/+14 |
| | | | | | | | | for real modules. Fix qmlconv, also get rid of the function() for signal properties. | ||||
* | | error output for scripts | mae | 2009-04-24 | 1 | -0/+14 |
| | | |||||
* | | Introduced AST::cast<T>(node). | Roberto Raggi | 2009-04-24 | 2 | -191/+375 |
| | | |||||
* | | Added the `import statements' to UiProgram. | Roberto Raggi | 2009-04-24 | 4 | -4/+16 |
| | | |||||
* | | optional property debug output when the environment variable DUI_DEBUG is ↵ | mae | 2009-04-24 | 1 | -4/+6 |
| | | | | | | | | defined. | ||||
* | | make Connection work. | mae | 2009-04-24 | 1 | -23/+96 |
| | | |||||
* | | parse function declarations in the object declaration and generate script ↵ | mae | 2009-04-24 | 2 | -2/+21 |
| | | | | | | | | properties. Makes the slider work. | ||||
* | | Generate ASTs for function and variable declarations. | Roberto Raggi | 2009-04-24 | 9 | -758/+808 |
| | | |||||
* | | fix shift/reduce and reduce/reduce conflicts, make parsing of function ↵ | mae | 2009-04-24 | 5 | -773/+808 |
| | | | | | | | | declarations within the object literals possible. This allows us to get entirely rid of the Script{} fake object. | ||||
* | | support comma for lists, better parser error output | mae | 2009-04-24 | 8 | -752/+770 |
| | | |||||
* | | make PropertyChangeSet work. This makes tutorial3 run again. | mae | 2009-04-24 | 1 | -53/+95 |
| | | |||||
* | | make arrays work, these visitors are ***** awesome | mae | 2009-04-24 | 1 | -1/+15 |
| | | |||||
* | | removed debug output | mae | 2009-04-24 | 1 | -5/+0 |
| | | |||||
* | | support public property definitions | mae | 2009-04-24 | 7 | -775/+840 |
| | | |||||
* | | code cleanup (helper functions rule) | mae | 2009-04-24 | 1 | -74/+73 |
| | | |||||
* | | Introduced `import' statements. | Roberto Raggi | 2009-04-24 | 10 | -769/+909 |
| | | |||||
* | | implement UiObjectBinding (UiObjectMember: UiQualifiedId T_COLON ↵ | mae | 2009-04-24 | 1 | -3/+65 |
| | | | | | | | | T_IDENTIFIER UiObjectInitializer) | ||||
* | | support both *.qml and *.whatever with autodetection. Some debug output, ↵ | mae | 2009-04-24 | 5 | -6/+59 |
| | | | | | | | | some fixes. Some stuff works now, biggest omission is UiObjectBinding to get the more complex examples working. | ||||
* | | Enable the "old" XML parser when the qgetenv("QML_XML") is not empty. | Roberto Raggi | 2009-04-24 | 1 | -13/+3 |
| | | |||||
* | | Added missing files. | Roberto Raggi | 2009-04-24 | 2 | -0/+382 |
| | | |||||
* | | Compile with gcc 4.x | Roberto Raggi | 2009-04-24 | 2 | -4/+4 |
| | | |||||
* | | Initial work on the qfx front-end. | Roberto Raggi | 2009-04-24 | 25 | -1/+11272 |
|/ |