summaryrefslogtreecommitdiffstats
path: root/examples/declarative/plugins/plugin.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Restructure the examples. They are now organized into variousBea Lam2010-05-161-152/+0
| | | | | | subdirectories to make it easier to locate examples for certain features (e.g. animation) and to distinguish between different types of examples (e.g. very basic examples vs complex demo-like examples).
* Fix plugin example compilation on Symbian armJoona Petrell2010-04-011-11/+7
| | | | | Task-number: QTBUG-9520 Reviewed-by: Martin Jones
* Introduced QDeclarativeExtensionPlugin::registerTypes(uri).Roberto Raggi2010-02-251-3/+2
| | | | | | Now, you have to reimplement registerTypes(uri) to expose native QML types, and initializeEngine(engine,uri) to add instances to the QML engine's root context.
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-4/+4
| | | | QDeclarativeXXX.
* Get rid of QmlModulePlugin.Roberto Raggi2010-02-231-9/+5
|
* Fix copyright year.Jason McDonald2010-02-161-1/+1
| | | | Reviewed-by: Trust Me
* Don't use statics for type definition, at least for plugin modules.Warwick Allison2010-02-011-1/+6
| | | | Task-number: QT-2798
* Allow QML types defined in both C++ and QML files to be in the same module.Warwick Allison2010-01-081-10/+72
|
* Load qmlmodules plugins.Warwick Allison2010-01-071-0/+94
This allows projects which use the declarative module to add QML types through C++ modules, such that qmlviewer (or any QML) can import those types.