Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Change to commercial license headers in preparation for release. | Jason McDonald | 2010-09-07 | 17 | -234/+234 |
| | | | | Reviewed-by: Trust Me | ||||
* | Copied Qt QML 4.7 branch to release. | Toby Tomkins | 2010-07-27 | 1 | -5/+5 |
| | | | | Reviewed-by: MArtin Jones | ||||
* | Allow to build Qt in static with mingw | Thierry Bastian | 2010-06-07 | 1 | -1/+1 |
| | | | | | | | | | | Some functions were marked with Q_DECL_IMPORT where they should just be Q_CORE_EXPORT. The reason is that this macro is expanded to nothing in case of static builds whereas Q_DECL_IMPORT isn't (it is a dllimport). That leads the linker to try to import it and it shouldn't. Task-number: QTBUG-10791 Reviewed-by: gabi | ||||
* | Fix parsing of regular expression literals. | Roberto Raggi | 2010-04-21 | 1 | -29/+79 |
| | | | | | | | Recognize regular expression classes and escape sequences. Task-number: QTBUG-8108 Reviewed-by: Olivier Goffart | ||||
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integration | Qt Continuous Integration System | 2010-04-18 | 3 | -5/+45 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: (29 commits) Recognize identifiers containing unicode escape sequences. Fix README Fix doc: QML_DECLARE_TYPE is no longer necessary Fix doc: remote contents requires qmldir Fixed parsing of inner labelled statements. Doc Remove unsupported plugin version flags in .pro files of declarative examples Documentation typo. More QML doc consistency. Ensure existing image is gone before next photo selection. Don't use zoomfactor. Doc: in QML use "real" and "enumeration", not "qreal" and "enum" Doc: Put "default" property label on same line as property name Wait for debug clients asynchronously instead of blocking creation of Test not reliable ResizeMode support for QGraphicsWidgets created with QDeclarativeView More class documentation fixes for declarative. Simplify QML import plugin deployment lines Add QML imports to s60installs.pro Cleanup photoviewer demo. ... | ||||
| * | Recognize identifiers containing unicode escape sequences. | Roberto Raggi | 2010-04-16 | 1 | -1/+41 |
| | | | | | | | | | | Task-number: QTBUG-8108 Reviewed-by: Olivier Goffart | ||||
| * | Fixed parsing of inner labelled statements. | Roberto Raggi | 2010-04-16 | 2 | -4/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The JS grammar is ambigious and the following statement can be parsed as an object-literal followed by an inserted semicolon or as two labelled statements. outer: { inner: {} } In the old days we used to resolve the conflict by reducing the statement to an expression statement but this was wrong so now we prefer the labelled statement. As nice side effect, we pass two more tests in tests/auto/declarative/parserstress. Task-number: QTBUG-8108 | ||||
* | | Further RVCT4 fixes for Symbian | Iain | 2010-04-16 | 1 | -1/+1 |
|/ | | | | | | | More corrections to declarations to ensure symbol visibility is correct Task-number: QTBUG-9998 Reviewed-by: TrustMe | ||||
* | Update #include of private headers in QtDeclarative | Thiago Macieira | 2010-04-02 | 15 | -40/+40 |
| | | | | | Always use private/. The WinSCW compiler doesn't search the current directory, for whatever reason. | ||||
* | Fixed: Declared properties cannot be assigned in declaration | Roberto Raggi | 2010-03-31 | 7 | -1034/+1130 |
| | | | | Task-number: QTBUG-7860 | ||||
* | Removed unneeded code. | Roberto Raggi | 2010-03-29 | 2 | -10/+0 |
| | |||||
* | Recompute the source location of regexp literals. | Roberto Raggi | 2010-03-26 | 2 | -2/+14 |
| | | | | Task-number: QTBUG-9367 | ||||
* | Manual merge. | Warwick Allison | 2010-03-22 | 2 | -2/+6 |
| | |||||
* | Compile with user defined Qt namespace | Roberto Raggi | 2010-03-15 | 1 | -2/+4 |
| | | | | Protect the forward declaration of qstrtod with a QT_BEGIN/END namespace | ||||
* | Fix grammar stringifying "on" as "readonly" | Aaron Kennedy | 2010-03-04 | 4 | -5/+5 |
| | | | | QTBUG-8676 | ||||
* | Don't look for contextual keywords when defining properties. | Roberto Raggi | 2010-02-25 | 3 | -632/+658 |
| | |||||
* | Introduced alternative syntax for defining QML bindings. | Roberto Raggi | 2010-02-25 | 7 | -1000/+1072 |
| | | | | | | | | | | | | | | | Now it is possible to define bindings using the `on' context keyword. For example, you can write Behavior on opacity { NumberAnimation { duration: 500 } } instead of opacity: Behavior { NumberAnimation { duration: 500 } } | ||||
* | Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵ | Warwick Allison | 2010-02-24 | 18 | -386/+386 |
| | | | | QDeclarativeXXX. | ||||
* | Fix copyright year. | Jason McDonald | 2010-02-16 | 14 | -14/+14 |
| | | | | Reviewed-by: Trust Me | ||||
* | Changed define name to reflect change in Creator. | Erik Verbruggen | 2010-02-08 | 1 | -2/+2 |
| | |||||
* | re-enable QT_USE_FAST_CONCATENATION | Erik Verbruggen | 2010-02-08 | 1 | -1/+1 |
| | | | | includes workaround for breakage with old g++ | ||||
* | Fixed possible array index-out-of-bounds crash in error reporting. | Erik Verbruggen | 2010-01-21 | 2 | -2/+12 |
| | |||||
* | Added utility method to parse JavaScript programs. | Erik Verbruggen | 2010-01-18 | 7 | -1110/+1060 |
| | | | | Reviewed-by: Christian Kamm | ||||
* | Added a utility method to get a casted AST root node. | Erik Verbruggen | 2010-01-18 | 4 | -0/+29 |
| | | | | Reviewed-by: Christian Kamm | ||||
* | Fixed the parser to start with the correct rule when requested to parse JS ↵ | Erik Verbruggen | 2010-01-18 | 3 | -634/+672 |
| | | | | Source Elements. | ||||
* | Fixed missing export in generated parser. | Erik Verbruggen | 2010-01-15 | 2 | -2/+2 |
| | |||||
* | Re-generated grammar and fixed license headers. | Erik Verbruggen | 2010-01-15 | 4 | -1098/+1092 |
| | |||||
* | Fixed license headers. | Erik Verbruggen | 2010-01-15 | 1 | -66/+44 |
| | |||||
* | Added utility method to parse single/stand-alone JS source elements. | Erik Verbruggen | 2010-01-15 | 1 | -1/+12 |
| | |||||
* | oops, fix the compilation | Thierry Bastian | 2009-12-04 | 1 | -1/+1 |
| | |||||
* | small cleanup | Thierry Bastian | 2009-12-04 | 3 | -18/+18 |
| | | | | | | make use of QVariant::userType over Qvariant::type make use of char for 1-string character QCoreApplication::translate is static | ||||
* | fix includes | Oswald Buddenhagen | 2009-12-03 | 14 | -41/+46 |
| | | | | | | | | | | | | - include headers from own directory with "" - include headers from own project without private/ - sort includes from most specific to most generic - make headers self-contained - some whitespace unification no attempt was made at making the qt includes consistent regarding the use of module names and forwarding headers. no attempt was made at sorting includes. | ||||
* | clean up project files | Oswald Buddenhagen | 2009-12-03 | 1 | -19/+18 |
| | |||||
* | Added conditional macro which will make the copy in QtCreator able to export ↵ | Erik Verbruggen | 2009-12-03 | 8 | -110/+120 |
| | | | | the classes across shared libraries/plug-ins. | ||||
* | Undo most of 913dd563064e8047fe738fc9c79135adfb928977 | Warwick Allison | 2009-12-02 | 14 | -31/+31 |
| | | | | It seems we're going to have to so a syncqt/configure in Qt modules. | ||||
* | Fixed the start location of an UiArrayBinding to include the qualifiedId. | Erik Verbruggen | 2009-11-20 | 1 | -1/+1 |
| | | | | Reviewed by: Roberto Raggi. | ||||
* | fix headers | Warwick Allison | 2009-10-29 | 17 | -249/+289 |
| | |||||
* | Fixed possible crash when inserting semicolon. | Roberto Raggi | 2009-10-28 | 4 | -4/+4 |
| | | | | | | Don't insert T_SEMICOLON when yytoken == -1 Done-with: joerg | ||||
* | Fixed namespace macro. | Erik Verbruggen | 2009-10-26 | 1 | -2/+2 |
| | |||||
* | i18n | Warwick Allison | 2009-10-13 | 3 | -11/+13 |
| | |||||
* | More i18n | Warwick Allison | 2009-10-13 | 5 | -43/+45 |
| | |||||
* | Allow Unicode identifiers. | Warwick Allison | 2009-10-12 | 1 | -3/+8 |
| | |||||
* | Added utility method to parse single/stand-alone bindings. | Erik Verbruggen | 2009-09-30 | 7 | -1028/+1093 |
| | |||||
* | Preliminary support for object and list synthesized property types | Aaron Kennedy | 2009-09-22 | 6 | -889/+945 |
| | |||||
* | Fixed the QML parser files to play nice when included in Creator, | Erik Verbruggen | 2009-09-17 | 2 | -6/+6 |
| | | | | when Creator is compiled against Qt with namespaces. | ||||
* | Fixed the QML parser files to play nice when included in Creator, when | Erik Verbruggen | 2009-09-17 | 16 | -521/+550 |
| | | | | Creator is compiled against Qt with namespaces. | ||||
* | Remove debug. | Michael Brasser | 2009-09-09 | 1 | -4/+1 |
| | |||||
* | Added an option to the lexer to tell the engine of all comments in a QML | Erik Verbruggen | 2009-09-08 | 6 | -6/+28 |
| | | | | file. | ||||
* | Modify QML grammar to accept "readonly" as a property modifier | Aaron Kennedy | 2009-09-03 | 7 | -1012/+1070 |
| | |||||
* | Fixed import parsing, where the importId wasn't set. | Erik Verbruggen | 2009-08-03 | 2 | -0/+4 |
| | | | | Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com> |