summaryrefslogtreecommitdiffstats
path: root/examples/declarative/extending/properties/main.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Restructure the examples. They are now organized into variousBea Lam2010-05-161-69/+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).
* Improve docs and examples for Extending QML in C++Bea Lam2010-04-211-2/+2
|
* Document - and use - the qmlRegisterXXX template functionsmae2010-03-101-2/+2
| | | | This commit removes the obsolete QML_REGISTER_TYPE macros.
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-4/+4
| | | | QDeclarativeXXX.
* Remove QML_DEFINE_... macros, now use QML_REGISTER_... macros calls.Warwick Allison2010-02-231-0/+3
| | | | Task-number: QT-2798
* Replace QmlList* and QList* support with a single QmlListProperty typeAaron Kennedy2010-02-221-2/+2
| | | | | | | | As a value type QmlListProperty doesn't consume any memory in the object. It also has a companion QmlListReference class that is part of the public API for C++ developers to interact with that also manages memory issues that existed with previous solutions (if the containing QObject was destroyed it left a dangling pointer).
* Fix copyright year.Jason McDonald2010-02-161-1/+1
| | | | Reviewed-by: Trust Me
* fix headersWarwick Allison2009-10-291-0/+40
|
* Improve QmlComponent APIAaron Kennedy2009-07-071-1/+1
| | | | Having to use QUrl::fromLocalFile() is crummy. Add appropriate overloads the QmlComponent, and resolve relative paths against a "base url" set on the QmlEngine.
* DocAaron Kennedy2009-07-061-0/+26