summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlcustomparser_p.h
Commit message (Collapse)AuthorAgeFilesLines
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-142/+0
| | | | QDeclarativeXXX.
* Remove QML_DEFINE_... macros, now use QML_REGISTER_... macros calls.Warwick Allison2010-02-231-7/+3
| | | | Task-number: QT-2798
* Fix copyright year.Jason McDonald2010-02-161-1/+1
| | | | Reviewed-by: Trust Me
* fix includesOswald Buddenhagen2009-12-031-3/+4
| | | | | | | | | | | | - 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.
* Undo most of 913dd563064e8047fe738fc9c79135adfb928977Warwick Allison2009-12-021-1/+1
| | | | It seems we're going to have to so a syncqt/configure in Qt modules.
* Remove include styles that rely on configure.Warwick Allison2009-12-011-1/+1
| | | | May help modularization (syncqt and configure are Qt-specific).
* Do not use "QtDeclarative/XXX" style includes in declarative module code,Warwick Allison2009-11-121-2/+2
| | | | as it breaks reinstalling the module against existing Qt.
* Remove "to" limit on minor version.Warwick Allison2009-11-051-4/+4
| | | | | | QML_DEFINE_TYPE etc. now define just the initial support version, with support in all future versions being thus implied. QTBUG-5421
* CleanupAaron Kennedy2009-10-301-1/+0
|
* fix headersWarwick Allison2009-10-291-16/+16
|
* More QML type registration on Symbian.Martin Jones2009-10-091-1/+7
|
* Report custom parse errors verbosely.Warwick Allison2009-09-101-2/+17
|
* Fix to use "." not "/" in QML_DEFINE_TYPE URIsWarwick Allison2009-08-041-1/+1
| | | | Fix to allow multiple version specifying defines.
* Allow span of versions to be defined, not just one.Warwick Allison2009-07-231-2/+2
| | | | Span is from version where introduced (all 4.6) to current QT_VERSION.
* Move all QML types to Qt/4.6 namespace.Warwick Allison2009-07-231-2/+2
| | | | | Adjust examples and demos accordingly. As per QT-558
* Support compile-in-namespace for the declarative module.Michael Brasser2009-06-301-2/+3
|
* CleanupMichael Brasser2009-06-301-0/+11
| | | | | Fix up license headers and private warnings, as well as other general cleanups.
* Remove more unneeded semicolons.Martin Jones2009-05-271-2/+2
|
* Implement SetProperties as a custom parserAaron Kennedy2009-05-151-0/+2
| | | | This will allow us to remove all "Assign*" style instructions from the QML compiler and have it depend only on static data.
* Remove XML custom parser supportAaron Kennedy2009-05-051-17/+0
|
* Make custom parsers internal.Aaron Kennedy2009-04-301-19/+68
| | | | 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/+79
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.