summaryrefslogtreecommitdiff
path: root/examples/declarative/extending
Commit message (Collapse)AuthorAgeFilesLines
* Improve docs and examples for Extending QML in C++Bea Lam2010-04-2150-310/+331
|
* Make property value source examples workBea Lam2010-04-212-2/+2
|
* Add .qmlproject files to declarative examples.Yann Bodson2010-04-201-0/+16
|
* QML_DECLARE_TYPE is no longer necessary - fix docs and examplesBea Lam2010-04-1920-45/+6
|
* Fix some more Q_PROPERTY followed by semi-colonThiago Macieira2010-04-025-8/+8
|
* Fix compilation: no semi-colon after Q_ENUM or Q_PROPERTYThiago Macieira2010-04-011-1/+1
|
* Document - and use - the qmlRegisterXXX template functionsmae2010-03-1010-44/+43
| | | | This commit removes the obsolete QML_REGISTER_TYPE macros.
* Fixed declarative examples not being installed.Rohan McGovern2010-03-0810-0/+41
|
* Make compile following QDeclarativeMetaProperty renamingBea Lam2010-03-084-8/+8
|
* Add subdirs .pro for examples/declarative/extendingAaron Kennedy2010-02-242-0/+14
| | | | Also fix up a compile error.
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-2440-103/+103
| | | | QDeclarativeXXX.
* Remove QML_DEFINE_... macros, now use QML_REGISTER_... macros calls.Warwick Allison2010-02-2430-47/+58
| | | | Task-number: QT-2798
* Replace QmlList* and QList* support with a single QmlListProperty typeAaron Kennedy2010-02-2224-56/+155
| | | | | | | | 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-1650-50/+50
| | | | Reviewed-by: Trust Me
* Use console.log, not printWarwick Allison2009-11-233-3/+3
|
* Remove "to" limit on minor version.Warwick Allison2009-11-0520-27/+27
| | | | | | QML_DEFINE_TYPE etc. now define just the initial support version, with support in all future versions being thus implied. QTBUG-5421
* fix headersWarwick Allison2009-10-3020-0/+800
|
* fix headersWarwick Allison2009-10-2930-0/+1200
|
* Docs.Martin Jones2009-10-264-12/+20
|
* lowercase idsYann Bodson2009-10-061-9/+9
|
* Make compile since QmlValuePropertySource is no longer a Qobject.Bea Lam2009-10-024-4/+11
|
* Use void return type for setter methods.Bea Lam2009-10-022-8/+8
|
* Remove unused imports from examples for extending.Christian Kamm2009-09-1010-10/+0
| | | | Reviewed-by: Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>
* Fix QML_DEFINE_EXTENDED_TYPE use in extending/extended example.Christian Kamm2009-09-101-1/+1
| | | | Reviewed-by: Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>
* Fix extending examples by inserting the appropriate import.Christian Kamm2009-09-1010-0/+10
| | | | | Reviewed-by: owolff Reviewed-by: Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com>
* Various doc fixes.Michael Brasser2009-08-192-0/+60
| | | | Make QML docs fit in with the new Qt style. Fix numerous qdoc errors.
* Doc and example fixes for library qualification (QT-558)Warwick Allison2009-07-2318-25/+25
|
* Move all QML types to Qt/4.6 namespace.Warwick Allison2009-07-2310-0/+20
| | | | | Adjust examples and demos accordingly. As per QT-558
* DocAaron Kennedy2009-07-0734-0/+1418
|
* Improve QmlComponent APIAaron Kennedy2009-07-076-6/+6
| | | | 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-0644-0/+1226