summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarative.h
Commit message (Collapse)AuthorAgeFilesLines
* Update licenseheader text in source filesJyri Tahtela2011-05-131-17/+17
| | | | | | | Updated version of LGPL and FDL licenseheaders. Apply release phase licenseheaders for all source files. Reviewed-by: Trust Me
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into qtquick11Martin Jones2011-01-191-1/+1
|\
| * Update copyright year to 2011.Jason McDonald2011-01-101-1/+1
| | | | | | | | Reviewed-by: Trust Me
* | Fix version in previous commit. Had already been bumped.Martin Jones2011-01-061-2/+2
| | | | | | | | | | | | | | | | The version had already been bumped from 0 to 1. Only the version check was required. Task-number: QTBUG-13451 Reviewed-by: Aaron Kennedy
* | Ensure QDeclarativePrivate::RegisterType version is updated and checked.Martin Jones2011-01-061-2/+2
| | | | | | | | | | | | | | | | Also exclude from bic check since we expect its size to increase from time to time. Task-number: QTBUG-13451 Reviewed-by: Aaron Kennedy
* | Support property/method versions in QMLMartin Jones2011-01-051-1/+76
|/ | | | | | | | Use metaobject revisioning to exclude properties/revisions added in later versions from interfering with earlier versions. Task-number: QTBUG-13451 Reviewed-by: Aaron Kennedy
* More declarative autotests.Michael Brasser2010-09-241-1/+1
|
* Rename "interface" in qdeclarativeinterface.h to "qmlInterface"Rhys Weatherley2010-09-151-2/+2
| | | | | | | | The "interface" name is #define'd to "struct" in Windows COM headers in some SDK's, and creates problems when such headers are mixed with QML bindings. Reviewed-by: Joona Petrell
* Generalize qml "registration"Aaron Kennedy2010-07-221-7/+7
| | | | | | While it is difficult to predict the future, the hope is that this might give us a little more flexibility when it comes to fixing bugs etc. in patch releases.
* QtDeclarative: Remove trailing commas in enumsThiago Macieira2010-05-311-1/+1
|
* Improve error messages, especially on embedded.Warwick Allison2010-04-201-3/+11
| | | | | | With embedded, it is often the case that some QT_NO_* features are turned off (eg. QT_NO_XMLPATTERNS), which in turn leads to QML types not being available.
* Disallow creation of attached objects Keys and KeyNavigationMartin Jones2010-04-071-0/+32
| | | | | | | Also adds qmlRegisterUncreatableType<>() to allow registration of named types that cannot be created. Task-number: QTBUG-9575
* Fix QtDeclarative public headers to include <QtDeclarative/foo.h>Thiago Macieira2010-04-021-5/+5
| | | | All Qt public headers must do it like that.
* Make QML the object allocator more flexibleAaron Kennedy2010-03-121-20/+5
| | | | By allocating memory internally we improve the opportunity for optimization.
* Document - and use - the qmlRegisterXXX template functionsmae2010-03-101-0/+3
| | | | This commit removes the obsolete QML_REGISTER_TYPE macros.
* Make QML_REGISTER...TYPE functions unnecessary (still exist for now).Warwick Allison2010-02-251-13/+13
| | | | Fix multimedia plugin.
* Simplify QML element registration headersAaron Kennedy2010-02-241-16/+196
|
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+132
QDeclarativeXXX.